
    /* ============================================================
       MASTER STYLESHEET — AEROCITY (EMBEDDED)
       ============================================================ */

    /* ─── ROOT VARIABLES ─── */
    :root {
      --gold: #C9952A;
      --gold-light: #E8B84B;
      --gold-pale: #FDF6E3;
      --dark: #0F1923;
      --dark-mid: #1A2B38;
      --slate: #2C3E50;
      --text: #1A1A2E;
      --muted: #5E6E80;
      --border: #DDD5C0;
      --white: #FFFFFF;
      --off-white: #FAFAF7;
      --success: #2E7D52;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'DM Sans', 'Segoe UI', sans-serif;
      --radius: 6px;
      --radius-lg: 12px;
      --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
    }

    /* ─── RESET ─── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    img,
    video {
      max-width: 100%;
      height: auto;
    }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ─── TOP BAR ─── */
    .top-bar {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.75);
      font-size: 14px;
      padding: 8px 0;
      text-align: center;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 20px;
      letter-spacing: 0.02em;
    }

    .top-bar a {
      color: var(--gold-light);
      text-decoration: none;
    }

    .top-bar span {
      margin: 0 4px;
    }

    @media (max-width: 600px) {
      .top-bar {
        font-size: 12px;
        padding: 5px 0;
        gap: 5px 10px;
      }
    }

    /* ─── HEADER ─── */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      height: 75px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo img {
      width: 55px;
      padding-top: 5px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--slate);
      text-decoration: none;
      padding: 6px 10px;
      border-radius: var(--radius);
      transition: color 0.2s, background 0.2s;
    }

    nav a:hover {
      color: var(--gold);
      background: var(--gold-pale);
    }

    /* ─── BUTTONS ─── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #dc3545;
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 13px;
      padding: 9px 18px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      letter-spacing: 0.02em;
      animation: blinkRed 1s ease-in-out infinite;
    }

    @keyframes blinkRed {
      0% { background: #dc3545; box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
      50% { background: #ff6b7a; box-shadow: 0 0 20px 8px rgba(220, 53, 69, 0.3); transform: scale(1.02); }
      100% { background: #dc3545; box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
    }

    .btn-primary:hover {
      background: #c82333;
      transform: translateY(-1px);
      animation-play-state: paused;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: transparent;
      color: var(--gold);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      padding: 10px 20px;
      border-radius: var(--radius);
      border: 2px solid var(--gold);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-outline:hover {
      background: var(--gold);
      color: var(--white);
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--white);
      color: var(--dark);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      padding: 12px 24px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-white:hover {
      background: var(--gold-pale);
      color: var(--gold);
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--dark);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      padding: 13px 26px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-dark:hover {
      background: var(--dark-mid);
      transform: translateY(-1px);
    }

    /* ─── HAMBURGER ─── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      padding: 16px 20px 24px;
      background: var(--white);
      border-top: 1px solid var(--border);
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      padding: 10px 0;
      font-weight: 500;
      color: var(--slate);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }

    .mobile-nav a:last-child {
      border-bottom: none;
    }

    /* ─── RESPONSIVE HEADER ─── */
    @media (max-width: 768px) {
      nav {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .header-inner .btn-primary {
        display: none;
      }
      .header-inner {
        height: 65px;
      }
    }

    /* ============================================================
       HERO
       ============================================================ */
    .hero {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 80px 0 60px;
    }

    .hero-video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .hero-video-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }

    .hero-grid-lines {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
      align-items: center;
    }

    .hero-content {
      color: #fff;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(201, 167, 75, 0.2);
      border: 1px solid rgba(201, 167, 75, 0.4);
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 500;
      color: var(--gold-light);
      margin-bottom: 20px;
    }

    .hero-content h1 {
      font-size: 42px;
      line-height: 1.2;
      font-weight: 700;
      margin-bottom: 18px;
      font-family: 'Playfair Display', serif;
    }

    .hero-content h1 em {
      color: var(--gold-light);
      font-style: normal;
    }

    .hero-sub {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.9;
      margin-bottom: 28px;
      max-width: 600px;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 35px;
    }

    .hero-ctas .btn-primary {
      background: var(--gold-light);
      color: #1a1a2e;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
      display: inline-block;
      animation: none;
    }

    .hero-ctas .btn-primary:hover {
      background: #c49a2e;
      transform: translateY(-2px);
    }

    .hero-ctas .btn-outline {
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      border: 2px solid var(--gold-light);
      color: var(--gold-light);
      background: transparent;
      transition: 0.3s;
      display: inline-block;
    }

    .hero-ctas .btn-outline:hover {
      background: rgba(201, 167, 75, 0.15);
    }

    .hero-stats {
      display: flex;
      gap: 40px;
    }

    .hero-stat-val {
      font-size: 22px;
      font-weight: 700;
      color: var(--gold-light);
    }

    .hero-stat-label {
      font-size: 13px;
      opacity: 0.7;
      margin-top: 2px;
    }

    /* ============================================================
   MULTI-STEP FORM STYLES — FIXED
   ============================================================ */

.lead-form-wrap {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 450px;
  margin-left: auto;
  width: 100%;
  position: relative;
}

.lead-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C9952A, #E8B84B);
  border-radius: 20px 20px 0 0;
}

/* ─── PROGRESS INDICATOR ─── */
.progress-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 4px;
}

.step-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #b0b0c0;
  transition: color 0.2s;
}

.step-dot .circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9e9f0;
  color: #7a7a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.step-dot.active .circle {
  background: #E8B84B;
  color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(232, 184, 75, 0.35);
}

.step-dot.done .circle {
  background: #1a1a2e;
  color: white;
}

.step-dot.active,
.step-dot.done {
  color: #1a1a2e;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: #dddde6;
  margin: 0 6px;
  border-radius: 4px;
  transition: background 0.3s;
}

.progress-line.fill {
  background: #E8B84B;
}

/* ─── STEPS ─── */
.steps-container {
  position: relative;
  overflow: hidden;
}

.step-pane {
  display: none;
  animation: fadeSlide 0.3s ease forwards;
}

.step-pane.active {
  display: block;
}

@keyframes fadeSlide {
  0% { opacity: 0.4; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─── FORM ELEMENTS ─── */
.lead-form-wrap .form-group {
  margin-bottom: 14px;
}

.lead-form-wrap .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.lead-form-wrap .form-group label .req {
  color: #dc3545;
  margin-left: 2px;
}

.lead-form-wrap .form-group input,
.lead-form-wrap .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d8d8e0;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.2s;
  background: #fbfbfd;
  font-family: inherit;
}

.lead-form-wrap .form-group input:focus,
.lead-form-wrap .form-group select:focus {
  outline: none;
  border-color: #E8B84B;
  box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.15);
  background: white;
}

.error-msg {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

.error-msg.show {
  display: block;
}

input.error,
select.error {
  border-color: #dc3545 !important;
  background: #fff5f5 !important;
}

/* ─── BUTTONS ─── */
.btn-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.2s;
  flex: 1;
  min-width: 80px;
  font-family: inherit;
}

.btn-primary {
  background: #E8B84B;
  color: #1a1a2e;
  box-shadow: 0 4px 14px rgba(232, 184, 75, 0.30);
}

.btn-primary:hover {
  background: #dcaa3a;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #eaeaf2;
  color: #1a1a2e;
}

.btn-secondary:hover {
  background: #d5d5e0;
}

.btn-submit {
  background: #1a1a2e;
  color: white;
  box-shadow: 0 4px 14px rgba(26, 26, 46, 0.25);
}

.btn-submit:hover {
  background: #2d2d4a;
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* ─── DUPLICATE WARNING ─── */
.dup-warning {
  background: #fff0e6;
  border-left: 4px solid #e67e22;
  padding: 8px 12px;
  border-radius: 8px;
  margin: 10px 0 4px;
  color: #a04000;
  font-weight: 500;
  font-size: 13px;
  display: none;
}

.dup-warning.show {
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1180px) {
  .lead-form-wrap {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .lead-form-wrap {
    padding: 20px 16px;
  }
  .step-dot {
    font-size: 10px;
  }
  .step-dot .circle {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  .btn {
    padding: 9px 16px;
    font-size: 13px;
  }
}

    /* ─── HERO RESPONSIVE ─── */
    @media (max-width: 1180px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .lead-form-wrap {
        max-width: 100%;
        margin: 0 auto;
      }
      .hero-content h1 {
        font-size: 36px;
      }
      .hero-stats {
        gap: 25px;
      }
    }

    @media (max-width: 600px) {
      .hero {
        padding: 60px 0 40px;
        min-height: auto;
      }
      .hero-content h1 {
        font-size: 28px;
      }
      .hero-sub {
        font-size: 15px;
      }
      .hero-ctas {
        flex-direction: column;
      }
      .hero-ctas .btn-primary,
      .hero-ctas .btn-outline {
        text-align: center;
        justify-content: center;
      }
      .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
      }
      .lead-form-wrap {
        padding: 25px 18px;
      }
    }

    /* ============================================================
       SECTIONS — COMMON
       ============================================================ */
    section {
      padding: 80px 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
      line-height: 1.25;
    }

    .section-desc {
      font-size: 17px;
      color: var(--muted);
      max-width: 600px;
      line-height: 1.75;
    }

    /* ============================================================
       ABOUT
       ============================================================ */
    .about-bg-aerocity {
      background: var(--off-white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center;
    }

    .scroll-text {
      max-height: 250px;
      overflow-y: auto;
      padding-right: 12px;
      text-align: justify;
      line-height: 1.8;
    }

    .scroll-text::-webkit-scrollbar {
      width: 8px;
    }

    .scroll-text::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    .scroll-text::-webkit-scrollbar-thumb {
      background: #C9952A;
      border-radius: 10px;
    }

    .scroll-text::-webkit-scrollbar-thumb:hover {
      background: #a97d1f;
    }

    .scroll-text {
      scrollbar-width: thin;
      scrollbar-color: #C9952A #f1f1f1;
    }

    .about-visual-video {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 32px;
    }

    .about-visual-video video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .about-visual-video::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 31, 43, .70), rgba(11, 31, 43, .10));
      z-index: 1;
    }

    .about-visual-video .about-visual-tag {
      position: absolute;
      top: 24px;
      left: 24px;
      padding: 6px 14px;
      background: rgba(201, 149, 42, .18);
      border: 1px solid rgba(201, 149, 42, .40);
      border-radius: 100px;
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      z-index: 2;
    }

    .about-visual-video .about-visual-num {
      position: absolute;
      right: 24px;
      bottom: 20px;
      font-size: 80px;
      color: rgba(255, 255, 255, .08);
      line-height: 1;
      z-index: 1;
    }

    @media (max-width: 768px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .about-visual-video {
        min-height: 320px;
      }
      .about-visual-video .about-visual-num {
        font-size: 56px;
      }
    }

    /* ============================================================
       GALLERY
       ============================================================ */
    .gallery-bg {
      background: var(--off-white);
      padding: 60px 0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 200px);
      gap: 14px;
      margin-top: 48px;
    }

    .gallery-item {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--dark-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-height: 180px;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .gallery-item:first-child {
      grid-row: span 2;
    }

    .gallery-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--dark-mid) 0%, var(--slate) 100%);
      position: relative;
      min-height: 180px;
    }

    .gallery-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }

    .gallery-item-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
      color: rgba(255, 255, 255, 0.95);
      font-size: 14px;
      font-weight: 600;
      padding: 30px 16px 14px;
      letter-spacing: 0.03em;
      z-index: 2;
    }

    /* ─── GALLERY RESPONSIVE ─── */
    @media (max-width: 992px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
        gap: 12px;
      }
      .gallery-item:first-child {
        grid-row: span 1;
      }
    }

    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
        gap: 10px;
        margin-top: 30px;
      }
      .gallery-item {
        min-height: 160px;
      }
      .gallery-item-label {
        font-size: 12px;
        padding: 20px 12px 10px;
      }
    }

    @media (max-width: 576px) {
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 150px);
        gap: 8px;
        margin-top: 24px;
      }
      .gallery-item {
        min-height: 140px;
        border-radius: 8px;
      }
      .gallery-item-label {
        font-size: 11px;
        padding: 15px 8px 8px;
      }
    }

    /* ─── LIGHTBOX MODAL ─── */
    .gallery-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      padding-top: 40px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.92);
      animation: fadeIn 0.3s ease;
    }

    .gallery-modal-content {
      position: relative;
      margin: auto;
      padding: 15px;
      width: 95%;
      max-width: 900px;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .gallery-modal-content img {
      width: 100%;
      height: auto;
      max-height: 75vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    #galleryModalCaption {
      color: white;
      font-size: 16px;
      font-weight: 500;
      margin-top: 12px;
      text-align: center;
      letter-spacing: 0.5px;
    }

    .gallery-close {
      position: absolute;
      top: 10px;
      right: 20px;
      color: white;
      font-size: 36px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      z-index: 10;
      background: none;
      border: none;
    }

    .gallery-close:hover {
      color: #ff6b6b;
      transform: rotate(90deg);
    }

    .gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 28px;
      font-weight: bold;
      background: rgba(255, 255, 255, 0.15);
      padding: 12px 18px;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      transition: 0.3s;
      z-index: 10;
    }

    .gallery-nav:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    .gallery-prev {
      left: 10px;
    }
    .gallery-next {
      right: 10px;
    }

    @media (max-width: 576px) {
      .gallery-modal {
        padding-top: 20px;
      }
      .gallery-modal-content {
        padding: 10px;
        width: 98%;
      }
      .gallery-modal-content img {
        max-height: 65vh;
      }
      .gallery-close {
        right: 12px;
        font-size: 28px;
        top: 8px;
      }
      .gallery-nav {
        font-size: 18px;
        padding: 8px 12px;
      }
      .gallery-prev {
        left: 5px;
      }
      .gallery-next {
        right: 5px;
      }
      #galleryModalCaption {
        font-size: 14px;
        margin-top: 8px;
      }
    }

    /* ============================================================
       PROJECT MAP
       ============================================================ */
    .map-section {
      background: var(--off-white);
      padding: 80px 0;
    }

    .map-wrapper {
      margin-top: 48px;
    }

    .map-container {
      position: relative;
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }

    .map-image {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
      cursor: zoom-in;
    }

    .map-controls {
      position: absolute;
      top: 16px;
      right: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      z-index: 5;
    }

    .map-control-btn {
      width: 40px;
      height: 40px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      box-shadow: var(--shadow-sm);
      color: var(--dark);
      font-weight: 600;
    }

    .map-control-btn:hover {
      background: var(--gold);
      color: var(--white);
      border-color: var(--gold);
      transform: scale(1.05);
    }

    .map-legend {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      padding: 16px 20px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      z-index: 5;
      min-width: 140px;
    }

    .map-legend h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .map-legend ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .map-legend ul li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text);
    }

    .legend-color {
      width: 16px;
      height: 16px;
      border-radius: 4px;
      flex-shrink: 0;
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .map-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .map-stat-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 20px;
      text-align: center;
      transition: all 0.2s;
    }

    .map-stat-item:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }

    .map-stat-number {
      display: block;
      font-size: 24px;
      font-weight: 700;
      color: var(--gold);
      font-family: var(--font-display);
      line-height: 1.2;
    }

    .map-stat-label {
      display: block;
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
    }

    @media (max-width: 768px) {
      .map-section {
        padding: 60px 0;
      }
      .map-legend {
        display: none;
      }
      .map-controls {
        top: 10px;
        right: 10px;
      }
      .map-control-btn {
        width: 34px;
        height: 34px;
        font-size: 15px;
      }
      .map-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .map-stat-number {
        font-size: 20px;
      }
    }

    @media (max-width: 480px) {
      .map-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .map-stat-item {
        padding: 14px;
      }
      .map-stat-number {
        font-size: 18px;
      }
    }

    /* ============================================================
       HIGHLIGHTS
       ============================================================ */
    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 48px;
    }

    .highlight-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 14px;
      transition: transform .2s, box-shadow .2s, border-color .2s;
      cursor: default;
    }

    .highlight-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: var(--gold);
    }

    .highlight-check {
      width: 100%;
      height: 160px;
      border-radius: 12px;
      overflow: hidden;
    }

    .highlight-check img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .highlight-text h4 {
      font-size: 16px;
      font-weight: 600;
      color: var(--dark);
    }

    /* ============================================================
       BENEFITS
       ============================================================ */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      padding: 30px 0;
    }

    .benefit-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid #eee;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .benefit-image {
      height: 200px;
    }

    .benefit-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .benefit-text {
      padding: 18px;
      text-align: center;
    }

    .benefit-text h4 {
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--dark);
    }

    .benefit-text p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    @media (max-width: 992px) {
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .benefits-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ============================================================
       WHY CHOOSE
       ============================================================ */
    .why-bg {
      background: var(--dark);
    }

    .why-title-area .section-title {
      color: var(--white);
    }

    .why-title-area .section-desc {
      color: rgba(255, 255, 255, 0.6);
    }

    .why-title-area .section-label {
      color: var(--gold-light);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 48px;
    }

    .why-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: background 0.2s, border-color 0.2s;
    }

    .why-card:hover {
      background: rgba(201, 149, 42, 0.1);
      border-color: rgba(201, 149, 42, 0.4);
    }

    .why-icon {
      font-size: 28px;
      margin-bottom: 16px;
      display: block;
    }

    .why-card h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.65;
    }

    /* ============================================================
       FAQ
       ============================================================ */
    .faq-wrap {
      max-width: 780px;
      margin: 48px auto 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 600;
      color: var(--dark);
      line-height: 1.4;
    }

    .faq-question:hover {
      color: var(--gold);
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s;
      line-height: 1;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--gold);
      color: var(--white);
      border-color: var(--gold);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }

    .faq-item.open .faq-answer {
      max-height: 200px;
      padding-bottom: 20px;
    }

    .faq-answer p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ============================================================
       CTA BAND
       ============================================================ */
    .cta-band {
      background: linear-gradient(135deg, var(--gold) 0%, #A87820 100%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-band .section-title {
      color: var(--white);
    }

    .cta-band p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 17px;
      margin-bottom: 36px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-band .ctas {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ============================================================
       CONTACT
       ============================================================ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      margin-top: 48px;
    }

    .contact-info-block {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact-item-icon {
      width: 44px;
      height: 44px;
      background: var(--gold-pale);
      border: 1px solid rgba(201, 149, 42, 0.3);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .contact-item-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .contact-item-val {
      font-size: 15px;
      font-weight: 500;
      color: var(--dark);
    }

    .contact-item-val a {
      color: var(--dark);
      text-decoration: none;
    }

    .contact-item-val a:hover {
      color: var(--gold);
    }

    .map-placeholder {
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 24px;
    }

    .map-placeholder iframe {
      display: block;
      width: 100%;
      height: 200px;
      border: 0;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    footer {
      background: var(--dark);
      padding: 64px 0 0;
      color: rgba(255, 255, 255, 0.65);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand .logo img {
      width: 60px;
    }

    .footer-brand p {
      margin-top: 16px;
      font-size: 14px;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-socials {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 16px;
      transition: background 0.2s;
      color: rgba(255, 255, 255, 0.6);
    }

    .social-btn:hover {
      background: var(--gold);
      color: var(--white);
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: var(--gold-light);
    }

    .footer-col ul li {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
    }

    .footer-bottom {
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.3);
      flex-wrap: wrap;
      gap: 12px;
    }

    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    /* ============================================================
       FLOATING BUTTONS
       ============================================================ */
    .floating-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 54px;
      height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 26px;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
      transition: transform 0.2s, box-shadow 0.2s;
      animation: bounce 2.5s ease-in-out infinite;
      color: white;
    }

    .floating-wa:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
    }

    @keyframes bounce {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-6px);
      }
    }

    .sticky-cta {
      position: fixed;
      bottom: 28px;
      left: 28px;
      z-index: 999;
      background: var(--gold);
      color: white;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 700;
      padding: 12px 20px;
      border-radius: 100px;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(201, 149, 42, 0.45);
      transition: transform 0.2s, background 0.2s;
      letter-spacing: 0.03em;
    }

    .sticky-cta:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    @media (max-width: 640px) {
      .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 22px;
      }
      .sticky-cta {
        font-size: 12px;
        padding: 10px 16px;
        bottom: 20px;
        left: 20px;
      }
    }

    /* ============================================================
       SCROLL REVEAL
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    /* ============================================================
       ANIMATIONS
       ============================================================ */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* ============================================================
       BROCHURE POPUP
       ============================================================ */
    .brochure-popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.3s ease;
    }

    .brochure-popup-box {
      background: #fff;
      border-radius: 20px;
      padding: 40px 35px 35px;
      max-width: 480px;
      width: 92%;
      max-height: 95vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
      animation: slideUp 0.4s ease;
    }

    .brochure-popup-box .brochure-popup-close {
      position: absolute;
      top: 12px;
      right: 18px;
      background: none;
      border: none;
      font-size: 30px;
      color: #888;
      cursor: pointer;
      transition: 0.2s;
      line-height: 1;
    }

    .brochure-popup-box .brochure-popup-close:hover {
      color: #222;
      transform: rotate(90deg);
    }

    .brochure-popup-icon {
      font-size: 42px;
      text-align: center;
      margin-bottom: 6px;
    }

    .brochure-popup-box h2 {
      font-size: 22px;
      font-weight: 700;
      text-align: center;
      margin: 0 0 4px;
      color: #1a1a2e;
    }

    .brochure-popup-box p {
      text-align: center;
      font-size: 14px;
      color: #666;
      margin-bottom: 18px;
    }

    .brochure-popup-box .form-group {
      margin-bottom: 14px;
    }

    .brochure-popup-box .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #1a1a2e;
      margin-bottom: 4px;
    }

    .brochure-popup-box .form-group input,
    .brochure-popup-box .form-group select {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid #ddd;
      border-radius: 10px;
      font-size: 14px;
      transition: 0.2s;
      background: #f9f9fc;
    }

    .brochure-popup-box .form-group input:focus,
    .brochure-popup-box .form-group select:focus {
      border-color: #c9a74b;
      outline: none;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(201, 167, 75, 0.15);
    }

    .brochure-popup-box .form-submit {
      width: 100%;
      padding: 12px;
      background: #c9a74b;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      margin-top: 4px;
    }

    .brochure-popup-box .form-submit:hover {
      background: #b8923a;
      transform: translateY(-1px);
    }

    .brochure-popup-box .form-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .brochure-popup-box .form-note {
      text-align: center;
      font-size: 12px;
      color: #999;
      margin-top: 12px;
    }

    .brochure-popup-box .form-success {
      text-align: center;
      padding: 20px 0;
    }

    .brochure-popup-box .form-success .check {
      width: 50px;
      height: 50px;
      background: #4CAF50;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 10px;
    }

    .brochure-popup-box .form-success h3 {
      color: #1a1a2e;
      margin: 0 0 4px;
    }

    .brochure-popup-box .form-success p {
      color: #666;
      margin: 0;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @media (max-width: 500px) {
      .brochure-popup-box {
        padding: 30px 20px 25px;
      }
      .brochure-popup-box h2 {
        font-size: 19px;
      }
    }

    /* ─── SECTION OVERRIDE ─── */
    #highlights {
      padding: 80px 0;
    }

    #benefits-location {
      padding: 80px 0;
    }

    #faq {
      padding: 80px 0;
    }

    #contact {
      padding: 80px 0;
    }

    section#about {
      padding: 80px 0;
    }

    @media (max-width: 600px) {
      section {
        padding: 60px 0;
      }
      #highlights {
        padding: 60px 0;
      }
      #benefits-location {
        padding: 60px 0;
      }
      #faq {
        padding: 60px 0;
      }
      #contact {
        padding: 60px 0;
      }
      section#about {
        padding: 60px 0;
      }
    }



    /* ============================================================
   VIDEO TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--off-white, #FAFAF7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: var(--shadow, 0 4px 24px rgba(0, 0, 0, 0.10));
  border: 1px solid var(--border, #DDD5C0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial-meta {
  padding: 18px 20px 22px;
}

.testimonial-meta h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark, #0F1923);
  margin-bottom: 6px;
  font-family: var(--font-display, 'Playfair Display', serif);
}

.testimonial-meta p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted, #5E6E80);
  margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 60px 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  .testimonial-meta {
    padding: 14px 16px 18px;
  }
  .testimonial-meta h4 {
    font-size: 15px;
  }
  .testimonial-meta p {
    font-size: 13px;
  }
}
/* ============================================================
   YOUTUBE ADS FLOATING VIDEO SECTION
   ============================================================ */
.youtube-ads-floating-section {
  padding: 20px 0;
  background: var(--off-white, #FAFAF7);
}

.floating-video-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
  background: #fff;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: var(--shadow, 0 4px 24px rgba(0, 0, 0, 0.10));
  border: 1px solid var(--border, #DDD5C0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-video-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  padding: 30px 35px 30px 20px;
}

.video-caption h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark, #0F1923);
  margin-bottom: 10px;
  font-family: var(--font-display, 'Playfair Display', serif);
}

.video-caption p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted, #5E6E80);
  margin-bottom: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .floating-video-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .video-caption {
    padding: 20px 25px 30px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .youtube-ads-floating-section {
    padding: 60px 0;
  }
  .video-caption h4 {
    font-size: 18px;
  }
  .video-caption p {
    font-size: 14px;
  }
  .video-caption {
    padding: 16px 18px 24px;
  }
}




/* ============================================================
   INSTAGRAM VIDEOS SECTION
   ============================================================ */
.instagram-section {
  padding: 10px 0;
  background: var(--off-white, #FAFAF7);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.instagram-card {
  background: #fff;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: var(--shadow, 0 4px 24px rgba(0, 0, 0, 0.10));
  border: 1px solid var(--border, #DDD5C0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* This ensures the Instagram embed is responsive */
.instagram-card .video-wrapper {
  position: relative;
  padding-bottom: 100%; /* 1:1 Aspect Ratio for Instagram */
  height: 0;
  overflow: hidden;
  background: #f0f0f0;
}

.instagram-card .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.instagram-meta {
  padding: 16px 18px 20px;
}

.instagram-meta h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark, #0F1923);
  margin-bottom: 4px;
  font-family: var(--font-display, 'Playfair Display', serif);
}

.instagram-meta p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted, #5E6E80);
  margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .instagram-section {
    padding: 60px 0;
  }
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  .instagram-meta {
    padding: 14px 16px 18px;
  }
  .instagram-meta h4 {
    font-size: 14px;
  }
}