  :root {
      --navy: #071c34;
      --navy-2: #0b2748;
      --old-blue: #1f4e79;
      --reef: #1c98c7;
      --reef-soft: #b7e4e7;
      --pine: #0f3d2e;
      --rainforest: #1f5a47;
      --ivory: #f8f2e7;
      --sand: #d8c59d;
      --gold: #b89b5e;
      --charcoal: #152027;
      --muted: #66717c;
      --line: rgba(11, 31, 58, 0.12);
      --white: #ffffff;
      --shadow: 0 22px 60px rgba(7, 28, 52, .14);
      --shadow-soft: 0 10px 35px rgba(7, 28, 52, .10);
      --radius: 18px;
      --max: 1320px;
      --serif: "Playfair Display", Georgia, serif;
      --sans: "Inter", Arial, sans-serif;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
       overflow-x: clip;
      width: 100%;
    }
    body {
      margin: 0;
      font-family: var(--sans);
      color: var(--charcoal);
      background: #fffaf2;
      line-height: 1.62;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
       overflow-x: clip;
      width: 100%;
      position: relative;
    }
    body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input, select { font: inherit; }
    .container {
      width: min(100% - 40px, var(--max));
      margin: 0 auto;
    }
    .eyebrow {
      display: inline-flex;
      gap: .5rem;
      align-items: center;
      color: var(--gold);
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: currentColor;
      opacity: .85;
    }
    h1, h2, h3 {
      margin: 0;
      color: var(--navy);
      line-height: 1.05;
    }
    h1, h2 { font-family: var(--serif); }
    h1 { font-size: clamp(3.2rem, 8vw, 7.8rem); letter-spacing: -.055em; }
    h2 { font-size: clamp(2rem, 4.2vw, 4.15rem); letter-spacing: -.035em; }
    h3 { font-size: 1.08rem; letter-spacing: -.018em; }
    p { margin: 0; }
    .muted { color: var(--muted); }
    .section {
      padding: clamp(4rem, 7vw, 7.2rem) 0;
      position: relative;
    }
    .section.ivory { background: var(--ivory); }
    .section.bluewash {
      background:
        radial-gradient(circle at 15% 5%, rgba(183, 228, 231, .52), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #eef8f7 100%);
    }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(min(280px, 100%), .85fr);
      gap: 3rem;
      align-items: end;
      margin-bottom: clamp(2rem, 4vw, 3.5rem);
    }
    .section-head p {
      color: #44515b;
      font-size: 1.05rem;
      max-width: 660px;
      text-align: justify; /* This applies the justified alignment */
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .65rem;
      padding: .96rem 1.35rem;
      border-radius: 999px;
      border: 1px solid transparent;
      background: var(--navy);
      color: var(--white);
      font-weight: 800;
      font-size: .92rem;
      letter-spacing: .01em;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
      cursor: pointer;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(7,28,52,.22); background: var(--pine); }
    .btn.gold { background: var(--gold); color: var(--navy); }
    .btn.light { background: rgba(255,255,255,.1); color: var(--ivory); border-color: rgba(255,255,255,.32); }
    .btn.light:hover { background: var(--ivory); color: var(--navy); }
    .pill {
      border: 1px solid rgba(184, 155, 94, .34);
      background: rgba(255,255,255,.58);
      border-radius: 999px;
      padding: .55rem .78rem;
      color: var(--navy);
      font-size: .78rem;
      font-weight: 800;
    }

    /* Header */
    .topbar {
      background: var(--navy);
      color: rgba(248,242,231,.92);
      font-size: .78rem;
      letter-spacing: .02em;
      position: relative;
      z-index: 1200;
    }
    .topbar .container {
      display: flex;
      min-height: 38px;
      justify-content: space-between;
      align-items: center;
      gap: 1.2rem;
    }
    .topbar-links {
      display: flex;
      gap: 1.2rem;
      align-items: center;
      flex-shrink: 0;
    }
    .lang-switch {
      appearance: none;
      -webkit-appearance: none;
      background-color: transparent;
      color: inherit;
      font-family: inherit;
      font-size: inherit;
      font-weight: 700;
      border: none;
      outline: none;
      cursor: pointer;
      padding-right: 16px;
      letter-spacing: .02em;
      /* Adds a custom white dropdown arrow */
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='rgba(248,242,231,0.92)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right center;
    }
    .lang-switch option {
      background-color: var(--navy);
      color: var(--ivory);
      font-weight: 500;
    }
    .header {
      position: sticky;
      top: 0;
      z-index: 1100;
      background: rgba(255, 250, 242, .9);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(11,31,58,.08);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 82px;
      gap: 1.5rem;
    }
    .logo-wrap {
      display: flex;
      align-items: center;
      gap: .85rem;
      flex-shrink: 0;
    }
  .logo-mark {
  width: 65px; /* Increased size to match your picture */
  height: 65px;
  border-radius: 50%; /* Keeps it perfectly round */
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(7,28,52,.12); /* Soft drop shadow */
}
  .logo-text {
  display: grid;
  justify-items: center; /* This centers the tagline perfectly under VISIT BELIZE */
  line-height: 1.02;
}
.logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--pine);
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: calc(100vw - 160px); /* Prevents logo from pushing past hamburger */
  overflow: hidden;
  text-overflow: ellipsis;
}
.tagline {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
  margin-top: 5px;
}
/* New Custom Colors for the Tagline */
.color-red { color: #d32f2f; }
.color-yellow { color: #b89b5e; } /* Using the brand's dark yellow/gold */
.color-green { color: #0f3d2e; } /* Using the brand's dark green */
.tagline::before, .tagline::after {
  content: "";
  height: 1px;
  width: 35px;
  background-color: var(--gold);
}
    .nav {
      display: flex;
      align-items: center;
      gap: .1rem;
    }
    .nav-item { position: relative; }
   .nav-link {
  border: 0;
  background: transparent;
  padding: 1.9rem .85rem;
  color: var(--navy);
  font-size: .82rem; /* Adjusted slightly for uppercase */
  font-weight: 800;
  text-transform: uppercase; /* Makes it uppercase everywhere */
  letter-spacing: .06em; /* Adds a nice, sophisticated spacing */
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
    .nav-link:hover { color: var(--old-blue); }
    .chev { font-size: .72rem; color: var(--gold); }
    .mega {
      position: absolute;
      top: 100%;
      left: 50%;
      width: min(760px, calc(100vw - 40px));
      transform: translateX(-50%) translateY(10px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: .22s ease;
      background: rgba(255,255,255,.98);
      border: 1px solid rgba(184,155,94,.28);
      border-top: 4px solid var(--gold);
      box-shadow: var(--shadow);
      border-radius: 0 0 18px 18px;
      padding: 1.65rem;
      display: grid;
      grid-template-columns: .9fr 1.45fr;
      gap: 1.55rem;
    }
    .nav-item:hover .mega, .nav-item:focus-within .mega {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .mega-intro {
      padding-right: 1.35rem;
      border-right: 1px solid rgba(11,31,58,.1);
    }
    .mega-intro h3 {
      font-family: var(--serif);
      font-size: 1.45rem;
      color: var(--pine);
      margin-bottom: .6rem;
    }
    .mega-intro p { color: #53606a; font-size: .92rem; }
    .mega-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .75rem 1.1rem;
    }
    .mega-links a {
      display: flex;
      align-items: center;
      gap: .55rem;
      font-size: .91rem;
      color: var(--navy);
      font-weight: 700;
    }
    .mega-links a::before {
      content: "";
      width: 7px;
      height: 7px;
      background: var(--reef);
      border-radius: 50%;
      flex: 0 0 auto;
    }
    .search-mini {
      display: flex;
      align-items: center;
      gap: .55rem;
      border: 1px solid rgba(11,31,58,.12);
      background: #fff;
      border-radius: 999px;
      padding: .58rem .78rem;
      min-width: 160px;
      color: #5b6872;
      font-size: .88rem;
      font-weight: 700;
    }
    .hamburger {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(11,31,58,.15);
      background: #fff;
      color: var(--navy);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .hamburger span, .hamburger span::before, .hamburger span::after {
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      position: relative;
      transition: .2s ease;
    }
    .hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; }
    .hamburger span::before { top: -6px; }
    .hamburger span::after { top: 6px; }
    body.nav-open .hamburger span { background: transparent; }
    body.nav-open .hamburger span::before { top: 0; transform: rotate(45deg); background: var(--navy); }
    body.nav-open .hamburger span::after { top: 0; transform: rotate(-45deg); background: var(--navy); }

    /* Hero */
    .hero {
      position: relative;
      min-height: clamp(640px, 82vh, 860px);
      color: var(--white);
      overflow: hidden;
      isolation: isolate;
    }
    .hero-bg, .hero-bg picture, .hero-bg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: -3;
    }
    .hero-bg img { object-fit: cover; }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(7,28,52,.92) 0%, rgba(7,28,52,.78) 36%, rgba(7,28,52,.28) 70%, rgba(7,28,52,.18) 100%),
        linear-gradient(0deg, rgba(7,28,52,.72) 0%, transparent 42%);
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 170px;
      z-index: -1;
      background: linear-gradient(180deg, transparent, #fffaf2 92%);
    }
    .hero-inner {
      min-height: inherit;
      display: grid;
      grid-template-columns: minmax(0, .96fr) minmax(min(330px, 100%), .48fr);
      gap: 2.4rem;
      align-items: center;
      padding: 6rem 0 6.5rem;
    }
    .hero-copy { max-width: 820px; }
    .hero h1 { color: var(--white); margin-bottom: 1.15rem; }
    .hero-lede {
  max-width: 670px;
  color: rgba(248,242,231,.96);
  font-size: clamp(1.05rem, 2vw, 1.36rem);
  line-height: 1.62;
  text-shadow: 0 2px 10px rgba(0,0,0,.22);
  text-align: justify; /* This perfectly aligns the text to both edges */
}
    .hero-actions {
      margin-top: 2rem;
      display: flex;
      gap: .9rem;
      flex-wrap: wrap;
    }
    .intent-card {
      align-self: end;
      background: rgba(255,250,242,.97);
      color: var(--navy);
      border-radius: 22px;
      padding: 1.15rem;
      border: 1px solid rgba(255,255,255,.5);
      box-shadow: var(--shadow);
    }
    .intent-card label {
      display: block;
      font-size: .77rem;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--pine);
      font-weight: 900;
      margin: .25rem .25rem .8rem;
    }
    .intent-field {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: .6rem;
      background: var(--navy);
      color: #fff;
      border-radius: 16px;
      padding: .75rem .9rem;
      margin-bottom: .9rem;
    }
    .intent-field select {
      appearance: none;
      background: transparent;
      color: #fff;
      border: 0;
      outline: 0;
      font-weight: 800;
      width: 100%;
      cursor: pointer;
    }
    .intent-field select option { color: var(--navy); background: #fff; }
    .intent-note {
      color: #5b6872;
      font-size: .86rem;
      padding: 0 .25rem;
    }
    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .75rem;
      margin-top: 1.1rem;
    }
    .stat {
      border-radius: 16px;
      padding: .95rem;
      background: linear-gradient(135deg, rgba(31,78,121,.08), rgba(15,61,46,.09));
      border: 1px solid rgba(11,31,58,.08);
    }
    .stat strong {
      display: block;
      color: var(--navy);
      font-size: 1.12rem;
      line-height: 1;
      margin-bottom: .28rem;
    }
    .stat span { color: #53606a; font-size: .78rem; font-weight: 700; }

    /* Trust band */
    .trust {
      margin-top: -54px;
      position: relative;
      z-index: 20;
    }
    .trust-panel {
      display: grid;
      grid-template-columns: .82fr repeat(3, 1fr);
      background:
        radial-gradient(circle at 8% 0%, rgba(42,159,214,.24), transparent 28%),
        linear-gradient(135deg, var(--navy), var(--pine));
      color: var(--ivory);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(184,155,94,.32);
    }
    .trust-title {
      padding: 2rem;
      border-right: 1px solid rgba(255,255,255,.14);
    }
    .trust-title h2 {
      color: #fff;
      font-size: 1.5rem;
      letter-spacing: -.02em;
    }
    .trust-title p { color: rgba(248,242,231,.78); font-size: .9rem; margin-top: .6rem; }
    .trust-item {
      padding: 2rem;
      border-right: 1px solid rgba(255,255,255,.11);
    }
    .trust-item:last-child { border-right: 0; }
    .trust-icon {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(184,155,94,.55);
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin-bottom: 1rem;
      color: var(--sand);
    }
    .trust-item strong { display: block; color: #fff; margin-bottom: .35rem; }
    .trust-item p { color: rgba(248,242,231,.78); font-size: .89rem; }

    /* Cards */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.15rem;
    }
    .image-card {
      position: relative;
      min-height: 430px;
      border-radius: 22px;
      overflow: hidden;
      background: #d8e5e4;
      box-shadow: var(--shadow-soft);
      transform: translateY(0);
      transition: .32s ease;
      isolation: isolate;
    }
    .image-card.small { min-height: 345px; }
    .image-card.wide { min-height: 360px; }
    .image-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .image-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s ease;
      z-index: -2;
    }
    .image-card:hover img { transform: scale(1.06); }
    .image-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg, rgba(7,28,52,.08), rgba(7,28,52,.86) 76%),
        linear-gradient(90deg, rgba(7,28,52,.25), transparent);
    }
    .card-content {
      position: absolute;
      inset: auto 0 0;
      padding: 1.45rem;
      color: var(--white);
    }
    .card-content h3 {
      color: #fff;
      font-size: 1.28rem;
      margin-bottom: .55rem;
    }
    .card-content p {
      color: rgba(255,255,255,.84);
      font-size: .92rem;
    }
    .ribbon {
      position: absolute;
      top: 1.05rem;
      left: 1.05rem;
      z-index: 2;
      background: rgba(184,155,94,.96);
      color: var(--navy);
      border-radius: 999px;
      padding: .43rem .75rem;
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 900;
      box-shadow: 0 8px 20px rgba(0,0,0,.18);
    }

    .callout {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: clamp(2rem, 6vw, 5rem);
      align-items: center;
      border-radius: 28px;
      border: 1px solid rgba(184,155,94,.36);
      background:
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(248,242,231,.98)),
        radial-gradient(circle at 8% 10%, rgba(183,228,231,.8), transparent 34%);
      box-shadow: var(--shadow-soft);
      padding: clamp(2rem, 5vw, 4.5rem);
      position: relative;
      overflow: hidden;
    }
    .callout::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(184,155,94,.35);
      border-radius: 22px;
      pointer-events: none;
    }
    .callout-copy { position: relative; z-index: 2; }
    .callout-copy h2 { margin-bottom: 1rem; }
    .callout-copy .lead {
      font-size: 1.25rem;
      color: var(--old-blue);
      font-weight: 800;
      line-height: 1.48;
    }
    .callout-body {
      position: relative;
      z-index: 2;
      color: #48545e;
      display: grid;
      gap: 1.1rem;
    }
    .callout-body ul {
      display: grid;
      gap: .75rem;
      padding: 0;
      margin: .25rem 0 0;
      list-style: none;
    }
    .callout-body li {
      display: flex;
      gap: .7rem;
      align-items: flex-start;
      font-weight: 650;
      color: var(--navy);
    }
    .callout-body li::before {
      content: "✓";
      color: var(--pine);
      font-weight: 900;
    }

    .icon-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 1rem;
    }
    .icon-card {
      padding: 1.55rem 1rem;
      min-height: 170px;
      display: grid;
      place-items: center;
      text-align: center;
      gap: .85rem;
      border-radius: 20px;
      background: rgba(255,255,255,.84);
      border: 1px solid rgba(11,31,58,.08);
      box-shadow: 0 12px 30px rgba(7,28,52,.06);
      transition: .25s ease;
    }
    .icon-card:hover { transform: translateY(-4px); border-color: rgba(184,155,94,.52); }
    .icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(42,159,214,.14), rgba(15,61,46,.11));
      color: var(--pine);
      border: 1px solid rgba(42,159,214,.22);
    }
    .icon svg { width: 27px; height: 27px; stroke: currentColor; fill: none; stroke-width: 1.8; }
    .icon-card h3 {
      font-size: .95rem;
      color: var(--navy);
    }

    .split-feature {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      border-radius: 26px;
      overflow: hidden;
      background: var(--pine);
      color: var(--ivory);
      box-shadow: var(--shadow);
    }
    .split-feature .image { min-height: 420px; position: relative; }
    .split-feature .image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
    .split-feature .copy {
      padding: clamp(2rem, 5vw, 4rem);
      display: grid;
      align-content: center;
      background:
        radial-gradient(circle at 92% 14%, rgba(42,159,214,.18), transparent 34%),
        linear-gradient(135deg, var(--pine), var(--navy));
    }
    .split-feature h2 { color: #fff; margin-bottom: 1rem; }
    .split-feature p { 
      color: rgba(248,242,231,.83); 
      margin-bottom: 2rem; 
      text-align: justify; /* Perfect magazine-style block alignment */
      line-height: 1.7; /* Slightly taller line height for luxury readability */
    }
    .info-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }
    .info-card {
      background: #fff;
      border: 1px solid rgba(11,31,58,.09);
      border-radius: 18px;
      padding: 1.35rem;
      box-shadow: 0 10px 25px rgba(7,28,52,.055);
      transition: .22s ease;
    }
    .info-card:hover { transform: translateY(-3px); border-color: rgba(184,155,94,.52); }
    .info-card strong { display: block; color: var(--navy); margin-bottom: .35rem; }
    .info-card span { display: block; color: #61707b; font-size: .9rem; }

    .story-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.1rem;
    }
    .story {
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(11,31,58,.08);
      transition: .25s ease;
    }
    .story:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .story-img { height: 230px; overflow: hidden; background: #cfe2e1; }
    .story-img img { width: 100%; height: 100%; object-fit: cover; transition: .55s ease; }
    .story:hover .story-img img { transform: scale(1.05); }
    .story-copy { padding: 1.35rem; }
    .story-copy h3 { margin-bottom: .55rem; font-size: 1.12rem; }
    .story-copy p { color: #596672; font-size: .93rem; }

    .season {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 1rem;
      align-items: stretch;
    }
    .season-card {
      border-radius: 24px;
      padding: 2rem;
      background: var(--navy);
      color: #fff;
      min-height: 100%;
      box-shadow: var(--shadow-soft);
    }
    .season-card h3 {
      color: #fff;
      font-family: var(--serif);
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.15rem; }
    .chips .pill { background: rgba(255,255,255,.09); color: var(--ivory); border-color: rgba(255,255,255,.2); }
    .season-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .season-tile {
      border-radius: 22px;
      background: #fff;
      padding: 1.45rem;
      border: 1px solid rgba(11,31,58,.08);
      box-shadow: 0 10px 25px rgba(7,28,52,.055);
    }
    .season-tile strong { color: var(--pine); display: block; margin-bottom: .55rem; }
    .season-tile p { color: #596672; font-size: .92rem; }

    .newsletter {
      background:
        radial-gradient(circle at 75% 0%, rgba(42,159,214,.24), transparent 33%),
        linear-gradient(135deg, var(--navy), var(--pine));
      color: var(--ivory);
      border-radius: 34px;
      padding: clamp(2.2rem, 6vw, 5rem);
      display: grid;
      grid-template-columns: 1fr .9fr;
      gap: 2.5rem;
      align-items: center;
      box-shadow: var(--shadow);
      border: 1px solid rgba(184,155,94,.32);
    }
    .newsletter h2 { color: #fff; margin-bottom: 1rem; }
    .newsletter p { color: rgba(248,242,231,.82); max-width: 620px; }
    .newsletter-form {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: .75rem;
      background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      padding: .55rem;
    }
    .newsletter-form input {
      background: transparent;
      border: 0;
      outline: 0;
      color: #fff;
      padding: .75rem .95rem;
      min-width: 0;
    }
    .newsletter-form input::placeholder { color: rgba(248,242,231,.66); }

    footer {
      background: #05080c; /* Deep, rich luxury black */
      padding: 5rem 0 3rem;
      position: relative;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 Equal Cards */
      gap: 2rem;
    }
    .footer-card {
      border-radius: 20px;
      padding: 2.5rem;
      border: 1px solid rgba(184, 155, 94, 0.25);
      /* The Subtle Glowing Perimeter */
      box-shadow: 0 0 20px rgba(184, 155, 94, 0.05), inset 0 0 20px rgba(184, 155, 94, 0.02);
      transition: all 0.4s ease;
      display: flex;
      flex-direction: column;
    }
    .footer-card:hover {
      border-color: rgba(184, 155, 94, 0.7);
      /* Glow intensifies on hover */
      box-shadow: 0 0 35px rgba(184, 155, 94, 0.15), inset 0 0 20px rgba(184, 155, 94, 0.05);
      transform: translateY(-5px);
    }
    
    /* Subtle Blended Tint Backgrounds */
    .card-brand { background: linear-gradient(145deg, rgba(11, 39, 72, 0.4), rgba(7, 28, 52, 0.8)); }
    .card-travel { background: linear-gradient(145deg, rgba(15, 61, 46, 0.4), rgba(7, 26, 20, 0.8)); }
    .card-invest { background: linear-gradient(145deg, rgba(90, 33, 46, 0.25), rgba(28, 10, 14, 0.8)); }
    
    /* Typography inside the cards */
    .footer-card p {
      color: rgba(248, 242, 231, 0.8);
      font-size: 0.95rem;
      line-height: 1.7;
      text-align: justify;
      margin: 0;
    }
    .footer-card h3 {
      color: #fff;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(184, 155, 94, 0.3);
      padding-bottom: 0.8rem;
    }
    .footer-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }
    .footer-card a {
      color: rgba(248, 242, 231, 0.75);
      font-size: 0.95rem;
      font-weight: 500;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
    }
    /* Elegant gold arrows next to links */
    .footer-card a::before {
      content: "›";
      color: var(--gold);
      margin-right: 0.6rem;
      font-size: 1.4rem;
      transition: transform 0.3s ease;
    }
    .footer-card a:hover {
      color: var(--gold);
    }
    .footer-card a:hover::before {
      transform: translateX(5px);
    }

    /* Bottom Copyright Section */
    .source-note {
      border-top: 1px solid rgba(184, 155, 94, 0.2);
      margin-top: 4rem;
      padding-top: 2rem;
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.85rem;
      text-align: center;
      line-height: 1.8;
    }
    .source-note p { margin: 0; }

@media (max-width: 1180px) {
      .feature-grid { grid-template-columns: repeat(2, 1fr); }
      .icon-grid { grid-template-columns: repeat(3, 1fr); }
      .info-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-panel { grid-template-columns: 1fr 1fr; }
      .trust-title, .trust-item { border-bottom: 1px solid rgba(255,255,255,.12); }
      .trust-item:nth-child(3) { border-right: 0; }
    }

    @media (max-width: 1024px) {
      .search-mini { display: none; }
      .topbar .container { justify-content: center; }
      .topbar .intro { display: none; }
      .hamburger { display: inline-flex; }
      .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: auto;
        max-height: calc(100vh - 82px);
        height: auto;
        display: block;
        overflow-y: auto;
        padding: 1rem 20px 2rem;
        background: rgba(255,250,242,.98);
        border-top: 1px solid rgba(11,31,58,.08);
        box-shadow: 0 20px 40px rgba(7,28,52,.18);
        transform: translateX(100%);
        transition: transform .25s ease;
      }
      body.nav-open .nav { transform: translateX(0); }
      .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 1rem;
        border-radius: 14px;
        border: 1px solid rgba(11,31,58,.08);
        background: #fff;
        margin-bottom: .5rem;
      }
      .nav-item .mega,
      .nav-item:hover .mega,
      .nav-item:focus-within .mega {
        position: static;
        width: 100%;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        grid-template-columns: 1fr;
        margin: -.25rem 0 1rem;
        box-shadow: none;
        border-radius: 16px;
      }
      .nav-item.open .mega { display: grid; }
      .mega-intro { border-right: 0; border-bottom: 1px solid rgba(11,31,58,.08); padding: 0 0 1rem; }
      .hero-inner {
        grid-template-columns: 1fr;
        align-items: end;
        padding-top: 4rem;
      }
      .intent-card { max-width: 620px; }
      .section-head, .callout, .split-feature, .season, .newsletter, .footer-grid {
        grid-template-columns: 1fr;
      }
      .story-grid { grid-template-columns: 1fr; }
      .season-list { grid-template-columns: 1fr; }
    }

    @media (max-width: 680px) {
      .container { width: min(100% - 28px, var(--max)); }
      .topbar-links { gap: .75rem; font-size: .72rem; }
      .header-inner { min-height: 72px; }
      .logo { font-size: 1.22rem; }
      .tagline { font-size: .58rem; letter-spacing: .12em; }
      .logo-mark { width: 45px; height: 45px; }
      .hero { min-height: 720px; }
      .hero-actions .btn { width: 100%; }
      .hero-stats { grid-template-columns: 1fr; }
      .trust { margin-top: 0; }
      .trust-panel, .feature-grid, .icon-grid, .info-grid {
        grid-template-columns: 1fr;
      }
      .trust-title, .trust-item { border-right: 0; }
      .image-card, .image-card.small, .image-card.wide { min-height: 360px; }
      .newsletter-form { grid-template-columns: 1fr; border-radius: 22px; }
      .newsletter-form .btn { width: 100%; }
      .mega-links { grid-template-columns: 1fr; }
      .section { padding: 3.5rem 0; }
      .callout, .newsletter { border-radius: 24px; }
    }



    /* --- CUSTOM INTENT ACCORDION --- */
    .intent-label {
      display: block;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--pine);
      font-weight: 900;
      margin-bottom: 1.2rem;
    }
    .intent-accordion {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .accordion-item {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(7, 28, 52, 0.08);
    }
    .accordion-header {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.25rem;
      border: none;
      color: #fff;
      font-weight: 800;
      font-size: .95rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    /* The 4 Old Money Colors */
    .bg-navy { background-color: var(--navy); }
    .bg-pine { background-color: var(--pine); }
    .bg-wine { background-color: #5a212e; } /* Deep Burgundy */
    .bg-gold { background-color: #8b6d3f; } /* Antique Gold */
    
    .accordion-header .chev {
      transition: transform 0.3s ease;
      font-size: 1.1rem;
    }
    /* Rotate arrow when open */
    .accordion-item.active .accordion-header .chev {
      transform: rotate(-180deg);
    }
    
    /* Elegant Dropdown Content */
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .accordion-inner {
      padding: 0.5rem 0;
      display: flex;
      flex-direction: column;
    }
    .accordion-inner a {
      padding: 0.75rem 1.25rem;
      color: var(--navy-2);
      font-size: 0.9rem;
      font-weight: 600;
      border-left: 3px solid transparent;
      transition: all 0.2s ease;
    }
    .accordion-inner a:hover {
      background-color: rgba(255, 255, 255, 0.4); /* Adds a soft white highlight for readability */
      color: var(--navy); /* Keeps the text dark navy instead of yellow */
      border-left: 3px solid var(--gold);
      padding-left: 1.5rem; /* Slight indent on hover */
      font-weight: 800; /* Makes the text slightly bolder when hovered */
    }

    /* --- EXPERIMENT V2: Safe Frosted Glass --- */
    
    /* 1. Add glass effect ONLY to the main card so it doesn't break animations */
    .intent-card {
      background: rgba(255, 250, 242, 0.45) !important;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    /* 2. Make the drop-down content transparent so the card's blur shows through */
    .accordion-content {
      background-color: transparent !important;
    }

    /* --- CUSTOM LANGUAGE DROPDOWN --- */
    .custom-lang-switch {
      position: relative;
      display: inline-block;
      font-family: var(--sans);
    }
    .lang-switch-btn {
      background: transparent;
      color: rgba(248,242,231,.92);
      font-size: .78rem;
      font-weight: 700;
      border: none;
      outline: none;
      cursor: pointer;
      letter-spacing: .02em;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0;
    }
    .lang-switch-btn:hover {
      color: #fff;
    }
    .lang-switch-btn .chev {
      font-size: 0.6rem;
      transition: transform 0.25s ease;
    }
    /* Rotate the arrow when open */
    .custom-lang-switch.open .lang-switch-btn .chev {
      transform: rotate(-180deg);
    }
    
    /* The Elegant Dropdown Menu */
    .lang-switch-menu {
      position: absolute;
      top: 100%;
      right: 0;
      margin-top: 0.8rem;
      background-color: var(--ivory);
      border: 1px solid rgba(184,155,94,.28);
      border-top: 3px solid var(--gold);
      border-radius: 0 0 8px 8px;
      box-shadow: 0 10px 25px rgba(7,28,52,.15);
      list-style: none;
      padding: 0.5rem 0;
      min-width: 130px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.25s ease;
      z-index: 2000;
    }
    .custom-lang-switch.open .lang-switch-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .lang-switch-menu li {
      padding: 0.5rem 1.2rem;
      color: var(--navy);
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      border-left: 2px solid transparent;
    }
    /* Soft gold hover effect */
    .lang-switch-menu li:hover {
      background-color: rgba(184, 155, 94, 0.08);
      color: var(--gold);
      padding-left: 1.5rem;
      border-left: 2px solid var(--gold);
    }
    /* Style for the currently active language */
    .lang-switch-menu li[aria-selected="true"] {
      color: var(--navy);
      font-weight: 800;
    }

    /* Ensures JPG icons fit perfectly in the circular trust badge */
    .trust-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    /* Justify the text in the Trust section with magazine-style auto-hyphenation */
    .trust-title p, 
    .trust-item p {
      text-align: justify;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto;
    }

/* Upgrade Inspiration Icons to Large Photo Medallions */
    .icon {
      width: 120px; /* Massively increased to show off the beautiful artwork */
      height: 120px;
      padding: 0; 
      border: 3px solid rgba(184,155,94,.5); /* Slightly thicker gold border for proportion */
      overflow: hidden;
      background: transparent;
      box-shadow: 0 8px 16px rgba(7, 28, 52, 0.12); /* Adds a premium 3D pop to the image itself */
      margin-bottom: 0.5rem; /* Pushes the text down just a bit to let the art breathe */
    }
    .icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      transition: transform 0.4s ease;
    }
    /* Adds a subtle zoom effect when you hover over the card */
    .icon-card:hover .icon img {
      transform: scale(1.1);
    }

    /* --- RICH INSPIRATION SECTION BACKDROP --- */
    .bg-rich-caribbean {
      background: 
        radial-gradient(circle at 10% 0%, rgba(28, 152, 199, 0.3), transparent 45%), 
        linear-gradient(135deg, var(--navy) 0%, var(--pine) 100%);
    }
    
    /* Make the text bright so it is readable on the dark background */
    .bg-rich-caribbean .section-head h2 { color: #fff; }
    .bg-rich-caribbean .section-head p { color: rgba(248, 242, 231, 0.85); }
    .bg-rich-caribbean .eyebrow { color: var(--gold); }
    
/* Base card styling (shadows and borders) */
    .bg-rich-caribbean .icon-card {
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25); 
      border: 1px solid rgba(184, 155, 94, 0.3); 
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

   /* The 6 Richer "Old Money" Backgrounds */
    .bg-rich-caribbean .icon-grid a:nth-child(1) { background: #EAE4D3; } /* Rich Parchment */
    .bg-rich-caribbean .icon-grid a:nth-child(2) { background: #DCE4DC; } /* Soft Sage Green */
    .bg-rich-caribbean .icon-grid a:nth-child(3) { background: #E8DFD3; } /* Warm Clay / Cashmere */
    .bg-rich-caribbean .icon-grid a:nth-child(4) { background: #D9E1E2; } /* Slate Blue-Grey */
    .bg-rich-caribbean .icon-grid a:nth-child(5) { background: #E8E0CE; } /* Deep Sand */
    .bg-rich-caribbean .icon-grid a:nth-child(6) { background: #DFD7C8; } /* Woven Linen */

    /* Subtle hover effect to make the gold rim glow */
    .bg-rich-caribbean .icon-card:hover {
      border-color: var(--gold);
    }
    .bg-rich-caribbean .icon-card h3 {
      color: var(--navy);
      font-weight: 800;
    }

    /* --- ELEGANT RELOCATION ROWS --- */
    .relocate-row {
      background: #ffffff;
      border: 1px solid rgba(184, 155, 94, 0.3);
      border-left: 6px solid var(--pine);
      border-radius: 14px;
      padding: 1.5rem 2rem;
      box-shadow: 0 10px 25px rgba(7, 28, 52, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .relocate-row:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 35px rgba(7, 28, 52, 0.1);
      border-left-color: var(--gold);
    }
    .relocate-row strong {
      display: block;
      font-family: var(--serif);
      font-size: 1.35rem;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }
    .relocate-row p {
      text-align: justify; /* Justifies the text inside the rows */
      color: #596672;
      font-size: 1.05rem;
      margin: 0;
      line-height: 1.6;
    }

    /* --- THE ESSENTIAL DOSSIERS (Book Volume Layout) --- */
    .dossier-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem 1.5rem;
      margin-top: 3rem;
    }
    .dossier-card {
      position: relative;
      background: #ffffff;
      border: 1px solid rgba(11,31,58,.08);
      border-top: 4px solid var(--navy);
      border-radius: 8px;
      padding: 2.5rem 1.75rem 1.75rem;
      box-shadow: 0 15px 35px rgba(7,28,52,.04);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .dossier-card:hover {
      transform: translateY(-5px);
      border-top-color: var(--gold);
      box-shadow: 0 20px 45px rgba(7,28,52,.12);
    }
    /* The overlap book-number effect */
    .dossier-number {
      position: absolute;
      top: -1.25rem;
      left: 1.5rem;
      font-family: var(--serif);
      font-size: 2.4rem;
      color: var(--gold);
      background: #ffffff; /* Matches card background to overlap the top border */
      padding: 0 0.5rem;
      font-weight: 800;
      line-height: 1;
    }
    .dossier-card h3 {
      font-family: var(--serif);
      font-size: 1.25rem;
      color: var(--navy);
      margin-bottom: 0.85rem;
      line-height: 1.3;
    }
    .dossier-card p {
      text-align: justify;
      color: #596672;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .dossier-link {
      display: inline-flex;
      align-items: center;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 800;
      color: var(--pine);
      transition: color 0.2s;
    }
    .dossier-link:hover {
      color: var(--gold);
    }

    @media (max-width: 900px) {
      .dossier-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 680px) {
      .dossier-grid { grid-template-columns: 1fr; }
    }

    /* --- ELITE ACCOMMODATION CARDS --- */
    .accom-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(7,28,52,.05);
      border: 1px solid rgba(11,31,58,.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .accom-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 45px rgba(7,28,52,.12);
    }
    .accom-img {
      height: 240px;
      overflow: hidden;
      position: relative;
    }
    .accom-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .accom-card:hover .accom-img img {
      transform: scale(1.05);
    }
    .accom-body {
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .accom-body h3 {
      font-family: var(--serif);
      font-size: 1.35rem;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .accom-body p {
      text-align: justify;
      color: #596672;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    
    /* The Toggle Button */
    .accom-toggle {
      margin-top: auto;
      background: transparent;
      border: 1px solid rgba(184,155,94,.4);
      color: var(--pine);
      font-weight: 800;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 0.85rem 1rem;
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.2s ease;
    }
    .accom-toggle:hover {
      background: rgba(184,155,94,.05);
      border-color: var(--gold);
      color: var(--navy);
    }
    .accom-toggle .chev {
      font-size: 1.1rem;
      transition: transform 0.3s ease;
    }
    .accom-card.active .accom-toggle .chev {
      transform: rotate(-180deg);
    }
    
    /* The Hidden Directory Menu */
    .accom-expand {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      background: #FDFBF7; /* Very subtle warm ivory */
      border-top: 1px solid rgba(184,155,94,.15);
    }
    .accom-expand-inner {
      padding: 1.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }
    .accom-list h4 {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--gold);
      margin-bottom: 0.8rem;
      border-bottom: 1px solid rgba(184,155,94,.2);
      padding-bottom: 0.4rem;
    }
    .accom-list ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .accom-list a {
      font-size: 0.85rem;
      color: var(--navy);
      font-weight: 600;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .accom-list a::before {
      content: "▸";
      color: var(--gold);
      font-size: 1rem;
    }
    .accom-list a:hover {
      color: var(--gold);
    }

    @media (max-width: 420px) {
      .accom-expand-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    }

  
/* --- PREMIUM SPONSORED ADVERTISEMENT BOX --- */
    .ad-wrap {
      display: flex;
      justify-content: center;
      padding: 4rem 0 3rem;
      width: 100%;
    }
    
    /* The glowing red perimeter that matches the section width */
    .sponsored-ad-box {
      border: 1px solid rgba(220, 53, 69, 0.4); 
      box-shadow: 0 0 25px rgba(220, 53, 69, 0.12), inset 0 0 15px rgba(220, 53, 69, 0.05); 
      border-radius: 20px;
      padding: 2rem 1.5rem;
      background: rgba(255, 255, 255, 0.6);
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      max-width: 1024px; 
      margin: 0 auto;
    }
    
    /* Top Label */
    .sponsored-tag {
      font-size: 0.75rem;
      font-weight: 900;
      letter-spacing: 0.2em;
      color: #dc3545; 
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    
    /* Ad Image Container (INCREASED TO 75%) */
    .ad-leaderboard { 
      width: 100%; 
      max-width: 75%; /* Increased by 25% */
      aspect-ratio: 875 / 450; 
      height: auto; 
      margin: 0 auto; 
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(7, 28, 52, 0.15); 
      transition: transform 0.3s ease;
    }
    .ad-leaderboard:hover {
      transform: translateY(-4px);
    }
    
    .active-ad {
      padding: 0 !important;
      border: none !important;
      background: transparent !important;
      display: block;
    }
    .active-ad img {
      width: 100%;
      height: 100%;
      max-width: 100%;
      object-fit: cover;
      display: block;
    }

    /* Bottom Sales Pitch Box */
    .sponsored-cta {
      width: 100%;
      max-width: 75%; /* Matches the exact width of the banner */
      margin: 1.5rem auto 0;
      background: #F9F6F0; /* Warm, rich pastel background */
      border: 1px solid rgba(184, 155, 94, 0.4);
      box-shadow: 0 0 20px rgba(184, 155, 94, 0.15); /* Glowing gold edges */
      border-radius: 12px;
      padding: 1.5rem;
      font-size: 1rem;
      color: var(--navy);
      font-weight: 600;
      text-align: center;
      line-height: 1.6;
    }

    /* Beautiful WhatsApp Button */
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #25D366; /* Official WhatsApp Green */
      color: #ffffff !important;
      padding: 0.8rem 1.75rem;
      border-radius: 8px; /* Clean, rectangular look */
      font-size: 1.05rem;
      font-weight: 800;
      margin-top: 1.2rem;
      text-decoration: none;
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); /* Green glow */
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .whatsapp-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
    }

    /* Mobile scaling */
    @media (max-width: 768px) {
      .ad-leaderboard, .sponsored-cta { max-width: 100%; }
      .sponsored-ad-box { padding: 1.5rem 1rem; }
    }

    /* --- LUXURY PROPERTY PAGE STYLES --- */
    .property-hero {
      position: relative;
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      background-size: cover;
      background-position: center;
      isolation: isolate;
    }
   .property-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(7,28,52,0.4), rgba(7,28,52,0.9));
      z-index: 1; /* Forces the dark gradient to sit ON TOP of the background image */
    }
    .property-hero-content {
      position: relative; 
      z-index: 2; /* Forces the text to sit safely ON TOP of the dark gradient */
      padding: 0 20px;
      max-width: 900px;
      text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); /* Adds a shadow to text to guarantee readability */
    }
    .property-hero h1 {
      color: #fff;
      font-size: clamp(2.5rem, 5vw, 5rem);
      margin-bottom: 1rem;
    }

    /* Interactive Image Gallery */
    .gallery-container {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 15px 40px rgba(7,28,52,0.08);
      border: 1px solid rgba(184, 155, 94, 0.2);
      margin-bottom: 4rem;
    }
    .gallery-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(184, 155, 94, 0.2);
      padding-bottom: 1rem;
    }
    .gallery-main {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 1rem;
      background: #eef8f7;
    }
    .gallery-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.3s ease;
    }
    
    /* Thumbnail Slider Area */
    .gallery-slider-wrap {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .slider-arrow {
      background: var(--navy);
      color: var(--gold);
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 1.5rem;
      cursor: pointer;
      flex-shrink: 0;
      transition: all 0.2s ease;
      box-shadow: 0 4px 10px rgba(7,28,52,0.2);
    }
    .slider-arrow:hover {
      background: var(--pine);
      transform: scale(1.05);
    }
    .slider-thumbs {
      display: flex;
      gap: 0.8rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 0.5rem 0;
      /* Hide ugly scrollbars */
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .slider-thumbs::-webkit-scrollbar {
      display: none;
    }
    .slider-thumbs img {
      width: 140px;
      height: 90px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      opacity: 0.6;
      border: 2px solid transparent;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }
    .slider-thumbs img:hover {
      opacity: 0.9;
    }
    .slider-thumbs img.active {
      opacity: 1;
      border-color: var(--gold);
      box-shadow: 0 4px 12px rgba(184, 155, 94, 0.4);
    }

    /* Video Section */
    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 ratio */
      height: 0;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(7,28,52,0.15);
      border: 1px solid rgba(184, 155, 94, 0.3);
    }
    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    @media (max-width: 768px) {
      .gallery-container { padding: 1rem; }
      .slider-thumbs img { width: 100px; height: 70px; }
      .slider-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
    }

    /* --- MOBILE REFINEMENTS FOR LUXURY PROPERTY HERO --- */
    @media (max-width: 680px) {
      .property-hero {
        min-height: 480px !important; /* Prevents the hero from being too tall */
      }
      .property-hero h1 {
        font-size: 3rem !important;
        line-height: 0.95 !important;
        margin-bottom: 0.8rem !important;
      }
      .property-hero-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 1.5rem !important;
      }
      /* Hides the extra subtitle text on small screens so the photo dominates */
      .property-hero-subtitle .hide-mobile {
        display: none;
      }
      .property-hero .btn {
        font-size: 1rem !important;
        padding: 0.9rem 1.4rem !important;
      }
    }