:root {
      --sand: #f2efe9;
      --cream: #f8f6f2;
      --white: #ffffff;
      --ink: #0D3D5F;
      --ink-soft: #1f5679;
      --muted: rgba(13, 61, 95, 0.62);
      --gold: #C9A96E;
      --gold-light: #e7d7b8;
      --gold-dark: #E07B54;
      --sea: #00A896;
      --sea-mid: #0bb8a6;
      --sea-light: #e8f7f5;
      --coral: #E07B54;
      --sea-foam: #72BB72;
      --border: rgba(201,169,110,0.25);
      --border-strong: rgba(201,169,110,0.5);
      --radius-sm: 6px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-xl: 32px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1,h2,h3,h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      line-height: 1.1;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    button, input, select, textarea { font: inherit; }

    .container {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    /* ── HEADER ─────────────────────────────── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(248,246,242,0.92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      overflow: visible;
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0;
      min-width: 0;
      flex-shrink: 0;
    }

    .brand-logo-only {
      display: flex;
      align-items: center;
      height: 76px;
      margin-right: 10px;
    }

    .brand-mark {
      width: 56px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      box-shadow: none;
      border-radius: 0;
      flex-shrink: 0;
      margin: 0;
      transform: translateY(1px);
    }

    .brand-name,
    .brand-sub {
      display: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-links a {
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 500;
      transition: color 0.2s;
      white-space: nowrap;
    }

    .nav-links a:hover { color: var(--ink); }

    /* ── BUTTONS ─────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: none;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.25s ease;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.78rem;
      text-align: center;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--ink);
      padding: 14px 28px;
      border-radius: var(--radius-sm);
    }

    .btn-gold:hover {
      background: var(--gold-dark);
      color: var(--white);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink);
      padding: 13px 26px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-strong);
    }

    .btn-outline:hover {
      background: var(--sand);
      border-color: var(--gold);
    }

    .btn-dark {
      background: var(--ink);
      color: var(--gold);
      padding: 14px 28px;
      border-radius: var(--radius-sm);
    }

    .btn-dark:hover {
      background: var(--sea);
      transform: translateY(-1px);
    }

    .btn-full { width: 100%; }

    /* ── EYEBROW ─────────────────────────────── */
    .eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dark);
      font-weight: 500;
      margin-bottom: 16px;
    }

    /* ── HERO (PREMIUM 3D UPGRADE) ───────────────── */
    .premium-hero {
      min-height: 100vh;
      min-height: calc(100vh - 76px);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: var(--cream);
      background-image: 
        radial-gradient(at 15% 20%, rgba(201, 169, 110, 0.06) 0px, transparent 50%),
        radial-gradient(at 85% 20%, rgba(0, 168, 150, 0.06) 0px, transparent 50%),
        radial-gradient(at 50% 80%, rgba(224, 123, 84, 0.04) 0px, transparent 50%),
        linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
      color: var(--ink);
      padding: 40px 0;
    }

    /* Background 3D grid coordinate plane */
    .hero-bg-overlay {
      position: absolute;
      top: -30%;
      left: -30%;
      width: 160%;
      height: 160%;
      background-image: 
        linear-gradient(rgba(13, 61, 95, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 61, 95, 0.02) 1px, transparent 1px);
      background-size: 50px 50px;
      opacity: 0.85;
      pointer-events: none;
      z-index: 1;
      transform: perspective(800px) rotateX(60deg) rotateZ(-15deg);
      transform-origin: center center;
    }

    .hero-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 1;
      opacity: 0.4;
    }

    .hero-glow-1 {
      top: -10%;
      right: 10%;
      width: 40vw;
      height: 40vw;
      background: radial-gradient(circle, rgba(0, 168, 150, 0.1) 0%, transparent 80%);
    }

    .hero-glow-2 {
      bottom: -10%;
      left: 20%;
      width: 35vw;
      height: 35vw;
      background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 80%);
    }

    .hero-container {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .premium-hero .hero-left {
      padding: 40px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 5;
    }

    /* Service Chips */
    .service-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
    }

    .service-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 6px 14px;
      border-radius: 99px;
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid var(--border);
      color: var(--ink);
      backdrop-filter: blur(4px);
      transition: all 0.3s ease;
    }

    .service-chip:hover {
      background: rgba(255, 255, 255, 0.85);
      border-color: rgba(201, 169, 110, 0.6);
      transform: translateY(-1px);
      box-shadow: 0 4px 10px rgba(13, 61, 95, 0.05);
    }

    .chip-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sea);
      box-shadow: 0 0 8px var(--sea);
    }

    .service-chip:nth-child(2) .chip-dot {
      background: var(--gold);
      box-shadow: 0 0 8px var(--gold);
    }

    .service-chip:nth-child(3) .chip-dot {
      background: var(--coral);
      box-shadow: 0 0 8px var(--coral);
    }

    .premium-hero .eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-dark);
      font-weight: 600;
      margin-bottom: 12px;
      display: inline-block;
    }

    .premium-hero .hero-headline {
      font-size: clamp(2.8rem, 5.2vw, 4.8rem);
      line-height: 1.05;
      color: var(--ink);
      margin-bottom: 20px;
      font-weight: 300;
    }

    .premium-hero .hero-headline em {
      font-style: italic;
      color: var(--gold-dark);
      font-family: 'Cormorant Garamond', serif;
    }

    .premium-hero .hero-text {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .premium-hero .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .premium-hero .btn-link {
      color: var(--ink);
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .premium-hero .btn-link:hover {
      color: var(--gold-dark);
      transform: translateX(4px);
    }

    .premium-hero .hero-stats {
      display: flex;
      gap: 40px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }

    .premium-hero .stat-item strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 4px;
    }

    .premium-hero .stat-item span {
      font-size: 0.78rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* ── RIGHT COLUMN: 3D TRAVEL SCENE ───────────── */
    .hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 3;
    }

    .hero-3d-wrapper {
      position: relative;
      width: 100%;
      height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1200px;
      touch-action: none;
      user-select: none;
      -webkit-user-drag: none;
    }

    .hero-3d-scene {
      position: absolute;
      width: 380px;
      height: 380px;
      transform-style: preserve-3d;
      transform: rotateX(var(--rx, 54deg)) rotateZ(var(--rz, -34deg)) scale(var(--scene-scale, 1));
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform;
      touch-action: none;
    }

    /* Isometric Flat Base */
    .scene-base {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: rgba(248, 246, 242, 0.6);
      border-radius: 36px;
      border: 1px solid rgba(201, 169, 110, 0.2);
      backdrop-filter: blur(14px);
      box-shadow: 
        0 40px 90px rgba(13, 61, 95, 0.15),
        inset 0 0 40px rgba(255, 255, 255, 0.4);
      transform-style: preserve-3d;
    }

    .scene-base::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 36px;
      padding: 1.5px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1) 50%, rgba(201, 169, 110, 0.35));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .scene-ocean,
    .scene-land {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      transform-style: preserve-3d;
      border-radius: 36px;
      overflow: hidden;
    }

    /* Ocean Side details */
    .ocean-svg {
      width: 100%;
      height: 100%;
      display: block;
      pointer-events: none;
    }

    @keyframes waveMotion {
      0%, 100% { transform: translate(0, 0) scaleY(1); }
      50% { transform: translate(4px, -2px) scaleY(1.05); }
    }

    .wave-line {
      animation: waveMotion 6s ease-in-out infinite;
      transform-origin: center;
    }
    .wave-2 { animation-delay: 1.5s; }
    .wave-3 { animation-delay: 3s; }

    /* Sunset Island detail */
    .scene-island {
      position: absolute;
      transform-style: preserve-3d;
      transform: translateZ(8px);
      pointer-events: none;
    }

    @keyframes pulseGlow {
      0%, 100% { opacity: 0.55; transform: scale(1); }
      50% { opacity: 0.85; transform: scale(1.15); }
    }

    .sunset-glow {
      animation: pulseGlow 4s ease-in-out infinite;
      transform-origin: center;
    }

    /* Boat Floating */
    @keyframes boatBob {
      0%, 100% { transform: translate3d(0, 0, 10px) rotate(0deg) rotateX(-5deg); }
      50% { transform: translate3d(2px, -4px, 14px) rotate(1.5deg) rotateX(5deg); }
    }

    .scene-boat {
      position: absolute;
      transform-style: preserve-3d;
      animation: boatBob 4.5s ease-in-out infinite;
      z-index: 10;
    }

    .boat-model {
      position: relative;
      filter: drop-shadow(0 12px 8px rgba(13,61,95,0.18));
    }

    @keyframes wakePulse {
      0% { transform: scale(0.7); opacity: 0; }
      50% { opacity: 0.35; }
      100% { transform: scale(1.4); opacity: 0; }
    }

    .boat-wake {
      position: absolute;
      width: 40px;
      height: 12px;
      background: radial-gradient(ellipse, rgba(0, 168, 150, 0.3) 0%, transparent 70%);
      bottom: -6px;
      left: 10px;
      border-radius: 50%;
      transform: rotate(25deg);
      animation: wakePulse 3s infinite ease-out;
      pointer-events: none;
    }

    /* ── LAND & TRANSFERS ROAD ───────────────────── */
    .road-svg {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 5;
    }

    @keyframes roadPulse {
      0%, 100% { opacity: 0.4; stroke-width: 3px; }
      50% { opacity: 0.95; stroke-width: 4px; filter: drop-shadow(0 0 4px rgba(201, 169, 110, 0.4)); }
    }

    .road-glow {
      animation: roadPulse 5s ease-in-out infinite;
    }

    /* Pins Standing on Base */
    .map-pin {
      position: absolute;
      transform-style: preserve-3d;
      transform: translate3d(-50%, -50%, 0) rotateX(-90deg); /* Counteract base angle */
      transform-origin: bottom center;
      cursor: pointer;
      z-index: 15;
    }

    .pin-marker {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--white);
      border: 1.5px solid var(--ink);
      color: var(--ink);
      box-shadow: 0 4px 8px rgba(13,61,95,0.15);
      transition: all 0.3s cubic-bezier(0.2, 1, 0.2, 1);
      position: relative;
    }

    .map-pin:hover .pin-marker {
      background: var(--ink);
      color: var(--gold);
      border-color: var(--ink);
      transform: scale(1.15) translateY(-4px);
      box-shadow: 0 8px 16px rgba(13, 61, 95, 0.25);
    }

    .pin-pulse {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 1px solid var(--ink);
      animation: wakePulse 2s infinite ease-out;
      pointer-events: none;
    }

    .pin-tooltip {
      position: absolute;
      bottom: 34px;
      left: 50%;
      transform: translateX(-50%) scale(0.9);
      background: var(--ink);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 0.65rem;
      white-space: nowrap;
      color: var(--white);
      opacity: 0;
      pointer-events: none;
      transition: all 0.25s ease;
      box-shadow: 0 6px 12px rgba(13,61,95,0.25);
      backdrop-filter: blur(4px);
    }

    .map-pin:hover .pin-tooltip {
      opacity: 1;
      transform: translateX(-50%) scale(1);
      bottom: 38px;
    }

    /* Car Moving along path */
    @keyframes driveCar {
      0% { offset-distance: 0%; }
      100% { offset-distance: 100%; }
    }

    .scene-car {
      position: absolute;
      width: 26px;
      height: 14px;
      offset-path: path('M 100,340 Q 180,330 230,260 T 320,100');
      offset-rotate: auto;
      animation: driveCar 12s infinite linear;
      transform-style: preserve-3d;
      z-index: 10;
      transform: translate3d(0, 0, 2px);
    }

    .car-model {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
    }

    .car-body {
      width: 100%;
      height: 100%;
      background: var(--ink);
      border: 1px solid var(--gold-light);
      border-radius: 3px;
      box-shadow: 0 4px 6px rgba(13,61,95,0.22);
      position: relative;
    }

    .car-windshield {
      position: absolute;
      top: 2px;
      right: 3px;
      width: 5px;
      height: 8px;
      background: rgba(255, 255, 255, 0.45);
      border-radius: 1px;
    }

    .car-light {
      position: absolute;
      top: 50%;
      right: -10px;
      transform: translateY(-50%);
      width: 12px;
      height: 8px;
      background: radial-gradient(ellipse at left, rgba(201, 169, 110, 0.6) 0%, transparent 80%);
      pointer-events: none;
    }

    /* ── 3D BUILDINGS (PREMIUM STAYS) ────────────── */
    .scene-building {
      position: absolute;
      transform-style: preserve-3d;
      transform: rotateX(-90deg); /* Stands upright on base */
      transform-origin: bottom center;
      width: 44px;
      z-index: 12;
      transition: all 0.3s cubic-bezier(0.2, 1, 0.2, 1);
    }

    .building-1 { height: 75px; }
    .building-2 { height: 90px; }

    .building-glass {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.5) 100%);
      border: 1.5px solid rgba(13, 61, 95, 0.12);
      border-bottom: none;
      border-radius: 6px 6px 0 0;
      backdrop-filter: blur(12px);
      box-shadow: 0 12px 24px rgba(13,61,95,0.12);
      position: relative;
      padding: 8px 6px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transform-style: preserve-3d;
      transition: all 0.3s ease;
    }

    .scene-building:hover {
      transform: rotateX(-90deg) translate3d(0, -6px, 0);
    }

    .scene-building:hover .building-glass {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
      border-color: var(--gold);
      box-shadow: 0 20px 35px rgba(201, 169, 110, 0.25);
    }

    .building-roof {
      position: absolute;
      top: -6px;
      left: -1px;
      width: calc(100% + 2px);
      height: 6px;
      background: var(--ink);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 4px 4px 0 0;
    }

    .window-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 5px;
      width: 100%;
      padding-top: 4px;
    }

    .window {
      height: 8px;
      background: rgba(13, 61, 95, 0.1);
      border-radius: 1px;
      transition: all 0.5s ease;
    }

    .window.light-on {
      background: var(--gold);
      box-shadow: 0 0 6px rgba(201, 169, 110, 0.85);
    }

    .building-badge {
      font-size: 0.52rem;
      font-weight: 500;
      color: var(--ink);
      background: var(--gold-light);
      border: 0.5px solid var(--gold);
      padding: 1px 0;
      text-align: center;
      border-radius: 2px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      margin-top: 8px;
      white-space: nowrap;
      overflow: hidden;
    }

    /* ── FLOATING GLASS CARDS (PARALLAX DEPTH) ───── */
    .floating-glass-card {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.75);
      border: 1.5px solid rgba(201, 169, 110, 0.22);
      backdrop-filter: blur(15px);
      box-shadow: 
        0 20px 45px rgba(13, 61, 95, 0.12),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
      color: var(--ink);
      z-index: 25;
      pointer-events: none;
      transform-style: preserve-3d;
      transition: box-shadow 0.3s ease, border-color 0.3s ease;
      transform: translate3d(-50%, -50%, 100px);
    }

    .floating-glass-card::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 18px;
      padding: 1px;
      background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1) 40%, rgba(201,169,110,0.22));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }

    .fgc-glow {
      position: absolute;
      top: -20px;
      left: -20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
      filter: blur(8px);
      pointer-events: none;
    }

    .fgc-icon {
      font-size: 1.3rem;
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: rgba(13, 61, 95, 0.04);
      border: 0.5px solid rgba(13, 61, 95, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(13,61,95,0.06);
    }

    .fgc-content {
      display: flex;
      flex-direction: column;
    }

    .fgc-content strong {
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .fgc-content span {
      font-size: 0.68rem;
      color: var(--muted);
      margin-top: 1px;
    }

    .card-stays {
      border-color: rgba(0, 168, 150, 0.3);
    }
    .card-tours {
      border-color: rgba(201, 169, 110, 0.3);
    }
    .card-rides {
      border-color: rgba(224, 123, 84, 0.3);
    }

    /* Slowly hover float all cards */
    @keyframes floatLayerStays {
      0%, 100% { transform: translate3d(-50%, -50%, 125px); }
      50% { transform: translate3d(-50%, calc(-50% - 6px), 115px); }
    }
    @keyframes floatLayerTours {
      0%, 100% { transform: translate3d(-50%, -50%, 85px); }
      50% { transform: translate3d(-50%, calc(-50% - 5px), 95px); }
    }
    @keyframes floatLayerRides {
      0%, 100% { transform: translate3d(-50%, -50%, 145px); }
      50% { transform: translate3d(-50%, calc(-50% - 7px), 155px); }
    }

    .floating-glass-card.card-stays { animation: floatLayerStays 6s ease-in-out infinite; }
    .floating-glass-card.card-tours { animation: floatLayerTours 5.5s ease-in-out infinite; }
    .floating-glass-card.card-rides { animation: floatLayerRides 6.5s ease-in-out infinite; }

    /* ── RESPONSIVE OVERRIDES ────────────────────── */
    @media (max-width: 1020px) {
      .premium-hero {
        min-height: auto;
        padding: 80px 0 60px;
      }

      .hero-container {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
      }

      .premium-hero .hero-left {
        align-items: center;
        padding: 0;
      }

      .service-chips {
        justify-content: center;
      }

      .premium-hero .hero-text {
        margin-left: auto;
        margin-right: auto;
      }

      .premium-hero .hero-actions {
        justify-content: center;
      }

      .premium-hero .hero-stats {
        justify-content: center;
        width: 100%;
        max-width: 500px;
      }

      .hero-right {
        margin-top: 20px;
      }
    }

    @media (max-width: 680px) {
      .premium-hero {
        padding: 60px 0 40px;
      }

      .premium-hero .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        width: 100%;
        max-width: 320px;
      }

      .premium-hero .btn {
        width: 100%;
      }

      .premium-hero .btn-link {
        text-align: center;
        padding: 10px 0;
      }

      .hero-3d-wrapper {
        height: 380px;
      }

      /* Scale down 3D scene on mobile to fit nicely */
      .hero-3d-scene {
        --scene-scale: 0.8;
      }
    }

    @media (max-width: 480px) {
      .hero-3d-wrapper {
        height: 300px;
      }

      .hero-3d-scene {
        --scene-scale: 0.62;
      }

      .premium-hero .hero-stats {
        gap: 24px;
      }

      .premium-hero .stat-item strong {
        font-size: 2rem;
      }
    }

    /* ── REDUCED MOTION PREFERENCES ─────────────── */
    @media (prefers-reduced-motion: reduce) {
      .wave-line,
      .sunset-glow,
      .scene-boat,
      .boat-wake,
      .road-glow,
      .pin-pulse,
      .scene-car,
      .floating-glass-card {
        animation: none !important;
      }

      .scene-car {
        offset-distance: 45%;
      }

      .hero-3d-scene {
        transition: none !important;
        transform: rotateX(54deg) rotateZ(-34deg) !important;
      }

      .floating-glass-card.card-stays {
        transform: translate3d(-50%, -50%, 120px) !important;
      }
      .floating-glass-card.card-tours {
        transform: translate3d(-50%, -50%, 90px) !important;
      }
      .floating-glass-card.card-rides {
        transform: translate3d(-50%, -50%, 150px) !important;
      }
    }

    .form-label {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
      font-weight: 500;
    }

    .form-input, .form-select {
      width: 100%;
      border: 1px solid var(--border);
      background: var(--cream);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
      outline: none;
      color: var(--ink);
      font-size: 0.92rem;
      transition: border-color 0.2s;
      min-width: 0;
    }

    .form-input:focus, .form-select:focus {
      border-color: var(--gold);
      background: var(--white);
    }

    .form-group { margin-bottom: 16px; }

    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    /* ── FEATURE STRIP ───────────────────────── */
    .feature-strip {
      background: var(--ink);
      padding: 36px 0;
    }

    .feature-strip-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.12);
    }

    .feature-item {
      background: var(--ink);
      padding: 30px 36px;
    }

    .feature-item-label {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .feature-item h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      color: var(--white);
      font-weight: 300;
    }

    /* SERVICE OVERVIEW */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-width: 0;
      box-shadow: 0 16px 40px rgba(13,61,95,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 60px rgba(13,61,95,0.12);
    }

    .service-image {
      min-height: 250px;
      background-size: cover;
      background-position: center;
    }

    .service-content {
      padding: 28px;
    }

    .service-content span {
      display: inline-block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      line-height: 1;
      color: var(--gold-light);
      margin-bottom: 14px;
    }

    .service-content h3 {
      color: var(--ink);
      font-size: 1.65rem;
      margin-bottom: 10px;
    }

    .service-content p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.75;
      margin-bottom: 22px;
    }

    /* ── SECTIONS ────────────────────────────── */
    .section {
      padding: 100px 0;
    }

    @supports (content-visibility: auto) {
      .section {
        content-visibility: auto;
        contain-intrinsic-size: 920px;
      }
    }

    .section-alt {
      background: var(--sand);
    }

    .section-head {
      margin-bottom: 56px;
    }

    .section-head.centered {
      text-align: center;
    }

    .section-head h2 {
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      color: var(--ink);
      margin-bottom: 14px;
    }

    .section-head p {
      color: var(--muted);
      max-width: 460px;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .section-head.centered p { margin: 0 auto; }

    .section-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    .section-actions-bottom {
      margin-top: 34px;
    }

    /* ── LISTING CARDS & UNIFIED TOUR CARDS ──── */
    .cards-grid,
    .service-offers-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }

    .listing-link {
      display: flex;
      flex-direction: column;
      height: 100%;
      color: inherit;
    }

    .listing-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-width: 0;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .listing-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(13,61,95,0.12);
    }

    .card-image {
      height: 220px;
      background-size: cover;
      background-position: center;
      position: relative;
      flex-shrink: 0;
    }

    .card-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--white);
      color: var(--ink);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 999px;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: calc(100% - 32px);
      z-index: 4;
    }

    .card-rating {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--gold);
      color: var(--ink);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: 999px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: calc(100% - 32px);
      z-index: 4;
      box-shadow: 0 4px 12px rgba(224,123,84,0.25);
    }

    .card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
    }

    .card-body h3 {
      font-size: 1.35rem;
      line-height: 1.3;
      color: var(--ink);
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: 2.6em;
      max-height: 2.6em;
    }

    .card-body p {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.65;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: 3.3em;
      max-height: 3.3em;
    }

    .card-meta {
      display: flex;
      gap: 12px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      margin-bottom: 16px;
      flex-wrap: wrap;
      margin-top: auto;
      min-height: 48px;
      align-items: center;
      overflow: hidden;
    }

    .card-meta span {
      font-size: 0.78rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .card-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      flex-wrap: wrap;
      margin-top: 0;
    }

    .card-price strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 400;
      color: var(--ink);
    }

    .card-price span {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* TOURS AND TRANSPORT */
    .experience-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
      gap: 34px;
      align-items: start;
    }

    .service-offers-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      min-width: 0;
      align-items: stretch;
    }

    .tour-filter-bar {
      width: min(360px, 100%);
      margin: 0 auto 24px;
    }

    .service-booking-card {
      box-shadow: 0 18px 40px rgba(13,61,95,0.08);
      min-width: 0;
    }

    .service-info-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 34px;
      box-shadow: 0 18px 40px rgba(13,61,95,0.08);
      min-width: 0;
    }

    .service-info-card h3 {
      font-size: 1.8rem;
      margin-bottom: 14px;
      color: var(--ink);
    }

    .service-info-card p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .service-info-list {
      display: grid;
      gap: 12px;
      margin-bottom: 22px;
    }

    .service-info-list > div {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 16px;
    }

    .service-info-list strong {
      display: block;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .service-info-list span {
      display: block;
      color: var(--muted);
      font-size: 0.86rem;
      line-height: 1.6;
    }

    .service-info-list-light {
      margin-bottom: 0;
    }

    .form-textarea {
      min-height: 112px;
      resize: vertical;
      line-height: 1.55;
    }

    .transport-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
      gap: 54px;
      align-items: start;
    }

    .transport-grid {
      display: grid;
      gap: 16px;
      margin-top: 32px;
    }

    .transport-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px;
      min-width: 0;
    }

    .transport-card span {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-dark);
      font-weight: 500;
      margin-bottom: 10px;
    }

    .transport-card h3 {
      font-size: 1.45rem;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .transport-card p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.75;
    }

    .transport-cta-copy,
    .summary-note {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .transport-mini-list {
      display: grid;
      gap: 10px;
      margin-bottom: 18px;
    }

    .transport-mini-item {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 14px;
      color: var(--ink-soft);
      font-size: 0.88rem;
    }

    .transport-mini-item span {
      display: block;
      color: var(--muted);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .transport-cta-actions {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    /* CATEGORIES */
    .category-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .category-card {
      padding: 32px;
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      transition: all 0.25s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      min-width: 0;
    }

    .category-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s ease;
      transform-origin: left;
    }

    .category-card:hover::before { transform: scaleX(1); }

    .category-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(13,61,95,0.08);
    }

    .category-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: 16px;
      font-weight: 300;
    }

    .category-card h3 {
      font-size: 1.3rem;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .category-card p {
      color: var(--muted);
      font-size: 0.87rem;
      line-height: 1.7;
    }

    /* ── DETAILS ─────────────────────────────── */
    .details-layout {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: start;
    }

    .main-gallery {
      height: 420px;
      border-radius: var(--radius-lg);
      background-size: cover;
      background-position: center;
      margin-bottom: 16px;
      background-color: var(--sand);
      position: relative;
      overflow: hidden;
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,26,46,0.4) 0%, transparent 50%);
    }

    .thumb-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .thumb {
      height: 110px;
      border-radius: var(--radius-md);
      background-size: cover;
      background-position: center;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .thumb:hover { opacity: 0.8; }

    .details-panel h2 {
      font-size: 2.8rem;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .location-line {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-size: 0.87rem;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .details-panel > p {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 24px;
      font-size: 0.95rem;
    }

    .amenities {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }

    .amenity-tag {
      background: var(--sand);
      color: var(--ink-soft);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 0.8rem;
      letter-spacing: 0.05em;
    }

    .price-table {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 28px;
    }

    .price-cell {
      background: var(--white);
      padding: 20px 16px;
      text-align: center;
    }

    .price-cell span {
      display: block;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .price-cell strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--ink);
    }

    .detail-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ── BOOKING ─────────────────────────────── */
    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .booking-summary-box {
      background: var(--ink);
      border-radius: var(--radius-lg);
      padding: 36px;
      color: var(--white);
      margin-top: 36px;
    }

    .summary-row {
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .summary-row:last-child { border-bottom: none; }

    .summary-row span {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 4px;
    }

    .summary-row strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--gold);
      font-weight: 300;
    }

    .booking-form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
    }

    .booking-form-card h3 {
      font-size: 1.8rem;
      margin-bottom: 28px;
      color: var(--ink);
    }

    /* ── PAYMENT ─────────────────────────────── */
    /* ── FOOTER ──────────────────────────────── */
    .site-footer {
      background: var(--ink);
      padding: 64px 0 40px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .footer-brand-wrap {
      display: flex;
      align-items: flex-start;
    }

    .footer-brand-mark {
      width: 64px;
      height: 64px;
      border-radius: 0;
      background: transparent;
      display: block;
      margin-bottom: 0;
    }

    .site-footer h3 {
      font-size: 1.5rem;
      color: var(--white);
      font-weight: 300;
      margin-bottom: 12px;
    }

    .site-footer p,
    .site-footer .footer-sub {
      color: rgba(255,255,255,0.5);
      font-size: 0.88rem;
      line-height: 1.8;
    }

    .footer-col h4 {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      font-weight: 500;
    }

    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.55);
      font-size: 0.88rem;
      margin-bottom: 12px;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--white); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      color: rgba(255,255,255,0.3);
      font-size: 0.8rem;
    }

    /* ── DIVIDER ─────────────────────────────── */
    .divider-gold {
      width: 48px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 24px;
    }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 1020px) {
      .hero {
        min-height: auto;
      }

      .hero-left {
        padding: 60px 0 40px;
      }

      .details-layout,
      .experience-layout,
      .transport-layout,
      .booking-grid,
      .footer-top {
        grid-template-columns: 1fr;
      }

      .cards-grid,
      .service-grid,
      .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-offers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .feature-strip-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 680px) {
      .hero:not(.premium-hero) {
        background-image:
          linear-gradient(90deg, rgba(248,246,242,0.98) 0%, rgba(248,246,242,0.92) 58%, rgba(248,246,242,0.68) 100%),
          url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=900&q=70');
        background-position: center top;
      }

      .hero-left > * {
        animation: none;
      }

      .nav {
        gap: 12px;
        flex-wrap: wrap;
        padding: 14px 0;
      }

      .nav-links { display: none; }

      .nav .btn {
        width: 100%;
      }

      .brand {
        width: auto;
      }

      .brand-logo-only {
        height: 76px;
        margin-right: 0;
      }

      .brand-mark {
        width: 46px;
        height: 46px;
        margin: 0;
        transform: none;
      }

      .cards-grid,
      .service-grid,
      .service-offers-grid,
      .category-grid,
      .thumb-row,
      .price-table,
      .field-row {
        grid-template-columns: 1fr;
      }

      .detail-actions,
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-stats {
        gap: 24px;
      }

      .booking-form-card,
      .booking-summary-box {
        padding: 24px;
      }

      .section { padding: 64px 0; }

      .details-panel h2 {
        font-size: 2rem;
      }
    }

    /* ── ANIMATIONS ──────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-left > * {
      animation: fadeUp 0.7s ease both;
    }

    .hero-left .eyebrow    { animation-delay: 0.1s; }
    .hero-left .hero-headline { animation-delay: 0.2s; }
    .hero-left .hero-text  { animation-delay: 0.3s; }
    .hero-left .hero-actions { animation-delay: 0.4s; }
    .hero-left .hero-stats { animation-delay: 0.5s; }

    .form-alert {
      border-radius: var(--radius-md);
      padding: 12px 14px;
      margin-bottom: 16px;
      font-size: .9rem;
      line-height: 1.55;
      border: 1px solid var(--border);
      background: var(--cream);
      color: var(--ink-soft);
    }
    .form-alert[hidden] { display: none; }
    .form-alert.is-success { background: var(--sea-light); border-color: rgba(0,168,150,.22); color: var(--ink-soft); }
    .form-alert.is-error { background: rgba(224,123,84,.12); border-color: rgba(224,123,84,.32); color: var(--coral); }
    .form-alert.is-info { background: var(--cream); border-color: var(--border); color: var(--muted); }
    .btn:disabled { opacity: .72; cursor: not-allowed; transform: none; }
    [hidden] { display: none !important; }

/* ── FUTURISTIC BACKGROUND ORBS & PARTICLES ── */
.homepage-bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.06;
  pointer-events: none;
  will-change: transform;
}
.orb-1 {
  top: 10%;
  left: 5%;
  width: 480px;
  height: 480px;
  background: var(--sea);
  animation: orbFloatAnim 30s ease-in-out infinite alternate;
}
.orb-2 {
  top: 45%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: var(--coral);
  animation: orbFloatAnim 35s ease-in-out infinite alternate-reverse;
}
.orb-3 {
  bottom: 5%;
  left: 15%;
  width: 450px;
  height: 450px;
  background: var(--gold);
  animation: orbFloatAnim 32s ease-in-out infinite alternate;
}
.bg-particle-container {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(201, 169, 110, 0.1) 1.5px, transparent 1.5px),
    radial-gradient(rgba(0, 168, 150, 0.06) 2px, transparent 2px);
  background-size: 80px 80px, 120px 120px;
  background-position: 0 0, 40px 40px;
  opacity: 0.6;
}

@keyframes orbFloatAnim {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.9); }
}

/* ── 3D SERVICE CARDS ── */
.service-card.tilt-3d {
  position: relative;
  transform-style: preserve-3d;
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(201, 169, 110, 0.22) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(13, 61, 95, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card.tilt-3d:hover {
  border-color: rgba(201, 169, 110, 0.45) !important;
  box-shadow: 0 30px 70px rgba(13, 61, 95, 0.16) !important;
}

.highlight-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: overlay;
  transition: opacity 0.3s ease;
}

.service-icon-3d {
  position: absolute;
  top: -28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--white);
  border: 1.5px solid rgba(201, 169, 110, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(13, 61, 95, 0.08);
  transform: translate3d(0, 0, 20px);
  animation: iconFloatAnim 4s ease-in-out infinite alternate;
  z-index: 11;
}

.service-card:hover .service-icon-3d {
  transform: translate3d(0, -5px, 35px) rotateY(12deg);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(13, 61, 95, 0.16);
}

@keyframes iconFloatAnim {
  0% { transform: translate3d(0, 0, 20px); }
  100% { transform: translate3d(0, -6px, 20px); }
}

.icon-svg-3d {
  filter: drop-shadow(0 4px 6px rgba(13, 61, 95, 0.12));
}

@media (max-width: 768px) {
  .homepage-bg-orbs {
    display: none;
  }
  .service-icon-3d {
    position: static;
    margin-top: 8px;
    margin-bottom: 12px;
    transform: none !important;
    animation: none !important;
    box-shadow: none !important;
  }
}
