
.btn-section-cta-outline{
    margin-left: 15px;
}
  .spec-card {
                    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
                  }
                  .spec-card:hover {
                    transform: translateY(-8px) scale(1.03);
                    box-shadow: 0 12px 32px rgba(201,168,76,0.18);
                    border-color: var(--gold);
                  }
            /* --- Custom Spec Card Styles --- */
            .spec-card {
              flex: 1;
              background: #182828;
              border-radius: 16px;
              margin: 12px;
              padding: 32px 24px;
              display: flex;
              flex-direction: column;
              align-items: center;
              box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            }
            .spec-card img {
              width: 100%;
              aspect-ratio: 4/3;
              object-fit: cover;
              border-radius: 12px;
              margin-bottom: 18px;
            }
            .spec-card-title {
              font-size: 22px;
              color: var(--gold);
              font-family: 'Cormorant Garamond', serif;
              margin-bottom: 8px;
            }
            .spec-card-desc {
              font-size: 14px;
              color: rgba(255,255,255,0.7);
              text-align: center;
            }
             .spec-card button {
              margin-top: 20px;
             }
      :root {
        --teal: #0a6b6b;
        --teal2: #0d8080;
        --gold: #c9a84c;
        --gold2: #e8c97a;
        --dark: #061a1a;
        --cream: #f9f6ef;
        --white: #ffffff;
        --text: #2a3a3a;
        --muted: #7a9090;
      }

      /* ── SITE LOADER ─────────────────────── */
      #site-loader {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: var(--dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        transition: opacity 0.7s ease, visibility 0.7s ease;
      }
      #site-loader.hide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }

      /* Ambient radial glows */
      .loader-glow-left {
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(13,128,128,0.18) 0%, transparent 70%);
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        animation: loaderGlowPulse 3s ease-in-out infinite;
      }
      .loader-glow-right {
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
        top: 50%;
        right: 10%;
        transform: translateY(-50%);
        animation: loaderGlowPulse 3s ease-in-out 1.5s infinite;
      }
      @keyframes loaderGlowPulse {
        0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
        50%       { opacity: 1;   transform: translateY(-50%) scale(1.08); }
      }

      /* Grid lines overlay */
      .loader-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
        background-size: 80px 80px;
        animation: loaderGridFade 2s ease forwards;
      }
      @keyframes loaderGridFade {
        from { opacity: 0; }
        to   { opacity: 1; }
      }

      /* Center content wrapper */
      .loader-center {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
      }

      /* Spinning ring */
      .loader-ring {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        border: 1px solid rgba(201,168,76,0.15);
        border-top-color: var(--gold);
        animation: loaderSpin 1.2s linear infinite;
        margin-bottom: 32px;
        position: relative;
      }
      .loader-ring::after {
        content: '';
        position: absolute;
        inset: 6px;
        border-radius: 50%;
        border: 1px solid rgba(201,168,76,0.08);
        border-bottom-color: rgba(13,128,128,0.5);
        animation: loaderSpin 1.8s linear reverse infinite;
      }
      @keyframes loaderSpin {
        to { transform: rotate(360deg); }
      }

      /* Logo icon inside ring */
      .loader-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        animation: loaderIconPulse 1.2s ease-in-out infinite;
      }
      @keyframes loaderIconPulse {
        0%, 100% { opacity: 0.6; transform: scale(1); }
        50%       { opacity: 1;   transform: scale(1.15); }
      }

      /* Brand name */
      .loader-brand {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(38px, 7vw, 64px);
        font-weight: 300;
        color: var(--white);
        letter-spacing: 6px;
        line-height: 1;
        overflow: hidden;
        animation: loaderBrandReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
      }
      .loader-brand em {
        font-style: italic;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      @keyframes loaderBrandReveal {
        from { opacity: 0; transform: translateY(24px); }
        to   { opacity: 1; transform: translateY(0); }
      }

      /* Tagline */
      .loader-tagline {
        font-family: "Jost", sans-serif;
        font-size: 10px;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 300;
        margin-top: 10px;
        animation: loaderTagReveal 0.9s ease 0.55s both;
      }
      @keyframes loaderTagReveal {
        from { opacity: 0; letter-spacing: 10px; }
        to   { opacity: 1; letter-spacing: 5px; }
      }

      /* Gold divider line */
      .loader-line {
        width: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        margin-top: 22px;
        animation: loaderLineGrow 0.8s ease 0.8s forwards;
      }
      @keyframes loaderLineGrow {
        to { width: 200px; }
      }

      /* Progress bar at bottom */
      .loader-progress-track {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: rgba(201,168,76,0.08);
      }
      .loader-progress-bar {
        height: 100%;
        background: linear-gradient(90deg, var(--teal), var(--gold));
        width: 0;
        animation: loaderProgress 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      }
      @keyframes loaderProgress {
        0%   { width: 0%; }
        60%  { width: 75%; }
        100% { width: 100%; }
      }

      /* Sub-label below tagline */
      .loader-sub {
        font-size: 9px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.2);
        font-weight: 300;
        margin-top: 28px;
        animation: loaderTagReveal 0.9s ease 1s both;
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Jost", sans-serif;
        background: var(--cream);
        color: var(--text);
        overflow-x: hidden;
      }

      /* ── NAV ─────────────────────────────── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 60px;
        background: rgba(6, 26, 26, 0.85);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        transition: padding 0.3s;
      }
      nav.scrolled {
        padding: 14px 60px;
      }

      .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .nav-logo .logo-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        animation: float 4s ease-in-out infinite;
        transition: box-shadow 0.3s;
      }
      .nav-logo:hover .logo-icon {
        animation: glowPulse 1.5s ease-in-out infinite;
      }
      .nav-logo .logo-text {
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: 1px;
      }
      .nav-logo .logo-sub {
        font-size: 9px;
        letter-spacing: 3px;
        color: var(--gold);
        font-weight: 300;
        text-transform: uppercase;
        display: block;
      }

      .nav-links {
        display: flex;
        gap: 36px;
        list-style: none;
      }
      .nav-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 300;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--gold);
      }

      .nav-cta {
        padding: 10px 28px;
        border: 1px solid var(--gold);
        color: var(--gold);
        background: transparent;
        font-family: "Jost", sans-serif;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s;
      }
      .nav-cta:hover {
        background: var(--gold);
        color: var(--dark);
      }

      /* ── HERO ─────────────────────────────── */
      .hero {
          min-height: 100vh;
          position: relative;
          overflow: hidden;
          display: flex;
          align-items: flex-start;
          justify-content: flex-start;
           padding-top: 50px;
      }

      /* Full-bleed video background */
      .hero-video-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
        background: var(--dark);
      }
      .hero-video-bg iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 177.78vh; /* 16:9 */
        height: 100vh;
        min-width: 100%;
        min-height: 56.25vw; /* 9/16 * 100vw */
        border: none;
        pointer-events: none;
      }
      /* Dark overlay over video */
      .hero-video-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          105deg,
          rgba(6,26,26,0.82) 0%,
          rgba(6,26,26,0.65) 55%,
          rgba(6,26,26,0.3) 100%
        );
        z-index: 1;
      }

      .hero-bg-pattern {
        /*position: absolute;*/
        /*inset: 0;*/
        /*z-index: 1;*/
        /*background-image:*/
        /*  radial-gradient(*/
        /*    circle at 20% 50%,*/
        /*    rgba(201, 168, 76, 0.08) 0%,*/
        /*    transparent 50%*/
        /*  ),*/
        /*  radial-gradient(*/
        /*    circle at 80% 20%,*/
        /*    rgba(13, 128, 128, 0.15) 0%,*/
        /*    transparent 40%*/
        /*  ),*/
        /*  radial-gradient(*/
        /*    circle at 60% 80%,*/
        /*    rgba(201, 168, 76, 0.06) 0%,*/
        /*    transparent 30%*/
        /*  );*/
      }

      .hero-grid-lines {
        /*position: absolute;*/
        /*inset: 0;*/
        /*z-index: 1;*/
        /*pointer-events: none;*/
        /*background-image:*/
        /*  linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),*/
        /*  linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);*/
        /*background-size: 80px 80px, 80px 80px;*/
      }

      .hero-bg-pattern {
        animation: gradientFlow 15s ease infinite;
        background-size: 200% 200%;
      }

      .hero-content {
          position: relative;
          z-index: 2;
          width: 100%;
          max-width: none;
          margin: 0;
          display: flex;
          flex-direction: column;
          align-items: center;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 20px;
        border: 1px solid rgba(201, 168, 76, 0.4);
        background: rgba(201, 168, 76, 0.08);
        border-radius: 2px;
        margin-bottom: 32px;
      }
      .hero-badge span {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 400;
      }
      .hero-badge::before {
        content: "";
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
        animation: pulse 2s infinite;
      }

      .hero-badge {
        animation: fadeInUp 0.8s ease 0.1s both, borderGlow 3s ease-in-out infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.5;
          transform: scale(1.4);
        }
      }

      /* ── ENHANCED ANIMATIONS ─────────────── */
      @keyframes shimmer {
        0% {
          background-position: -200% center;
        }
        100% {
          background-position: 200% center;
        }
      }

      @keyframes float {
        0%, 100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-15px);
        }
      }

      @keyframes floatSlow {
        0%, 100% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-10px) rotate(2deg);
        }
      }

      @keyframes scaleIn {
        from {
          opacity: 0;
          transform: scale(0.9);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      @keyframes slideInLeft {
        from {
          opacity: 0;
          transform: translateX(-60px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      @keyframes slideInRight {
        from {
          opacity: 0;
          transform: translateX(60px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes glowPulse {
        0%, 100% {
          box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
        }
        50% {
          box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
        }
      }

      @keyframes borderGlow {
        0%, 100% {
          border-color: rgba(201, 168, 76, 0.2);
        }
        50% {
          border-color: rgba(201, 168, 76, 0.6);
        }
      }

      @keyframes rotateIn {
        from {
          opacity: 0;
          transform: rotate(-10deg) scale(0.9);
        }
        to {
          opacity: 1;
          transform: rotate(0) scale(1);
        }
      }

      @keyframes countUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes typewriter {
        from { width: 0; }
        to { width: 100%; }
      }

      @keyframes gradientFlow {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      @keyframes ripple {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        100% {
          transform: scale(1.5);
          opacity: 0;
        }
      }

      .hero-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(52px, 6vw, 88px);
        font-weight: 300;
        line-height: 1.05;
        color: var(--white);
        animation: fadeUp 0.9s ease both;
      }
      .hero-title em {
        font-style: italic;
        color: var(--gold);
      }
      .hero-title .line2 {
        animation-delay: 0.15s;
      }

      .hero-sub {
        font-size: 11px;
        letter-spacing: 4px;
        color: var(--gold);
        text-transform: uppercase;
        margin: 20px 0 28px;
        font-weight: 300;
        animation: fadeUp 0.9s ease 0.3s both;
      }

      .hero-desc {
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.6);
        max-width: 420px;
        font-weight: 300;
        animation: fadeUp 0.9s ease 0.45s both;
        margin-bottom: 48px;
      }

      .hero-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeUp 0.9s ease 0.6s both;
      }

      .btn-primary {
        padding: 16px 40px;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        color: var(--dark);
        border: none;
        font-family: "Jost", sans-serif;
        font-size: 11px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
        position: relative;
        overflow: hidden;
      }
      .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s;
      }
      .btn-primary:hover::before {
        left: 100%;
      }
      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(201, 168, 76, 0.45);
      }

      .btn-outline {
        padding: 16px 40px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--white);
        background: transparent;
        font-family: "Jost", sans-serif;
        font-size: 11px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-weight: 300;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        position: relative;
        overflow: hidden;
      }
      .btn-outline::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(201, 168, 76, 0.1);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }
      .btn-outline:hover::after {
        transform: scaleX(1);
      }
      .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
      }

      .hero-stats {
        display: flex;
        gap: 40px;
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        animation: fadeUp 0.9s ease 0.75s both;
      }
      .stat-item {
        text-align: left;
      }
      .hero-stats .stat-item {
        opacity: 0;
        animation: countUp 0.6s ease forwards;
      }
      .hero-stats .stat-item:nth-child(1) { animation-delay: 0.9s; }
      .hero-stats .stat-item:nth-child(2) { animation-delay: 1.1s; }
      .hero-stats .stat-item:nth-child(3) { animation-delay: 1.3s; }
      .hero-stats .stat-item:nth-child(4) { animation-delay: 1.5s; }
      .stat-item:hover .stat-num {
        transform: scale(1.1);
        color: var(--gold2);
      }
      .stat-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 36px;
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
        transition: transform 0.3s ease, color 0.3s ease;
      }
      .stat-label {
        font-size: 10px;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
        margin-top: 4px;
        font-weight: 300;
      }

      .hero-gold-line {
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: 80px;
        background: linear-gradient(to bottom, transparent, var(--gold));
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ── SECTION SHARED ─────────────────── */
      .section {
        padding: 120px 60px;
        max-width: 1300px;
        margin: 0 auto;
      }

      .section-label {
        font-size: 10px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 400;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .section-label::before {
        content: "";
        display: block;
        width: 40px;
        height: 1px;
        background: var(--gold);
      }

      .section-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(36px, 4vw, 56px);
        font-weight: 300;
        line-height: 1.15;
        color: var(--dark);
      }
      .section-title em {
        font-style: italic;
        color: var(--teal);
      }

      /* ── ABOUT ─────────────────────────── */
      .about-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: center;
      }
      .about-text .section-title {
        margin-bottom: 28px;
      }
      .about-desc {
        font-size: 15px;
        line-height: 1.9;
        color: #5a7070;
        font-weight: 300;
        margin-bottom: 40px;
      }

      .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .about-feature {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border: 1px solid rgba(10, 107, 107, 0.12);
        background: rgba(10, 107, 107, 0.03);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }
      .about-feature::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 0;
        background: var(--gold);
        transition: height 0.4s ease;
      }
      .about-feature:hover::before {
        height: 100%;
      }
      .about-feature:hover {
        border-color: var(--gold);
        background: rgba(201, 168, 76, 0.06);
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(10, 107, 107, 0.12);
      }
      .af-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--teal), var(--teal2));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: transform 0.3s ease;
        border-radius: 2px;
      }
      .about-feature:hover .af-icon {
        transform: scale(1.1) rotate(5deg);
      }
      .af-text {
        font-size: 13px;
        line-height: 1.5;
        color: var(--text);
        font-weight: 400;
      }
      .af-text strong {
        display: block;
        font-weight: 500;
        margin-bottom: 2px;
        font-size: 12px;
        color: var(--teal);
      }

      .about-visual {
        position: relative;
      }
      .about-img-main {
        width: 100%;
        height: 500px;
        background: url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=700&q=80")
          center/cover no-repeat;
        border-radius: 4px;
      }
      .about-img-accent {
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 200px;
        height: 200px;
        background: url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?w=400&q=80")
          center/cover no-repeat;
        border: 6px solid var(--cream);
        border-radius: 4px;
      }
      .about-gold-badge {
        position: absolute;
        top: 40px;
        right: -20px;
        background: linear-gradient(135deg, var(--teal), var(--dark));
        color: var(--white);
        padding: 24px 28px;
        border-radius: 4px;
        text-align: center;
        border: 1px solid rgba(201, 168, 76, 0.3);
      }
      .ab-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 42px;
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
      }
      .ab-label {
        font-size: 10px;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
      }

      /* ── LOCATION ───────────────────────── */
      .location-section {
        background: var(--dark);
        padding: 120px 0;
      }
      .location-inner {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 60px;
      }
      .location-section .section-label {
        color: var(--gold);
      }
      .location-section .section-title {
        color: var(--white);
        margin-bottom: 60px;
      }
      .location-section .section-title em {
        color: var(--gold2);
      }

      .location-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
      }
      .loc-card {
        padding: 36px 28px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(201, 168, 76, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: default;
        position: relative;
        overflow: hidden;
      }
      .loc-card::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 0;
        background: var(--gold);
        transition: width 0.4s ease;
      }
      .loc-card:hover::before {
        width: 100%;
      }
      .loc-card:hover {
        background: rgba(201, 168, 76, 0.08);
        transform: translateY(-4px);
        border-color: rgba(201, 168, 76, 0.3);
      }

      .loc-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 16px;
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .loc-icon-img {
        width: 100%;
        height: 100%;
        max-width: 36px;
        max-height: 36px;
        display: block;
        object-fit: contain;
      }
      .loc-card:hover .loc-icon {
        transform: scale(1.2);
      }
      .loc-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 20px;
        color: var(--white);
        font-weight: 400;
        margin-bottom: 6px;
      }
      .loc-dist {
        font-size: 24px;
        font-weight: 200;
        color: var(--gold);
        margin-bottom: 4px;
        letter-spacing: -0.5px;
      }
      .loc-label {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 1px;
      }

      /* ── AMENITIES ──────────────────────── */
      .amenities-section {
        background: var(--cream);
      }
      .amenities-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 60px;
      }
      .amenity-card {
        text-align: center;
        padding: 40px 20px;
        background: var(--white);
        border: 1px solid rgba(10, 107, 107, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: default;
        position: relative;
        overflow: hidden;
      }
      .amenity-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(10, 107, 107, 0.05));
        opacity: 0;
        transition: opacity 0.4s ease;
      }
      .amenity-card:hover::before {
        opacity: 1;
      }
      .amenity-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
      }
      .amenity-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.4s ease;
        position: relative;
        z-index: 1;
      }
      .amenity-icon img,
      .amenity-icon-img {
        width: 100%;
        height: 100%;
        max-width: 40px;
        max-height: 40px;
        display: block;
        object-fit: contain;
      }
      .amenity-card:hover .amenity-icon {
        transform: scale(1.25) rotate(5deg);
      }
      .amenity-name {
        font-size: 13px;
        font-weight: 400;
        color: var(--text);
        letter-spacing: 0.5px;
        line-height: 1.4;
        position: relative;
        z-index: 1;
      }

      /* ── SPECS ──────────────────────────── */
      .specs-section {
        background: linear-gradient(160deg, var(--teal) 0%, var(--dark) 100%);
        padding: 120px 0;
      }
      .specs-inner {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 60px;
      }
      .specs-section .section-label {
        color: var(--gold);
      }
      .specs-section .section-title {
        color: var(--white);
        margin-bottom: 60px;
      }

      .specs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
      }
      .spec-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        padding: 28px 32px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }
      .spec-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 0;
        background: var(--gold);
        transition: height 0.4s ease;
      }
      .spec-item:hover::before {
        height: 100%;
      }
      .spec-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
      }
      .spec-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        background: rgba(201, 168, 76, 0.15);
        border: 1px solid rgba(201, 168, 76, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        border-radius: 2px;
        transition: transform 0.3s ease, background 0.3s ease;
      }
      .spec-item:hover .spec-icon {
        transform: scale(1.1);
        background: rgba(201, 168, 76, 0.25);
      }
      .spec-content {
        flex: 1;
      }
      .spec-name {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 400;
        margin-bottom: 6px;
      }
      .spec-desc {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.6;
        font-weight: 300;
      }

      /* ── FLOOR PLANS ────────────────────── */
      .plans-section {
        background: #f4f1ea;
        padding: 120px 0;
      }
      .plans-inner {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 60px;
      }

      .plans-tabs {
        display: flex;
        gap: 0;
        margin: 48px 0;
        border-bottom: 1px solid rgba(10, 107, 107, 0.15);
      }
      .plan-tab {
        padding: 14px 32px;
        border: none;
        background: none;
        font-family: "Jost", sans-serif;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
        cursor: pointer;
        transition: all 0.3s;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        font-weight: 300;
      }
      .plan-tab.active {
        color: var(--teal);
        border-bottom-color: var(--gold);
      }

      .plans-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .plan-details {
        animation: fadeInUp 0.8s ease both;
        transition: opacity 0.3s ease, transform 0.3s ease;
      }
      .plan-details h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 36px;
        font-weight: 300;
        color: var(--dark);
        margin-bottom: 28px;
      }
      .plan-specs {
        display: flex;
        flex-direction: column;
        gap: 0;
        border: 1px solid rgba(10, 107, 107, 0.12);
      }
      .ps-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
      }
      .ps-row:hover {
        background: rgba(10, 107, 107, 0.03);
        padding-left: 30px;
      }
      .ps-val {
        transition: color 0.3s ease;
      }
      .ps-row:hover .ps-val {
        color: var(--gold);
      }
      .ps-row {
        padding: 16px 24px;
        border-bottom: 1px solid rgba(10, 107, 107, 0.08);
      }
      .ps-row:last-child {
        border-bottom: none;
      }
      .ps-key {
        font-size: 12px;
        letter-spacing: 1px;
        color: var(--muted);
        text-transform: uppercase;
      }
      .ps-val {
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        font-weight: 400;
        color: var(--teal);
      }

      .plan-image-wrap {
        background: var(--white);
        border: 1px solid rgba(10, 107, 107, 0.1);
        padding: 4px;
        text-align: center;
      }
      .plan-image-placeholder {
       
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(
          135deg,
          rgba(10, 107, 107, 0.05),
          rgba(201, 168, 76, 0.05)
        );
        border: 1px dashed rgba(10, 107, 107, 0.2);
        font-family: "Cormorant Garamond", serif;
        font-size: 18px;
        color: var(--muted);
        font-style: italic;
      }

      /* ── CTA ────────────────────────────── */
      .cta-section {
        background: var(--dark);
        position: relative;
        overflow: hidden;
        padding: 120px 60px;
        text-align: center;
      }
      .cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 30% 50%,
            rgba(13, 128, 128, 0.2) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse at 70% 50%,
            rgba(201, 168, 76, 0.12) 0%,
            transparent 60%
          );
        animation: gradientFlow 10s ease infinite;
        background-size: 200% 200%;
      }
      .cta-inner {
        position: relative;
        z-index: 1;
        max-width: 700px;
        margin: 0 auto;
      }
      .cta-label {
        font-size: 10px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 24px;
        font-weight: 300;
      }
      .cta-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(36px, 5vw, 64px);
        font-weight: 300;
        color: var(--white);
        line-height: 1.1;
        margin-bottom: 20px;
      }
      .cta-title em {
        font-style: italic;
        color: var(--gold);
      }
      .cta-desc {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.8;
        font-weight: 300;
        margin-bottom: 48px;
      }
      .cta-form {
        display: flex;
        gap: 0;
        max-width: 500px;
        margin: 0 auto 24px;
      }
      .cta-form .wpcf7 {
        width: 100%;
      }
      .cta-form .wpcf7 form {
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 0;
        width: 100%;
      }
      .cta-form .wpcf7 form p {
        margin: 0;
      }
      .cta-form .wpcf7 form > p {
        width: auto;
      }
      .cta-form .wpcf7 form > p:first-of-type {
        flex: 1;
        min-width: 0;
      }
      .cta-form .wpcf7 form > p:last-of-type {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
      }
      .cta-form .wpcf7 form br {
        display: none;
      }
      .cta-form .wpcf7 form .hidden-fields-container,
      .cta-form .wpcf7 form .wpcf7-response-output {
        flex-basis: 100%;
        width: 100%;
      }
      .cta-form p {
        display: flex;
        gap: 0;
        width: 100%;
        margin: 0;
      }
      .cta-form p br {
        display: none;
      }
      .cta-form .wpcf7-form-control-wrap {
        display: flex;
        flex: 1;
        min-width: 0;
      }
      .cta-form .wpcf7-form-control-wrap input[type='text'],
      .cta-form .wpcf7-form-control-wrap input[type='tel'],
      .cta-form .wpcf7-form-control-wrap input[type='email'] {
        flex: 1;
        width: 100%;
        min-width: 0;
      }
      .cta-input {
        flex: 1;
        width: 100%;
        padding: 16px 24px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-right: none;
        color: var(--white);
        font-family: "Jost", sans-serif;
        font-size: 14px;
        font-weight: 300;
        outline: none;
        transition: all 0.3s ease;
      }
      .cta-input:focus {
        background: rgba(255, 255, 255, 0.12);
        border-color: var(--gold);
      }
      .cta-input::placeholder {
        color: rgba(255, 255, 255, 0.3);
      }
      .cta-submit {
        padding: 16px 32px;
        background: var(--gold);
        border: none;
        color: var(--dark);
        font-family: "Jost", sans-serif;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .cta-submit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s, height 0.5s;
      }
      .cta-submit:hover::before {
        width: 200px;
        height: 200px;
      }
      .cta-submit:hover {
        background: var(--gold2);
        transform: scale(1.02);
      }
      .cta-form input[type='submit'] {
        padding: 16px 32px;
        background: var(--gold);
        border: none;
        color: var(--dark);
        font-family: "Jost", sans-serif;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
      }
      .cta-form .wpcf7-spinner {
        margin: 0 0 0 10px;
        align-self: center;
      }

      .cta-contact {
        display: flex;
        gap: 40px;
        justify-content: center;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
      }
      .cta-contact a {
        color: var(--gold);
        text-decoration: none;
      }

      /* ── FOOTER ─────────────────────────── */
      footer {
        background: #040f0f;
        padding: 60px;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
        border-top: 1px solid rgba(201, 168, 76, 0.15);
      }
      .footer-brand .logo-text {
        font-family: "Cormorant Garamond", serif;
        font-size: 28px;
        color: var(--white);
        font-weight: 300;
      }
      .footer-brand .logo-sub {
        font-size: 9px;
        letter-spacing: 3px;
        color: var(--gold);
        text-transform: uppercase;
        font-weight: 300;
      }
      .footer-brand p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.35);
        line-height: 1.8;
        font-weight: 300;
        margin-top: 16px;
        max-width: 260px;
      }
      .footer-col h4 {
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 20px;
        font-weight: 400;
      }
      .footer-col ul {
        list-style: none;
      }
      .footer-col ul li {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 10px;
        font-weight: 300;
        cursor: pointer;
        transition: color 0.2s;
      }
      .footer-col ul li:hover {
        color: var(--gold);
      }
      .footer-bottom {
        background: #040f0f;
        padding: 20px 60px;
        display: flex;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 11px;
        color: rgba(255, 255, 255, 0.25);
      }

      /* ── HERO VIDEO ──────────────────────── */
      .hero-video-wrap {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .hero-video-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 300;
        margin-bottom: 18px;
        animation: fadeUp 0.9s ease 0.4s both;
      }
      .hero-video-label::before {
        content: '';
        display: block;
        width: 32px;
        height: 1px;
        background: var(--gold);
      }

      .hero-video-frame {
        position: relative;
        width: 100%;
        flex: 1;
        min-height: 320px;
        border: 1px solid rgba(201,168,76,0.3);
        overflow: hidden;
        border-radius: 4px;
        box-shadow:
          0 0 0 1px rgba(201,168,76,0.08),
          0 40px 80px rgba(0,0,0,0.5),
          0 0 60px rgba(13,128,128,0.15);
        animation: fadeUp 0.9s ease 0.5s both;
        transition: box-shadow 0.4s ease, transform 0.4s ease;
        background: #061a1a;
        cursor: pointer;
      }
      .hero-video-frame:hover {
        box-shadow:
          0 0 0 1px rgba(201,168,76,0.35),
          0 50px 100px rgba(0,0,0,0.6),
          0 0 80px rgba(201,168,76,0.15);
        transform: translateY(-4px);
      }
      .hero-video-frame:focus {
        outline: 2px solid var(--gold);
        outline-offset: 4px;
      }

      /* Gold corner accents */
      .hero-video-frame::before,
      .hero-video-frame::after {
        content: '';
        position: absolute;
        z-index: 3;
        pointer-events: none;
      }
      .hero-video-frame::before {
        top: -1px; left: -1px;
        width: 28px; height: 28px;
        border-top: 2px solid var(--gold);
        border-left: 2px solid var(--gold);
      }
      .hero-video-frame::after {
        bottom: -1px; right: -1px;
        width: 28px; height: 28px;
        border-bottom: 2px solid var(--gold);
        border-right: 2px solid var(--gold);
      }

      .hero-video-frame iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        min-width: 177.78%; /* 16:9 scaled to fill height: 100% * (16/9) */
        min-height: 177.78%; /* 16:9 scaled to fill width: 100% * (9/16) */
        border: none;
        display: block;
        z-index: 1;
        pointer-events: none;
      }

      /* Fallback: hidden by default, shown if iframe errors */
      .hero-video-fallback {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: none;
        cursor: pointer;
      }
      .hero-video-fallback.show {
        display: block;
      }
      .hero-video-frame:hover .hero-video-thumb-img {
        transform: scale(1.04);
      }

      /* Dark overlay on thumbnail */
      .hero-video-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(6,26,26,0.55) 0%,
          rgba(6,26,26,0.3) 100%
        );
        transition: background 0.3s ease;
        z-index: 1;
      }
      .hero-video-frame:hover .hero-video-overlay {
        background: rgba(6,26,26,0.25);
      }

      /* Play button */
      .hero-play-btn {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
      }
      .hero-play-ring {
        position: absolute;
        width: 72px;
        height: 72px;
        border-radius: 50%;
        border: 1.5px solid rgba(201,168,76,0.5);
        animation: heroPlayRingPulse 2s ease-in-out infinite;
      }
      .hero-play-ring::before {
        content: '';
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        border: 1px solid rgba(201,168,76,0.2);
        animation: heroPlayRingPulse 2s ease-in-out 0.4s infinite;
      }
      @keyframes heroPlayRingPulse {
        0%, 100% { opacity: 0.7; transform: scale(1); }
        50%       { opacity: 1;   transform: scale(1.08); }
      }
      .hero-play-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--dark);
        padding-left: 4px; /* optical centering of triangle */
        box-shadow: 0 8px 32px rgba(201,168,76,0.45);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        z-index: 1;
      }
      .hero-video-frame:hover .hero-play-icon {
        transform: scale(1.12);
        box-shadow: 0 12px 44px rgba(201,168,76,0.65);
      }

      /* "Watch Project Video" label */
      .hero-video-watch-label {
        position: absolute;
        bottom: 20px;
        left: 0; right: 0;
        text-align: center;
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.7);
        font-weight: 300;
        z-index: 2;
        transition: color 0.3s;
      }
      .hero-video-frame:hover .hero-video-watch-label {
        color: var(--gold);
      }

      /* Shimmer line above the video */
      .hero-video-shimmer {
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent);
        background-size: 200% 100%;
        animation: shimmer 3s linear infinite;
        z-index: 4;
        pointer-events: none;
      }

      /* Meta tags below video */
      .hero-video-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 16px;
        animation: fadeUp 0.9s ease 0.7s both;
        flex-wrap: wrap;
        gap: 8px;
      }
      .hero-video-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 16px;
        border: 1px solid rgba(201,168,76,0.2);
        background: rgba(201,168,76,0.06);
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.5);
        font-weight: 300;
      }
      .hero-video-tag span { color: var(--gold); }
      .hero-video-dot {
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--gold);
        animation: pulse 2s infinite;
        flex-shrink: 0;
      }

      /* ── VIDEO LIGHTBOX ──────────────────── */
      .video-lightbox {
        position: fixed;
        inset: 0;
        z-index: 10000;
        background: rgba(6,26,26,0.96);
        backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
      }
      .video-lightbox.active {
        opacity: 1;
        visibility: visible;
      }
      .video-lightbox-close {
        position: absolute;
        top: 24px; right: 24px;
        width: 44px; height: 44px;
        background: transparent;
        border: 1px solid rgba(201,168,76,0.3);
        color: rgba(255,255,255,0.6);
        font-size: 22px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        z-index: 2;
        line-height: 1;
      }
      .video-lightbox-close:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(201,168,76,0.1);
      }
      .video-lightbox-inner {
        width: 100%;
        max-width: 960px;
        transform: scale(0.92);
        transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
      }
      .video-lightbox.active .video-lightbox-inner {
        transform: scale(1);
      }
      .video-lightbox-frame {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        border: 1px solid rgba(201,168,76,0.25);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 80px rgba(201,168,76,0.1);
      }
      .video-lightbox-frame iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        border: none;
        pointer-events: all;
      }

      .approvals-bar {
        background: rgba(201, 168, 76, 0.08);
        border-top: 1px solid rgba(201, 168, 76, 0.15);
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
        padding: 16px 60px;
        display: flex;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
      }
      .approval-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
        transition: color 0.3s ease;
      }
      .approval-item:hover {
        color: var(--gold);
      }
      .approval-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold);
        animation: pulse 2s ease-in-out infinite;
      }

      /* ── SCROLL REVEAL ───────────────────── */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
          transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }
      .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
      }
      .reveal-right {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }
      .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
      }
      .reveal-scale {
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }
      .reveal-scale.visible {
        opacity: 1;
        transform: scale(1);
      }
      .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;
      }
      .reveal-delay-6 {
        transition-delay: 0.6s;
      }

      /* ── RESPONSIVE ──────────────────────── */
      
      /* Hamburger Menu */
      .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 1px solid rgba(201, 168, 76, 0.3);
        cursor: pointer;
        z-index: 200;
        transition: all 0.3s ease;
      }
      .hamburger:hover {
        border-color: var(--gold);
      }
      .hamburger span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--gold);
        margin: 2px 0;
        transition: all 0.3s ease;
      }
      .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
      }
      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }
      .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
      }

      /* Mobile Navigation Overlay */
      .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(6, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        z-index: 150;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
      }
      .mobile-nav.active {
        opacity: 1;
        visibility: visible;
      }
      .mobile-nav-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 100px 24px;
      }
      .mobile-nav-links {
        list-style: none;
        text-align: center;
        margin-bottom: 40px;
      }
      .mobile-nav-links li {
        margin: 20px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
      }
      .mobile-nav.active .mobile-nav-links li {
        opacity: 1;
        transform: translateY(0);
      }
      .mobile-nav.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
      .mobile-nav.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
      .mobile-nav.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
      .mobile-nav.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
      .mobile-nav.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
      .mobile-nav-links a {
        font-family: "Cormorant Garamond", serif;
        font-size: 28px;
        color: var(--white);
        text-decoration: none;
        font-weight: 300;
        transition: color 0.3s ease;
        letter-spacing: 2px;
      }
      .mobile-nav-links a:hover {
        color: var(--gold);
      }
      .mobile-nav-cta {
        padding: 16px 48px;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        color: var(--dark);
        border: none;
        font-family: "Jost", sans-serif;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        cursor: pointer;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
      }
      .mobile-nav.active .mobile-nav-cta {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.35s;
      }
      .mobile-nav-cta:hover {
        transform: scale(1.05);
      }

      @media (max-width: 1024px) {
        .about-wrap,
        .plans-content {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .location-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .amenities-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .specs-grid {
          grid-template-columns: 1fr;
        }
        footer {
          grid-template-columns: 1fr 1fr;
        }
        .nav-links {
          display: none;
        }
        .nav-cta {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .mobile-nav {
          display: block;
        }
        .section {
          padding: 80px 40px;
        }
        .hero-content {
          padding: 100px 40px 60px;
        }
        .hero-title {
          font-size: clamp(40px, 8vw, 64px);
        }
        .location-inner,
        .specs-inner,
        .plans-inner {
          padding: 0 40px;
        }
        .cta-section {
          padding: 80px 40px;
        }
        .about-visual {
          order: -1;
        }
        .about-img-main {
          height: 400px;
        }
        .about-gold-badge {
          right: 20px;
          top: 20px;
        }
        .plans-tabs {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
        }
        .approvals-bar {
          padding: 16px 40px;
          justify-content: flex-start;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
        }
      }

      @media (max-width: 768px) {
        .hero-content {
          padding: 100px 24px 60px;
        }
        .hero-title {
          font-size: clamp(36px, 10vw, 52px);
        }
        .hero-desc {
          font-size: 14px;
        }
        .hero-btns {
          flex-direction: column;
          width: 100%;
        }
        .btn-primary,
        .btn-outline {
          width: 100%;
          text-align: center;
          padding: 18px 32px;
        }
        .hero-stats {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 24px;
        }
        .stat-item {
          text-align: center;
        }
        .section {
          padding: 60px 24px;
        }
        .section-title {
          font-size: clamp(28px, 7vw, 42px);
        }
        .about-features {
          grid-template-columns: 1fr;
        }
        .about-img-main {
          height: 300px;
        }
        .about-img-accent {
          display: none;
        }
        .about-gold-badge {
          position: relative;
          top: auto;
          right: auto;
          margin-top: 20px;
          display: inline-block;
        }
        .location-inner,
        .specs-inner,
        .plans-inner {
          padding: 0 24px;
        }
        .location-section,
        .specs-section,
        .plans-section {
          padding: 60px 0;
        }
        .location-grid {
          grid-template-columns: 1fr;
          gap: 12px;
        }
        .loc-card {
          padding: 24px 20px;
        }
        .amenities-grid {
          grid-template-columns: 1fr 1fr;
          gap: 16px;
        }
        .amenity-card {
          padding: 28px 16px;
        }
        .amenity-icon {
          width: 48px;
          height: 48px;
        }
        .amenity-icon img,
        .amenity-icon-img {
          max-width: 34px;
          max-height: 34px;
        }
        .spec-item {
          padding: 20px 24px;
          flex-direction: column;
          text-align: center;
          gap: 16px;
        }
        .spec-icon {
          margin: 0 auto;
        }
        .plans-tabs {
          gap: 0;
          margin: 32px 0;
        }
        .plan-tab {
          padding: 12px 20px;
          font-size: 11px;
        }
        .plans-content {
          gap: 40px;
        }
        .plan-details h3 {
          font-size: 28px;
        }
        .plan-image-wrap {
          padding: 24px;
        }
        .plan-image-placeholder {
          height: 260px;
          font-size: 14px;
        }
        .cta-section {
          padding: 60px 24px;
        }
        .cta-title {
          font-size: clamp(28px, 8vw, 48px);
        }
        .cta-form {
          flex-direction: column;
          gap: 12px;
        }
        .cta-form .wpcf7 form p {
          flex-direction: column;
          gap: 12px;
        }
        .cta-form .wpcf7 form {
          flex-direction: column;
          gap: 12px;
        }
        .cta-form .wpcf7 form > p,
        .cta-form .wpcf7 form > p:first-of-type,
        .cta-form .wpcf7 form > p:last-of-type {
          width: 100%;
          flex: 1 1 100%;
        }
        .cta-form p {
          flex-direction: column;
          gap: 12px;
        }
        .cta-input {
          border: 1px solid rgba(255, 255, 255, 0.15);
          text-align: center;
        }
        .cta-form input[type='submit'] {
          width: 100%;
        }
        .cta-submit {
          width: 100%;
        }
        .cta-contact {
          flex-direction: column;
          gap: 12px;
        }
        footer {
          padding: 40px 24px;
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .footer-brand {
          text-align: center;
        }
        .footer-brand p {
          max-width: 100%;
          margin: 16px auto 0;
        }
        .footer-col {
          text-align: center;
        }
        .footer-col h4 {
          margin-bottom: 16px;
        }
        .footer-col ul li {
          margin-bottom: 8px;
        }
        .footer-bottom {
          padding: 20px 24px;
          flex-direction: column;
          gap: 8px;
          text-align: center;
        }
        .approvals-bar {
          padding: 12px 24px;
          gap: 24px;
        }
        .approval-item {
          font-size: 9px;
          white-space: nowrap;
        }
      }

      @media (max-width: 480px) {
        nav {
          padding: 12px 16px;
        }
        .nav-logo .logo-icon {
          width: 36px;
          height: 36px;
          font-size: 14px;
        }
        .nav-logo .logo-text {
          font-size: 18px;
        }
        .nav-logo .logo-sub {
          font-size: 8px;
          letter-spacing: 2px;
        }
        .hamburger {
          width: 40px;
          height: 40px;
        }
        .hero-content {
          padding: 90px 16px 50px;
        }
        .hero-badge {
          padding: 6px 12px;
        }
        .hero-badge span {
          font-size: 8px;
          letter-spacing: 1.5px;
        }
        .hero-title {
          font-size: 32px;
        }
        .hero-sub {
          font-size: 10px;
          letter-spacing: 2px;
          margin: 16px 0 20px;
        }
        .hero-desc {
          font-size: 13px;
          line-height: 1.7;
          margin-bottom: 32px;
        }
        .hero-stats {
          margin-top: 40px;
          padding-top: 24px;
        }
        .stat-num {
          font-size: 28px;
        }
        .stat-label {
          font-size: 9px;
        }
        .section {
          padding: 50px 16px;
        }
        .section-label {
          font-size: 9px;
          letter-spacing: 2px;
        }
        .section-label::before {
          width: 24px;
        }
        .section-title {
          font-size: 26px;
        }
        .about-desc {
          font-size: 14px;
        }
        .about-feature {
          padding: 14px;
        }
        .af-icon {
          width: 32px;
          height: 32px;
          font-size: 14px;
        }
        .af-text {
          font-size: 12px;
        }
        .about-img-main {
          height: 250px;
        }
        .location-inner,
        .specs-inner,
        .plans-inner {
          padding: 0 16px;
        }
        .location-section,
        .specs-section,
        .plans-section {
          padding: 50px 0;
        }
        .loc-card {
          padding: 20px 16px;
        }
        .loc-icon {
          width: 40px;
          height: 40px;
          margin-bottom: 12px;
          display: inline-block;
        }
        .loader-sub {
        text-align: center;
        line-height: 35px;
    }
    .footer-social {
    justify-content: center;
     }
     .section-cta-wrap{
         display: block !important;
     }
     .btn-section-cta-outline, .btn-section-cta {
        padding: 16px 15px;
     }
     .btn-section-cta-outline, .btn-section-cta{
         display: block !important;
         width: 100% !important;
     }
    .btn-section-cta {
             margin-bottom: 10px !important;
     }
     .btn-section-cta-outline{
         margin-left: 0px !important;
     }
        .loc-icon-img {
          width: 100%;
          height: 100%;
          max-width: 30px;
          max-height: 30px;
        }
        .loc-name {
          font-size: 16px;
        }
        .loc-dist {
          font-size: 20px;
        }
        .loc-label {
          font-size: 10px;
        }
        .amenities-grid {
          grid-template-columns: 1fr 1fr;
          gap: 12px;
        }
        .amenity-card {
          padding: 20px 12px;
        }
        .amenity-icon {
          width: 44px;
          height: 44px;
          margin-bottom: 10px;
        }
        .amenity-icon img,
        .amenity-icon-img {
          max-width: 30px;
          max-height: 30px;
        }
        .amenity-name {
          font-size: 11px;
        }
        .spec-item {
          padding: 16px;
        }
        .spec-icon {
          width: 40px;
          height: 40px;
          font-size: 16px;
        }
        .spec-name {
          font-size: 10px;
        }
        .spec-desc {
          font-size: 13px;
        }
        .plan-details h3 {
          font-size: 24px;
          margin-bottom: 20px;
        }
        .ps-row {
          padding: 12px 16px;
        }
        .ps-key {
          font-size: 10px;
        }
        .ps-val {
          font-size: 18px;
        }
        .plan-image-wrap {
          padding: 16px;
        }
        .plan-image-placeholder {
          height: 200px;
          font-size: 12px;
        }
        .cta-section {
          padding: 50px 16px;
        }
        .cta-label {
          font-size: 9px;
        }
        .cta-title {
          font-size: 26px;
        }
        .cta-desc {
          font-size: 13px;
          margin-bottom: 32px;
        }
        .cta-input {
          padding: 14px 16px;
          font-size: 13px;
        }
        .cta-submit {
          padding: 14px 24px;
          font-size: 10px;
        }
        .cta-contact {
          font-size: 11px;
        }
        .approvals-bar {
          padding: 10px 16px;
          gap: 16px;
        }
        .approval-item {
          font-size: 8px;
          letter-spacing: 1px;
          gap: 6px;
        }
        .approval-dot {
          width: 6px;
          height: 6px;
        }
        .mobile-nav-links a {
          font-size: 24px;
        }
        .mobile-nav-links li {
          margin: 16px 0;
        }
        .mobile-nav-cta {
          padding: 14px 36px;
          font-size: 11px;
        }
      }

      /* ── POPUP MODAL ────────────────────── */
      .popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(6, 26, 26, 0.88);
        backdrop-filter: blur(12px);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        padding: 24px;
      }
      .popup-overlay.active {
        opacity: 1;
        visibility: visible;
      }
      .popup-modal {
        background: var(--dark);
        border: 1px solid rgba(201, 168, 76, 0.25);
        padding: 56px 48px;
        max-width: 480px;
        width: 100%;
        position: relative;
        transform: translateY(30px) scale(0.96);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .popup-overlay.active .popup-modal {
        transform: translateY(0) scale(1);
      }
      .popup-modal::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
        background-size: 200% 100%;
        animation: shimmer 3s linear infinite;
      }
      .popup-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        background: transparent;
        border: 1px solid rgba(201, 168, 76, 0.2);
        color: rgba(255, 255, 255, 0.5);
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        line-height: 1;
      }
      .popup-close:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(201, 168, 76, 0.08);
      }
      .popup-label {
        font-size: 10px;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 400;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .popup-label::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--gold);
      }
      .popup-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 32px;
        font-weight: 300;
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 8px;
      }
      .popup-title em {
        font-style: italic;
        color: var(--gold);
      }
      .popup-desc {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 300;
        line-height: 1.7;
        margin-bottom: 36px;
      }
      .popup-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .popup-input {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(201, 168, 76, 0.15);
        padding: 15px 20px;
        color: var(--white);
        font-family: "Jost", sans-serif;
        font-size: 13px;
        font-weight: 300;
        letter-spacing: 0.5px;
        outline: none;
        transition: border-color 0.3s, background 0.3s;
        width: 100%;
        margin: 5px 0;
      }
      .popup-input::placeholder {
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 1px;
        font-size: 12px;
      }
      .popup-input:focus {
        border-color: rgba(201, 168, 76, 0.5);
        background: rgba(201, 168, 76, 0.04);
      }
      .popup-submit {
        padding: 17px 40px;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        color: var(--dark);
        border: none;
        font-family: "Jost", sans-serif;
        font-size: 11px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        margin-top: 4px;
        width: 100%;
      }
      .popup-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
        transition: left 0.6s;
      }
      .popup-submit:hover::before {
        left: 100%;
      }
      .popup-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(201, 168, 76, 0.4);
      }
      .popup-success {
        display: none;
        text-align: center;
        padding: 20px 0 8px;
      }
      .popup-success.show {
        display: block;
      }
      .popup-success-icon {
        font-size: 40px;
        margin-bottom: 16px;
      }
      .popup-success h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 26px;
        font-weight: 300;
        color: var(--white);
        margin-bottom: 8px;
      }
      .popup-success p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 300;
      }

      /* Section CTA Buttons */
      .section-cta-wrap {
        margin-top: 48px;
        display: flex;
        justify-content: flex-start;
      }
      .section-cta-wrap.centered {
        justify-content: center;
      }
      .btn-section-cta {
        padding: 16px 40px;
        background: linear-gradient(135deg, var(--gold), var(--gold2));
        color: var(--dark);
        border: none;
        font-family: "Jost", sans-serif;
        font-size: 11px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }
      .btn-section-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s;
      }
      .btn-section-cta:hover::before {
        left: 100%;
      }
      .btn-section-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(201, 168, 76, 0.45);
      }
      .btn-section-cta .cta-arrow {
        font-size: 14px;
        transition: transform 0.3s;
      }
      .btn-section-cta:hover .cta-arrow {
        transform: translateX(4px);
      }
      /* Dark-bg variant for sections with dark backgrounds */
      .btn-section-cta-outline {
        padding: 16px 40px;
        border: 1px solid var(--gold);
        color: var(--gold);
        background: transparent;
        font-family: "Jost", sans-serif;
        font-size: 11px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }
      .btn-section-cta-outline::before {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 100%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
        transition: left 0.6s;
      }
      .btn-section-cta-outline:hover::before { left: 100%; }
      .btn-section-cta-outline:hover {
        background: rgba(201, 168, 76, 0.1);
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(201, 168, 76, 0.2);
      }
      .btn-section-cta-outline .cta-arrow {
        font-size: 14px;
        transition: transform 0.3s;
      }
      .btn-section-cta-outline:hover .cta-arrow { transform: translateX(4px); }

      @media (max-width: 480px) {
        .popup-modal {
          padding: 40px 24px 36px;
        }
        .popup-title {
          font-size: 26px;
        }
        .section-cta-wrap {
          justify-content: flex-start;
        }
        .section-cta-wrap.centered {
          justify-content: center;
        }
      }

      /* Landscape phones */
      @media (max-height: 500px) and (orientation: landscape) {
        .hero {
          min-height: auto;
          padding: 80px 0 40px;
        }
        .hero-content {
          padding-top: 80px;
          padding-bottom: 40px;
        }
        .hero-stats {
          display: flex;
          flex-wrap: nowrap;
          gap: 24px;
        }
        .mobile-nav-content {
          padding: 80px 24px 40px;
          justify-content: flex-start;
        }
        .mobile-nav-links li {
          margin: 12px 0;
        }
        .mobile-nav-links a {
          font-size: 20px;
        }
      }
    
          /* ── GALLERY SECTION ───────────────────────────── */
          .gallery-section {
            padding: 120px 60px;
            max-width: 1300px;
            margin: 0 auto 80px auto;
            background: var(--cream);
            border-radius: 8px;
            /* box-shadow: 0 4px 32px rgba(10,107,107,0.06); */
            padding-top: 40px;
          }
          .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
            margin-top: 40px;
          }
          .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            box-shadow: 0 2px 16px rgba(13,128,128,0.08);
            background: var(--white);
            border: 1px solid rgba(10,107,107,0.08);
            transition: box-shadow 0.3s, border 0.3s;
          }
          .gallery-item:hover {
            box-shadow: 0 8px 32px rgba(201,168,76,0.13);
            border: 1px solid var(--gold);
          }
          .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s;
          }
          .gallery-item:hover img {
            transform: scale(1.04);
          }
          .gallery-btn {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, var(--teal), var(--gold));
            color: var(--white);
            border: none;
            padding: 12px 32px;
            font-family: "Jost", sans-serif;
            font-size: 13px;
            letter-spacing: 2px;
            border-radius: 2px;
            cursor: pointer;
            opacity: 0.92;
            transition: background 0.3s, color 0.3s;
            box-shadow: 0 2px 12px rgba(10,107,107,0.10);
            display: none;
          }
          .gallery-item:hover .gallery-btn {
            display: block;
          }
          .gallery-modal {
            display: none;
            position: fixed;
            z-index: 99999;
            left: 0;
            top: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(6,26,26,0.88);
            align-items: center;
            justify-content: center;
            flex-direction: column;
          }
          .gallery-modal.active {
            display: flex;
          }
          .gallery-modal-img {
            max-width: 90vw;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 8px 40px rgba(201,168,76,0.18);
            border: 3px solid var(--gold);
            background: var(--white);
          }
          .gallery-modal-close {
            position: absolute;
            top: 32px;
            right: 48px;
            font-size: 48px;
            color: var(--gold2);
            cursor: pointer;
            font-weight: 300;
            z-index: 2;
            text-shadow: 0 2px 12px var(--dark);
          }

          .mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.plan-image-wrap .active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
.loader-brand img {
  width: 320px;

}
.nav-logo img {
    width: 150px;
    height: 90px;
}
 .footer-social {
  margin-top: 12px;
  display: flex;
  gap: 18px;
}
.footer-social a {
  color: var(--gold);
  font-size: 22px;
  transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  color: var(--gold2);
  transform: scale(1.18);
}
.footer-col img{
  width: 200px;
}


.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding-top: 40px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-container .slide {
  min-width: 35%; /* 4 columns */
  box-sizing: border-box;
  padding: 5px;
}

.slider-container .slide img {
  width: 100%;
  border-radius: 10px;
}

/* Navigation buttons */
.slider-container .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.slider-container .prev { left: 0; }
.slider-container .next { right: 0; }

/* Tablet */
@media (max-width: 768px) {
  .slider-container .slide {
    min-width: 50%; /* 2 columns */
  }
}

/* Mobile */
@media (max-width: 480px) {
  .slider-container .slide {
    min-width: 100%; /* 1 column */
  }
}
.footer-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}