﻿:root {
    --gold: #D4860A;
    --gold-light: #F5A623;
    --gold-pale: #FFF3DC;
    --navy: #1A2340;
    --navy-deep: #0D1525;
    --orange: #E8620A;
    --orange-soft: #FF8C42;
    --white: #FDFAF5;
    --text: #2C2C2C;
    --text-light: #666;
    --purple: #3D2B6B;
    --purple-mid: #5A3E9B;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    background: rgba(10, 14, 30, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212,134,10,0.25);
    transition: height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s, box-shadow 0.4s;
  }
  nav.scrolled {
    height: 54px;
    background: rgba(8, 12, 24, 0.99);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom-color: rgba(212,134,10,0.4);
  }
  nav.scrolled .nav-logo .brand { font-size: 1.45rem; }
  nav.scrolled .nav-logo .sub { opacity: 0; max-height: 0; }
  nav.scrolled .nav-logo svg { width: 34px; height: 34px; }
  .nav-logo {
    display: flex; flex-direction: row; align-items: center; gap: 0.7rem; line-height: 1;
    transition: gap 0.4s;
  }
  .nav-logo-text { display: flex; flex-direction: column; }
  .nav-logo .brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--gold-light); letter-spacing: 2px; transition: font-size 0.4s; }
  .nav-logo .sub { font-size: 0.65rem; color: rgba(255,255,255,0.55); letter-spacing: 3px; text-transform: uppercase; transition: opacity 0.3s, max-height 0.3s; overflow: hidden; max-height: 20px; }
  .nav-links { display: flex; gap: 2.4rem; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    position: relative; padding-bottom: 4px; transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold-light); transition: width 0.3s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  .nav-cta {
    background: var(--gold); color: var(--navy-deep); border: none;
    padding: 0.55rem 1.4rem; border-radius: 3px; font-weight: 600;
    font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; text-decoration: none; transition: background 0.3s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── HAMBURGER ── */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-light); transition: 0.3s; }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    background: var(--navy-deep);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    padding-top: 72px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0D1525 0%, #1A2340 40%, #2A1810 100%);
  }
  .hero-geo {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  }
  .hero-geo::before {
    content: ''; position: absolute;
    width: 700px; height: 700px;
    border: 1px solid rgba(212,134,10,0.12);
    border-radius: 50%;
    top: -200px; right: -200px;
    animation: rotateSlowly 30s linear infinite;
  }
  .hero-geo::after {
    content: ''; position: absolute;
    width: 400px; height: 400px;
    border: 1px solid rgba(232,98,10,0.1);
    border-radius: 50%;
    bottom: -100px; left: -100px;
    animation: rotateSlowly 20s linear infinite reverse;
  }
  .hero-diagonal {
    position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
    background: linear-gradient(160deg, rgba(212,134,10,0.07) 0%, rgba(232,98,10,0.04) 100%);
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 5%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    width: 100%;
  }
  .hero-text { animation: fadeUp 0.9s ease both; }
  .hero-badge {
    display: inline-block;
    background: rgba(212,134,10,0.15); border: 1px solid rgba(212,134,10,0.4);
    color: var(--gold-light); font-size: 0.72rem; letter-spacing: 3px;
    text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 2px;
    margin-bottom: 1.5rem;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
    font-weight: 900;
  }
  .hero-title span { color: var(--gold-light); }
  .hero-desc {
    color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8;
    margin-bottom: 2.5rem; max-width: 480px;
  }
  .hero-phones { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.5rem; }
  .hero-phone {
    display: flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(212,134,10,0.3);
    border-radius: 4px; padding: 0.5rem 1rem;
    color: var(--gold-light); font-weight: 600; font-size: 0.9rem;
  }
  .hero-phone .icon { font-size: 1rem; }
  .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #fff; border: none; padding: 0.85rem 2rem; border-radius: 4px;
    font-weight: 600; font-size: 0.9rem; cursor: pointer; text-decoration: none;
    letter-spacing: 0.5px; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(212,134,10,0.3);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,134,10,0.45); }
  .btn-outline {
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.3); padding: 0.85rem 2rem;
    border-radius: 4px; font-weight: 500; font-size: 0.9rem;
    cursor: pointer; text-decoration: none; transition: border-color 0.3s, background 0.3s;
  }
  .btn-outline:hover { border-color: var(--gold-light); background: rgba(212,134,10,0.1); }

  .hero-visual { animation: fadeUp 0.9s 0.2s ease both; position: relative; }
  .hero-house-card {
    border-radius: 12px; overflow: hidden;
    border: 2px solid rgba(212,134,10,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: relative;
  }
  .hero-house-card img { width: 100%; display: block; }
  .hero-house-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(10,14,30,0.85));
    padding: 2rem 1.5rem 1.5rem;
  }
  .hero-house-overlay p { color: rgba(255,255,255,0.9); font-size: 0.85rem; }
  .hero-house-overlay strong { color: var(--gold-light); }

  .hero-stats {
    display: flex; gap: 2rem; margin-top: 1.5rem;
  }
  .stat { text-align: center; }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold-light); }
  .stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

  .scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.35); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 1; pointer-events: none;
  }
  .scroll-hint::after {
    content: '↓'; font-size: 1.2rem; color: var(--gold);
  }
  @media (max-width: 768px) { .scroll-hint { display: none; } }

  /* ── SECTION SHARED ── */
  section { padding: 6rem 5%; }
  .section-tag {
    display: inline-block; font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
    line-height: 1.15; margin-bottom: 1.2rem;
    color: var(--navy);
  }
  .section-title span { color: var(--gold); }
  .section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    margin-bottom: 1.5rem; border-radius: 2px;
  }
  .section-desc { color: var(--text-light); line-height: 1.85; font-size: 1rem; max-width: 600px; }
  .max-w { max-width: 1200px; margin: 0 auto; }

  /* ── ABOUT ── */
  #about { background: var(--white); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .about-left {}
  .team-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
  .team-card {
    background: var(--navy);
    border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(212,134,10,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,35,64,0.25); }
  .team-card-top {
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    padding: 1.5rem 1.5rem 1rem;
    display: flex; flex-direction: column; align-items: center;
    border-bottom: 2px solid var(--gold);
  }
  .team-avatar {
    width: 90px; height: 110px; object-fit: cover; object-position: top;
    border-radius: 8px; border: 3px solid var(--gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
  }
  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; color: #fff; text-align: center; font-weight: 700; line-height: 1.3;
  }
  .team-title-tag {
    font-size: 0.68rem; color: var(--gold-light); letter-spacing: 1.5px;
    text-transform: uppercase; margin-top: 0.3rem; text-align: center;
  }
  .team-card-body { padding: 1rem 1.2rem 1.2rem; }
  .team-qual { font-size: 0.75rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
  .team-qual strong { color: var(--gold-light); }
  .team-phone-row {
    display: flex; align-items: center; gap: 0.4rem;
    margin-top: 0.7rem; font-size: 0.8rem; color: var(--gold-light); font-weight: 600;
  }

  .about-right {}
  .about-feature {
    display: flex; gap: 1.2rem; align-items: flex-start;
    margin-bottom: 2rem; padding: 1.5rem;
    background: #fff; border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .about-feature:hover { transform: translateX(6px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
  .feature-icon {
    width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }
  .feature-text h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
  .feature-text p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }

  .address-block {
    background: var(--navy); color: #fff;
    border-radius: 8px; padding: 1.5rem 1.8rem;
    border: 1px solid rgba(212,134,10,0.25);
    margin-top: 2rem;
  }
  .address-block .addr-title { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
  .address-block p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.8); }
  .address-block a { color: var(--gold-light); text-decoration: none; }
  .address-block a:hover { text-decoration: underline; }

  /* ── SERVICES ── */
  #services { background: linear-gradient(180deg, #F5F0E8 0%, #FDFAF5 100%); }
  .services-header { text-align: center; margin-bottom: 4rem; }
  .services-header .section-divider { margin: 0 auto 1.5rem; }
  .services-header .section-desc { margin: 0 auto; }

  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .service-card {
    background: #fff; border-radius: 12px;
    padding: 2.2rem 1.8rem;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative; overflow: hidden;
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: default;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s;
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
    color: rgba(212,134,10,0.1); position: absolute; top: 1rem; right: 1.2rem;
    line-height: 1;
  }
  .service-icon { font-size: 2rem; margin-bottom: 1rem; }
  .service-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
    color: var(--navy); margin-bottom: 0.7rem;
  }
  .service-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

  /* ── CONTACT ── */
  #contact { background: var(--navy-deep); }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
  }
  .contact-left .section-title { color: #fff; }
  .contact-left .section-tag { color: var(--gold-light); }
  .contact-left .section-divider { background: linear-gradient(90deg, var(--gold-light), var(--orange-soft)); }
  .contact-left .section-desc { color: rgba(255,255,255,0.6); }

  .contact-info-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .ci {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem 1.4rem; border-radius: 8px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(212,134,10,0.2);
  }
  .ci-icon {
    width: 40px; height: 40px; border-radius: 6px; flex-shrink: 0;
    background: rgba(212,134,10,0.2); border: 1px solid rgba(212,134,10,0.4);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
  }
  .ci-text label { display: block; font-size: 0.68rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.3rem; }
  .ci-text p, .ci-text a { font-size: 0.9rem; color: rgba(255,255,255,0.8); text-decoration: none; line-height: 1.6; }
  .ci-text a:hover { color: var(--gold-light); }

  .contact-form {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(212,134,10,0.2);
    border-radius: 14px; padding: 2.5rem;
  }
  .contact-form h3 {
    font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; margin-bottom: 1.8rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(212,134,10,0.25);
    border-radius: 6px; padding: 0.8rem 1rem; color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    outline: none; transition: border-color 0.3s, background 0.3s;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--gold); background: rgba(212,134,10,0.08);
  }
  .form-group textarea { height: 110px; resize: none; }
  .form-group select option { background: var(--navy); }
  .form-submit {
    width: 100%; padding: 1rem; border: none; border-radius: 6px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 700;
    font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 25px rgba(212,134,10,0.35);
  }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(212,134,10,0.5); }

  /* ── FOOTER ── */
  footer {
    background: #080C18;
    border-top: 1px solid rgba(212,134,10,0.15);
    padding: 3rem 5% 2rem;
    text-align: center;
  }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold-light); letter-spacing: 3px; margin-bottom: 0.5rem; }
  .footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 2rem; }
  .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
  .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes rotateSlowly { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
  @keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
  }

  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* Pulse on phone numbers */
  .pulse {
    animation: pulsate 3s ease-in-out infinite;
  }
  @keyframes pulsate {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,134,10,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(212,134,10,0); }
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    nav.open .nav-links {
      display: flex; flex-direction: column; gap: 1rem;
      position: fixed; top: 72px; left: 0; right: 0;
      background: var(--navy-deep); padding: 1.5rem 5% 2rem;
      border-bottom: 1px solid rgba(212,134,10,0.2);
      z-index: 999;
    }
    nav.scrolled.open .nav-links { top: 54px; }
    nav.open .nav-cta { display: inline-block; margin: 1rem 5%; }
    .hero-content { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { order: -1; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .team-cards { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .team-cards { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { gap: 1.5rem; }
  }

  /* ── TESTIMONIALS ── */
  #testimonials {
    background: var(--navy-deep);
    padding: 6rem 5%;
    overflow: hidden;
    position: relative;
  }
  #testimonials::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: rgba(212,134,10,0.04);
    position: absolute;
    top: -2rem; left: 3%;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  .testimonials-header { text-align: center; margin-bottom: 3.5rem; }
  .testimonials-header .section-title { color: #fff; }
  .testimonials-header .section-divider { margin: 0 auto 1rem; }
  .testimonials-header .section-desc { color: rgba(255,255,255,0.55); margin: 0 auto; }

  .carousel-wrapper { position: relative; overflow: hidden; }
  .carousel-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .testimonial-card {
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }
  .testimonial-inner {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,134,10,0.2);
    border-radius: 16px;
    padding: 3rem 3.5rem;
    max-width: 820px;
    width: 100%;
    position: relative;
    text-align: center;
    transition: transform 0.3s;
  }
  .testimonial-inner::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    position: absolute;
    top: 1rem; left: 2rem;
    line-height: 1;
    opacity: 0.6;
  }
  .testimonial-stars {
    display: flex; justify-content: center; gap: 0.3rem;
    margin-bottom: 1.5rem;
  }
  .testimonial-stars span { color: var(--gold-light); font-size: 1.1rem; }
  .testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; line-height: 1.85;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    font-style: italic;
  }
  .testimonial-divider {
    width: 50px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
  }
  .testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
  .testimonial-author strong { color: #fff; font-size: 1rem; font-weight: 600; }
  .testimonial-author span { color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; }

  .carousel-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; margin-top: 2.5rem;
  }
  .carousel-btn {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(212,134,10,0.15);
    border: 1px solid rgba(212,134,10,0.4);
    color: var(--gold-light); font-size: 1.1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, transform 0.2s;
  }
  .carousel-btn:hover { background: rgba(212,134,10,0.35); transform: scale(1.1); }
  .carousel-dots { display: flex; gap: 0.6rem; align-items: center; }
  .carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none; cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
  }
  .carousel-dot.active {
    background: var(--gold-light);
    transform: scale(1.4);
  }

  /* ── ENHANCED FADE-IN ANIMATIONS ── */
  .fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  }
  .fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  }
  .fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  }
  .fade-in-up.visible, .fade-in-left.visible, .fade-in-right.visible {
    opacity: 1; transform: translate(0);
  }
  .fade-delay-1 { transition-delay: 0.1s; }
  .fade-delay-2 { transition-delay: 0.2s; }
  .fade-delay-3 { transition-delay: 0.3s; }
  .fade-delay-4 { transition-delay: 0.4s; }
  .fade-delay-5 { transition-delay: 0.5s; }
  .fade-delay-6 { transition-delay: 0.6s; }


  /* ── FAQ ── */
  #faq {
    background: linear-gradient(180deg, #F5F0E8 0%, #FDFAF5 100%);
    padding: 6rem 5%;
  }
  .faq-header { text-align: center; margin-bottom: 4rem; }
  .faq-header .section-divider { margin: 0 auto 1.5rem; }
  .faq-header .section-desc { margin: 0 auto; }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  .faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }
  .faq-item.open {
    border-color: rgba(212,134,10,0.4);
    box-shadow: 0 8px 30px rgba(212,134,10,0.12);
  }
  .faq-question {
    width: 100%; background: none; border: none;
    padding: 1.4rem 1.6rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    cursor: pointer; text-align: left;
    transition: background 0.3s;
  }
  .faq-question:hover { background: rgba(212,134,10,0.04); }
  .faq-item.open .faq-question { background: rgba(212,134,10,0.06); }
  .faq-q-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    color: var(--navy); line-height: 1.4;
    flex: 1;
  }
  .faq-item.open .faq-q-text { color: var(--gold); }
  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: rgba(212,134,10,0.1);
    border: 1px solid rgba(212,134,10,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem; font-weight: 700;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), background 0.3s;
    line-height: 1;
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: #fff;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding: 0 1.6rem;
  }
  .faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 1.6rem 1.4rem;
  }
  .faq-answer p {
    font-size: 0.88rem; color: var(--text-light);
    line-height: 1.8; border-top: 1px solid rgba(212,134,10,0.15);
    padding-top: 1rem;
  }
  .faq-answer p strong { color: var(--navy); }

  /* Full-width last item if odd count */
  .faq-item.faq-full { grid-column: 1 / -1; }

  @media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
    .faq-item.faq-full { grid-column: 1; }
  }


  /* ── TOP BAR ── */
  #topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(212,134,10,0.2);
    height: 36px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
  }
  #topbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
  .topbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 5%;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
  }
  .topbar-phone {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--gold-light); text-decoration: none;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px;
    transition: color 0.3s;
  }
  .topbar-phone:hover { color: #fff; }
  .topbar-social { display: flex; gap: 0.6rem; align-items: center; }
  .topbar-social-link {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,134,10,0.25);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.2s;
  }
  .topbar-social-link:hover { background: var(--gold); color: #fff; transform: scale(1.1); }

  /* Offset nav and body for topbar */
  nav { top: 36px; transition: top 0.4s cubic-bezier(0.4,0,0.2,1), height 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s, box-shadow 0.4s; }
  nav.topbar-hidden { top: 0; }
  #home { padding-top: calc(72px + 36px + 2rem); padding-bottom: 4rem; }

  /* ── CALL NOW BUTTON ── */
  .call-now-btn {
    background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(212,134,10,0.3);
    animation: callPulse 2.5s ease-in-out infinite;
  }
  .call-now-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important; transform: translateY(-1px); }
  @keyframes callPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,134,10,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(212,134,10,0); }
  }

  /* ── WHATSAPP WIDGET ── */
  .whatsapp-widget {
    position: fixed; bottom: 90px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    cursor: pointer; text-decoration: none;
    animation: waPulse 2.5s ease-in-out infinite;
    transition: transform 0.2s;
  }
  .whatsapp-widget:hover { transform: scale(1.12); }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
  }
  .whatsapp-widget svg { width: 30px; height: 30px; }
  .whatsapp-tooltip {
    position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
    background: #fff; color: #128C7E; font-size: 0.75rem; font-weight: 700;
    padding: 0.4rem 0.8rem; border-radius: 6px; white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .whatsapp-tooltip::after {
    content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
    border: 6px solid transparent; border-left-color: #fff;
  }
  .whatsapp-widget:hover .whatsapp-tooltip { opacity: 1; }

  /* ── SCROLL TO TOP ── */
  .scroll-top-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--navy); border: 2px solid var(--gold);
    color: var(--gold-light); font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; text-decoration: none;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s, transform 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }
  .scroll-top-btn.visible { opacity: 1; pointer-events: all; }
  .scroll-top-btn:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }

  /* ── FOOTER BAR ── */
  .footer-bar {
    background: #040710;
    border-top: 1px solid rgba(212,134,10,0.1);
    padding: 0.9rem 5%;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
  }
  .footer-bar a { color: var(--gold); text-decoration: none; font-weight: 600; transition: color 0.3s; }
  .footer-bar a:hover { color: var(--gold-light); }

  /* Mobile Call Now at bottom of menu */
  @media (max-width: 900px) {
    nav .call-now-btn { display: none; }
    nav.open .call-now-btn {
      display: block !important;
      margin: 0.5rem 5% 1.5rem !important;
      width: calc(90%) !important;
      text-align: center !important;
    }
  }
