:root {
    --bg-black: #050505;
    --bg-panel: #0a0a0a;
    --bg-emerald: #012b1b; 
    --gold-metallic: #d4af37;
    --gold-bright: #f4cf56;  
    --text-white: #ffffff;
    --text-silver: #c0c0c0;
    --font-head: 'Cinzel', serif; 
    --font-body: 'Manrope', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.gold-text { color: var(--gold-metallic); }

.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-metallic); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.burger {
    display: none;
    width: 28px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

.btn-nav {
    border: 1px solid var(--gold-metallic);
    padding: 8px 20px !important;
    border-radius: 2px;
}

.lang-switch button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    margin-left: 5px;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 0.7rem;
    transition: 0.3s;
}
.lang-switch button:hover { color: var(--gold-metallic); border-color: var(--gold-metallic); }

.hero {
    height: 100vh;
    background: url('page1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}
.hero-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(1,50,32,0.2) 100%);
}

.hero-grid {
    display: grid;
    left: -150px; 
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-end; 
    position: relative;
    z-index: 5;
}

.hero-text h1 {
    font-family: var(--font-head);
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 20px 0;
}
.hero-text p { font-size: 1.1rem; color: #ccc; max-width: 500px; margin-bottom: 40px; }

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-metallic);
    display: inline-block;
    padding: 5px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--gold-metallic);
}

.hero-btns { display: flex; gap: 20px; }

.btn-gold-fill {
    background: var(--gold-metallic);
    color: black;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
}
.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
}
.btn-gold-fill:hover { background: var(--gold-bright); transform: translateY(-3px); }

.hero-owner-container {
    position: relative;
    left: 250px;
    width: min(100%, 450px);
    justify-self: end;
}
.owner-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}
.owner-info-float {
    position: absolute;
    margin: 0;
    left: -18px;
    bottom: 64px;
    max-width: 310px;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(10px);
    padding: 16px 22px;
    border-left: 3px solid var(--gold-metallic);
    text-align: left;
    z-index: 2;
}
.owner-name { display: block; font-family: var(--font-head); color: var(--gold-metallic); font-weight: bold; font-size: 1.15rem; line-height: 1.2; }
.owner-title { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: #aaa; }

.stats-bar { background: var(--bg-panel); padding: 50px 0; border-bottom: 1px solid #222; }
.stats-grid { display: flex; justify-content: space-around; text-align: center; }
.stat-num { display: block; font-size: 2.5rem; font-weight: 800; color: var(--gold-metallic); font-family: var(--font-head); }

section { padding: 120px 0; }
.section-black { background: var(--bg-black); }
.section-emerald { background: var(--bg-emerald); }

h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; }
.gold-bar { width: 80px; height: 3px; background: var(--gold-metallic); margin-bottom: 30px; }
.center-bar { margin: 0 auto 50px auto; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-list { list-style: none; margin-top: 30px; }
.features-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.features-list i { color: var(--gold-metallic); }

.image-stack { position: relative; }
.img-1 { width: 100%; position: relative; z-index: 2; border: 1px solid #333; }
.gold-border-box {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-metallic);
    top: 30px;
    left: 30px;
    z-index: 1;
}

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.offer-card {
    background: rgba(255,255,255,0.03);
    padding: 60px 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.offer-card:hover { 
    background: rgba(212, 175, 55, 0.05); 
    border-color: var(--gold-metallic); 
    transform: translateY(-10px);
}
.card-icon { font-size: 2.5rem; color: var(--gold-metallic); margin-bottom: 25px; position: relative; z-index: 2; }
.offer-card h3 { font-family: var(--font-head); margin-bottom: 15px; position: relative; z-index: 2; }
.offer-card p { font-size: 0.9rem; color: #bbb; margin-bottom: 30px; position: relative; z-index: 2; }

.card-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.03);
    z-index: 1;
}

.rating-box { text-align: center; margin-bottom: 50px; width: 100%; }
.big-score { font-size: 5rem; font-weight: 800; font-family: var(--font-head); }
.stars { color: var(--gold-metallic); margin-bottom: 10px; }
.reviews-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: var(--bg-panel); padding: 40px; border: 1px solid #222; }

.contact-box-glass {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10,10,10,0.8);
    padding: 60px;
    border: 1px solid #333;
}
.contact-box-glass input[type="tel"] {
    margin-bottom: 20px; 
}
.input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
input, textarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: white;
    font-family: var(--font-body);
}
input:focus, textarea:focus { border-color: var(--gold-metallic); outline: none; }

footer { padding: 60px 0; border-top: 1px solid #222; text-align: center; }
.footer-logo { font-family: var(--font-head); font-size: 2rem; color: var(--gold-metallic); margin-bottom: 20px; }
.footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.footer-socials a { color: white; font-size: 1.5rem; transition: 0.3s; }
.footer-socials a:hover { color: var(--gold-metallic); }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 3rem; }
    .hero-owner-container { left: 0; margin: 0 auto; }
    .hero-btns { justify-content: center; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .input-group { grid-template-columns: 1fr; }
    
}

.offer-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: 0.5s ease;
    z-index: 1;
}


.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 5, 5, 0.85);
    transition: 0.4s;
    z-index: -1;
}

.offer-card:hover::before {
    background: rgba(1, 43, 27, 0.7); 
}


.grunt-bg { background-image: url('images/grunt.jpg'); }
.gladz-bg { background-image: url('images/gladz.jpg'); }
.align-bg { background-image: url('images/align.jpg'); }


.card-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 8rem;
    opacity: 0.05; 
    color: var(--gold);
    transform: rotate(-15deg);
    z-index: -1;
}
.reviews-carousel { padding: 80px 0; background: #050505; }

.carousel-container {
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
}

.slider-viewport {
    overflow: hidden; 
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
    gap: 20px;
}

.review-item {
    flex: 0 0 calc(50% - 10px); 
    min-width: calc(50% - 10px);
}

.review-inner {
    background: linear-gradient(145deg, #0a0a0a, #012b1b);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    height: 100%;
    border-radius: 4px;
}

.review-inner p { font-style: italic; color: #ccc; margin-bottom: 20px; }
.review-inner h4 { font-family: 'Cinzel'; color: var(--gold); }


.slide-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.slide-btn:hover { background: var(--gold); color: black; }
@media (max-width: 800px) {
    .review-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    background-color: #011612; 
    border: 1px solid #d4af3744;
    padding: 30px;
    z-index: 10000;
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    display: none;
}

.cookie-watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37' %3E%3Cpath d='M21.598 11.064a1.006 1.006 0 0 0-.854-.832A7.012 7.012 0 0 1 15 3.5a1 1 0 0 0-1.394-.913 7 7 0 1 1-5.687 11.972 1.001 1.001 0 0 0-1.424 1.403 7.045 7.045 0 0 1 10.74 1.258 1.001 1.001 0 0 0 1.594-.543 7.054 7.054 0 0 1 2.769-4.711 1 1 0 0 0 .124-1.398Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1; 
    transform: rotate(-20deg);
    pointer-events: none;
}

.cookie-content {
    position: relative;
    z-index: 1;
}

.cookie-text h3 {
    color: #d4af37;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
}

.cookie-text a {
    color: #d4af37;
    text-decoration: none;
    border-bottom: 1px solid #d4af37;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background-color: #d4af37;
    color: #011612;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-accept:hover {
    background-color: #f0c64d;
}

.btn-decline {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 12px 20px;
    cursor: pointer;
    flex: 1;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-decline:hover {
    background: rgba(212, 175, 55, 0.1);
}
.footer-socials {
    display: flex;
    justify-content: center; 
    gap: 16px;              
    margin: 15px 0;
}

.footer-social-btn {
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    border: 1px solid rgba(212,175,55,0.35);
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    transform: translateY(-2px);
}

.footer-social-btn.fixly { color: var(--gold); }
.footer-social-btn.facebook { color: #1877F2; }
.footer-social-btn.instagram {
    background: linear-gradient(90deg, #F58529, #DD2A7B, #8134AF);
    background-clip: text;          
    -webkit-background-clip: text;   
    -moz-background-clip: text;       
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;               
}

.footer-social-btn.fixly {
    color: var(--gold-metallic);
    border-color: rgba(212,175,55,0.35);
    background: transparent; 
    transition: transform 0.3s ease; 
}

.footer-social-btn.fixly:hover {
    transform: translateY(-3px); 
    background: transparent;
    color: var(--gold-metallic);
    border-color: rgba(212,175,55,0.35);
}

.footer-social-btn.facebook {
    color: #1877F2; 
    border-color: rgba(24, 119, 242, 0.35);
    background: transparent;
    transition: transform 0.3s ease; 
}

.footer-social-btn.facebook:hover {
    transform: translateY(-3px); 
    color: #1877F2; 
    border-color: rgba(24, 119, 242, 0.35); 
    background: transparent; 
}
.footer-extended {
    background: #0e0e0e;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 26px;
    color: gold;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 6px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: 1px solid gold;
    color: gold;
    padding: 8px 12px;
    cursor: pointer;
    text-align: left;
    border-radius: 6px;
}

.faq-answer {
    display: none;
    padding: 8px 12px;
    font-size: 14px;
    color: #ccc;
}

.map-note {
    margin-top: 8px;
    font-size: 13px;
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom a {
    margin: 0 10px;
    color: gold;
    text-decoration: none;
}
.why-us {
  padding: 80px 20px;
  background-color: var(--gray);
}

.why-us .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-us h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark);
}

.why-us-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #bbbbbb;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-us-item {
  background: #012b1b;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--accent);
}

.why-us-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.why-us-item .icon {
  font-size: 38px;
  display: block;
  margin-bottom: 15px;
}

.why-us-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-us-item p {
  font-size: 16px;
  color: #dddddd;
  line-height: 1.6;
}

@media (max-width: 768px) {

  .hero {
    height: auto; 
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    left: 0;
  }
}

@media (max-width: 768px) {

  .owner-img {
    width: min(72vw, 280px);
    max-width: 280px;
    margin: 0;
  }

  .hero-owner-container {
    left: 0;
    width: min(72vw, 280px);
    margin: 0 auto;
    text-align: left;
  }

  .owner-info-float {
    position: absolute;
    margin: 0;
    left: -10px;
    bottom: 18px;
    max-width: min(62vw, 240px);
    padding: 11px 14px;
    border-left: 3px solid var(--gold-metallic);
    display: block;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .nav-right {
    gap: 10px;
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 1002;
  }

  .lang-switch {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 170px;
  }

  .lang-switch button {
    margin-left: 0;
    padding: 4px 7px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 340px);
    height: 100dvh;
    margin: 0;
    padding: 120px 24px 24px;
    background: rgba(5, 5, 5, 0.98);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1001;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.8px;
  }

  .nav-links.active {
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .logo {
    font-size: 1.35rem;
    letter-spacing: 1px;
  }

  .container {
    padding: 0 16px;
  }

  .nav-right {
    gap: 8px;
  }

  .lang-switch {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    max-width: none;
  }

  .lang-switch button {
    font-size: 0.68rem;
    padding: 6px 8px;
    line-height: 1;
    min-width: 34px;
  }
}


.floating-phone {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 10050;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 14px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(1, 43, 27, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--text-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  animation: phone-float 2.6s ease-in-out infinite;
  transition: padding 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-phone.is-expanded {
  gap: 10px;
  padding: 14px 20px;
}

.floating-phone i {
  color: var(--gold-metallic);
  font-size: 1.1rem;
  flex-shrink: 0;
  transform: rotate(90deg);
}

.floating-phone .floating-phone-number {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: max-width 0.3s ease, opacity 0.2s ease;
}

.floating-phone.is-expanded .floating-phone-number {
  max-width: 180px;
  opacity: 1;
}

.floating-phone:hover {
  transform: translateY(-2px);
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 600px) {
  .floating-phone {
    left: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .floating-phone.is-expanded {
    padding: 12px 16px;
    gap: 8px;
  }

  .floating-phone .floating-phone-number {
    font-size: 0.88rem;
  }

  .floating-phone.is-expanded .floating-phone-number {
    max-width: 150px;
  }
}

@media (min-width: 769px) {
  .hero {
    justify-content: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: flex-end;
    text-align: left;
  }

  .hero-text {
    justify-self: start;
    text-align: left;
  }

  .hero-btns {
    justify-content: flex-start;
  }

  .hero-owner-container {
    justify-self: end;
    text-align: left;
  }
}
