:root {
      --bg-black: #050706;
      --bg-surface: #0a0e0c;
      
      /* APPLE LIQUID GLASS: multi-angle refraction, crisp specular reflection, multi-layer depth */
      --liquid-glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 40%, rgba(12, 20, 16, 0.65) 100%), rgba(10, 16, 13, 0.82);
      --liquid-glass-border: 1px solid rgba(255, 255, 255, 0.18);
      --liquid-glass-specular: inset 0 1.5px 1px 0 rgba(255, 255, 255, 0.42), inset 0 -1.5px 2px 0 rgba(0, 0, 0, 0.45), 0 25px 60px rgba(0, 0, 0, 0.75);
      --liquid-glass-blur: blur(12px);

      /* NOBLE MUTED FOREST EMERALD */
      --emerald-accent: #059669;
      --emerald-bright: #10b981;
      --emerald-soft: #34d399;
      --emerald-subtle: rgba(16, 185, 129, 0.08);
      --emerald-border: rgba(16, 185, 129, 0.22);
      --emerald-glow: rgba(16, 185, 129, 0.08);

      /* RED / BOOKED STATUS */
      --red-booked: #ef4444;
      --red-booked-bg: rgba(239, 68, 68, 0.16);
      --red-booked-border: rgba(239, 68, 68, 0.35);

      --gold-accent: #d4af37;
      --text-main: #ffffff;
      --text-muted: #94a39b;
      --text-dim: #5c6b63;
      --border-subtle: rgba(255, 255, 255, 0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      overflow-x: hidden;
      max-width: 100%;
      width: 100%;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
      background-color: var(--bg-black);
      color: var(--text-main);
      line-height: 1.5;
      overflow-x: hidden;
      max-width: 100%;
      width: 100%;
      position: relative;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      -webkit-overflow-scrolling: touch;
    }

    /* PREVENT ACCIDENTAL TEXT SELECTION ON INTERACTIVE CONTROLS */
    button, .btn-emerald, .btn-secondary, .btn-apple, .btn-card,
    .bar-field, .custom-dropdown, .dropdown-trigger, .dropdown-menu, .dropdown-item,
    .modal-extra-item, .ms-tab, .extra-check-box, .modal-close-btn,
    .cal-day, .cal-nav-btn, .slider-arrow, .slider-dots, .house-floating-badge,
    .floating-mobile-bar, .lightbox-btn, .faq-question, .tariff-card, .house-slider,
    .modal-dates-picker-wrap, .modal-date-box, .legend-item, .modal-summary-chip,
    .dur-btn, .preset-pill, .modal-duration-bar {
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
    }

    /* EXPLICITLY ALLOW TEXT SELECTION ON INFORMATIVE DETAILS */
    .contact-val, .contact-title, .faq-answer, .house-desc, .amenity-text,
    .section-desc, .hero-subtitle, .modal-input, .form-input, .selectable-text {
      user-select: text;
      -webkit-user-select: text;
    }

    /* TYPOGRAPHY */
    h1, h2, h3, h4 {
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .font-serif {
      font-family: 'Playfair Display', serif;
      font-weight: 500;
      letter-spacing: 0;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      font-family: inherit;
      border: none;
      background: none;
      cursor: pointer;
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ICONS SVG */
    .icon {
      display: inline-block;
      width: 20px;
      height: 20px;
      stroke-width: 1.6;
      stroke: currentColor;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      vertical-align: middle;
    }

    /* HEADER */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 72px;
      z-index: 100;
      background: rgba(5, 8, 6, 0.75);
      backdrop-filter: var(--liquid-glass-blur);
      -webkit-backdrop-filter: var(--liquid-glass-blur);
      border-bottom: 1px solid var(--border-subtle);
      transition: all 0.3s ease;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .header-logo-img {
      height: 48px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .logo:hover .header-logo-img {
      transform: scale(1.05);
    }

    .logo-text {
      color: #ffffff;
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .logo-text span:first-child {
      font-weight: 800;
      font-size: 17px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .logo-text span:last-child {
      font-size: 11px;
      font-weight: 500;
      color: var(--emerald-bright);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
    }

    .nav-links a {
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: #ffffff;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .header-phone {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .header-phone svg {
      stroke: var(--emerald-bright);
      width: 16px;
      height: 16px;
    }

    /* LIQUID GLASS BUTTONS - APPLE GRADE LUXURY */
    .btn-emerald {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: #ffffff;
      padding: 0 26px;
      height: 48px;
      border-radius: 9999px;
      font-size: 14.5px;
      font-weight: 600;
      letter-spacing: -0.01em;
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35), 0 2px 4px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      user-select: none;
      text-decoration: none;
      box-sizing: border-box;
    }

    .btn-emerald:hover {
      background: linear-gradient(135deg, #34d399 0%, #059669 100%);
      box-shadow: 0 8px 26px rgba(16, 185, 129, 0.5), 0 4px 8px rgba(0, 0, 0, 0.35);
      transform: translateY(-1.5px);
      color: #ffffff;
    }

    .btn-emerald:active {
      transform: translateY(0.5px);
      box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }

    .btn-emerald:disabled, .btn-emerald[disabled] {
      background: rgba(255, 255, 255, 0.08) !important;
      color: rgba(255, 255, 255, 0.35) !important;
      border-color: rgba(255, 255, 255, 0.08) !important;
      box-shadow: none !important;
      cursor: not-allowed !important;
      transform: none !important;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      padding: 0 26px;
      height: 48px;
      border-radius: 9999px;
      font-size: 14.5px;
      font-weight: 500;
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
      white-space: nowrap;
      user-select: none;
      text-decoration: none;
      box-sizing: border-box;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.35);
      transform: translateY(-1.5px);
      color: #ffffff;
    }

    .btn-card {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(5, 150, 105, 0.28) 100%);
      color: #6ee7b7;
      border: 1px solid rgba(52, 211, 153, 0.4);
      padding: 0 22px;
      height: 42px;
      border-radius: 9999px;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      white-space: nowrap;
      user-select: none;
      box-sizing: border-box;
    }

    .btn-card:hover {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }

    .btn-apple {
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      font-size: 12.5px;
      font-weight: 600;
      padding: 0 18px;
      height: 36px;
      border-radius: 9999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      box-sizing: border-box;
    }

    .btn-apple:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.35);
      color: #ffffff;
      transform: translateY(-1px);
    }

    /* HERO: OVERFLOW VISIBLE PREVENTS DROPDOWN CLIPPING */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 130px;
      padding-bottom: 90px;
      overflow: visible;
    }

    .hero-bg-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .hero-bg-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.38) contrast(1.05);
      transform: scale(1.03);
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
                  linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, var(--bg-black) 98%);
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      max-width: 980px;
      margin: 0 auto;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(16, 185, 129, 0.12) 100%);
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 8px 20px rgba(0, 0, 0, 0.4);
      padding: 6px 18px;
      border-radius: 980px;
      font-size: 13px;
      font-weight: 600;
      color: var(--emerald-bright);
      margin-bottom: 24px;
      backdrop-filter: var(--liquid-glass-blur);
    }

    .hero-title {
      font-size: 64px;
      line-height: 1.08;
      letter-spacing: -0.035em;
      margin-bottom: 24px;
      color: #ffffff;
    }

    .hero-title .gradient-text {
      background: linear-gradient(135deg, #ffffff 50%, var(--emerald-bright) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
      font-size: 19px;
      line-height: 1.55;
      color: var(--text-muted);
      max-width: 740px;
      margin: 0 auto 36px;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 48px;
    }

    /* QUICK BOOKING BAR - LIQUID GLASS SLAB */
    .booking-bar-wrapper {
      position: relative;
      z-index: 50;
      max-width: 1160px;
      width: 100%;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .booking-bar {
      background: var(--liquid-glass-bg);
      border: var(--liquid-glass-border);
      box-shadow: var(--liquid-glass-specular);
      backdrop-filter: var(--liquid-glass-blur);
      -webkit-backdrop-filter: var(--liquid-glass-blur);
      border-radius: 28px;
      padding: 12px 18px;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(0, 1.35fr) auto;
      gap: 10px;
      align-items: center;
      box-sizing: border-box;
      width: 100%;
    }

    .bar-field, .custom-dropdown, .dropdown-trigger, .dropdown-val-wrap {
      min-width: 0;
    }

    .bar-field {
      padding: 9px 12px;
      border-radius: 16px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      border: 1px solid transparent;
      text-align: left;
      box-sizing: border-box;
    }

    .bar-field:hover, .bar-field.active {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.16);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
    }

    .bar-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 4px;
      font-weight: 600;
    }

    .bar-label svg {
      width: 14px;
      height: 14px;
      stroke: var(--emerald-bright);
      flex-shrink: 0;
    }

    .bar-val {
      font-size: 13.5px;
      font-weight: 600;
      color: #ffffff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
    }
      color: #ffffff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* CUSTOM APPLE DROPDOWN - LIQUID GLASS */
    .custom-dropdown {
      position: relative;
      text-align: left;
    }

    .dropdown-trigger {
      padding: 10px 14px;
      border-radius: 16px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      border: 1px solid transparent;
    }

    .dropdown-trigger:hover, .custom-dropdown.open .dropdown-trigger {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
    }

    .dropdown-val-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .dropdown-chevron {
      width: 14px;
      height: 14px;
      stroke: var(--text-muted);
      stroke-width: 2;
      fill: none;
      transition: transform 0.25s ease, stroke 0.2s;
      flex-shrink: 0;
    }

    .custom-dropdown.open .dropdown-chevron {
      transform: rotate(180deg);
      stroke: var(--emerald-bright);
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: 0;
      min-width: 260px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 40%, rgba(12, 19, 15, 0.95) 100%), rgba(10, 16, 13, 0.98);
      backdrop-filter: var(--liquid-glass-blur);
      -webkit-backdrop-filter: var(--liquid-glass-blur);
      border: var(--liquid-glass-border);
      box-shadow: var(--liquid-glass-specular);
      border-radius: 20px;
      padding: 8px;
      z-index: 999;
      display: none;
      animation: popIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .custom-dropdown.open .dropdown-menu {
      display: block;
    }

    .dropdown-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 14px;
      border-radius: 12px;
      cursor: pointer;
      color: #e5e7eb;
      font-size: 13.5px;
      font-weight: 500;
      transition: all 0.15s ease;
    }

    .dropdown-item:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      transform: translateX(3px);
    }

    .dropdown-item.active {
      background: rgba(16, 185, 129, 0.2);
      color: var(--emerald-bright);
      font-weight: 600;
    }

    .check-icon {
      width: 15px;
      height: 15px;
      stroke: var(--emerald-bright);
      stroke-width: 2.2;
      fill: none;
      opacity: 0;
      transition: opacity 0.15s;
    }

    .dropdown-item.active .check-icon {
      opacity: 1;
    }

    .opt-content {
      display: flex;
      flex-direction: column;
      gap: 2px;
      text-align: left;
    }

    .opt-name {
      font-size: 13.5px;
      color: #fff;
    }

    .opt-sub {
      font-size: 11.5px;
      color: var(--emerald-bright);
      font-weight: 400;
    }

    /* CALC & ACTION WRAP */
    .bar-cta-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .bar-calc-preview {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      line-height: 1.15;
    }

    .calc-nights-pill {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      font-weight: 600;
    }

    .calc-total-pill {
      font-size: 18px;
      font-weight: 800;
      color: var(--emerald-bright);
      letter-spacing: -0.02em;
    }

    /* INTERACTIVE CALENDAR POPUPS - LIQUID GLASS & BOOKED DAYS */
    .calendar-popup {
      position: absolute;
      top: calc(100% + 14px);
      z-index: 999;
      width: 370px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 35%, rgba(12, 19, 15, 0.95) 100%), rgba(10, 16, 13, 0.98);
      backdrop-filter: var(--liquid-glass-blur);
      -webkit-backdrop-filter: var(--liquid-glass-blur);
      border: var(--liquid-glass-border);
      box-shadow: var(--liquid-glass-specular);
      border-radius: 24px;
      padding: 22px;
      display: none;
      animation: popIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .calendar-popup.open {
      display: block;
    }

    #calPopupCheckIn {
      left: 0;
    }

    #calPopupCheckOut {
      left: 190px;
    }

    @keyframes popIn {
      from { opacity: 0; transform: translateY(-8px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .cal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .cal-title-wrap {
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .cal-step-tag {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--emerald-bright);
      font-weight: 600;
    }

    .cal-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
    }

    .cal-nav-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: all 0.2s;
    }

    .cal-nav-btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .cal-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      text-align: center;
      font-size: 11px;
      font-weight: 600;
      color: var(--text-dim);
      margin-bottom: 10px;
    }

    .cal-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }

    .cal-day {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      border-radius: 10px;
      cursor: pointer;
      color: #fff;
      transition: all 0.15s;
      font-weight: 500;
      position: relative;
    }

    .cal-day:hover:not(.disabled):not(.booked) {
      background: rgba(16, 185, 129, 0.22);
      color: #ffffff;
    }

    .cal-day.disabled {
      color: rgba(255, 255, 255, 0.2);
      cursor: not-allowed;
      opacity: 0.3;
    }

    /* FREE AVAILABLE DATES - CLEAN WHITE NUMBER */
    .cal-day.cal-free {
      color: #ffffff;
    }

    /* RED OCCUPIED / BOOKED DATES */
    .cal-day.booked {
      background: rgba(239, 68, 68, 0.12) !important;
      border: 1px solid rgba(239, 68, 68, 0.32) !important;
      color: #fca5a5 !important;
      cursor: not-allowed !important;
      opacity: 0.85;
    }

    .cal-day.booked::after {
      content: '';
      position: absolute;
      bottom: 4px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #ef4444;
      box-shadow: 0 0 6px rgba(239, 68, 68, 0.85);
    }

    /* UNIFIED SOLID GREEN COLOR FOR SELECTED RANGE (START, IN-BETWEEN, AND END) */
    .cal-day.selected,
    .cal-day.in-range {
      background: #10b981 !important;
      color: #ffffff !important;
      font-weight: 700 !important;
      box-shadow: 0 2px 10px rgba(16, 185, 129, 0.35) !important;
      border-radius: 8px !important;
    }

    .cal-day.selected::after,
    .cal-day.in-range::after {
      display: none !important;
    }

    .cal-legend {
      display: flex;
      align-items: center;
      justify-content: space-around;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 11.5px;
      color: var(--text-muted);
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .legend-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .legend-dot.white { background: #ffffff; box-shadow: 0 0 6px rgba(255, 255, 255, 0.8); }
    .legend-dot.green { background: #10b981; box-shadow: 0 0 6px rgba(16, 185, 129, 0.6); }
    .legend-dot.red { background: #ef4444; box-shadow: 0 0 6px rgba(239, 68, 68, 0.6); }
    .legend-dot.selected { background: #10b981; box-shadow: 0 0 6px rgba(16, 185, 129, 0.6); }

    .cal-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--border-subtle);
    }

    .cal-info {
      font-size: 12px;
      color: var(--emerald-bright);
      font-weight: 500;
    }

    /* SECTION BASICS */
    section {
      padding: 120px 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 70px;
    }

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--emerald-bright);
      margin-bottom: 14px;
    }

    .section-title {
      font-size: 48px;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: #ffffff;
      margin-bottom: 18px;
    }

    .section-desc {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* HOUSES CARDS & SLIDERS */
    .houses-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      align-items: stretch;
    }

    .house-card {
      background: var(--liquid-glass-bg);
      border: var(--liquid-glass-border);
      box-shadow: var(--liquid-glass-specular);
      border-radius: 28px;
      overflow: hidden;
      backdrop-filter: var(--liquid-glass-blur);
      -webkit-backdrop-filter: var(--liquid-glass-blur);
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .house-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 255, 255, 0.3);
      box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.5), 0 35px 70px rgba(0, 0, 0, 0.85);
    }

    /* SLIDER CONTAINER */
    .house-slider {
      position: relative;
      height: 450px;
      overflow: hidden;
      background: #050806;
      cursor: pointer;
    }

    .house-slides {
      display: flex;
      height: 100%;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .house-slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #050806;
      overflow: hidden;
    }

    .house-slide-backdrop {
      position: absolute;
      inset: -20px;
      background-size: cover;
      background-position: center;
      filter: blur(28px) brightness(0.35) saturate(1.25);
      transform: scale(1.15);
      pointer-events: none;
      z-index: 1;
    }

    .house-slide img {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.4s ease;
      filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.65));
    }

    .house-card:hover .house-slide img {
      transform: scale(1.03);
    }

    /* SLIDER CONTROLS */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      opacity: 0;
      transition: all 0.2s;
    }

    .slider-arrow:hover {
      background: rgba(0, 0, 0, 0.85);
      transform: translateY(-50%) scale(1.1);
    }

    .house-slider:hover .slider-arrow {
      opacity: 1;
    }

    .slider-arrow.prev { left: 14px; }
    .slider-arrow.next { right: 14px; }

    /* SLIDER DOTS */
    .slider-dots {
      position: absolute;
      bottom: 14px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 6px;
      z-index: 6;
      pointer-events: none;
    }

    .slider-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      transition: all 0.3s;
    }

    .slider-dot.active {
      width: 20px;
      border-radius: 10px;
      background: #ffffff;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }

    /* BADGE OVER SLIDER - CORRECTED PER USER'S REQUEST */
    .house-floating-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 7;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(8, 14, 10, 0.75);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45), 0 4px 12px rgba(0, 0, 0, 0.4);
      padding: 6px 14px;
      border-radius: 980px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .house-body {
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .house-title {
      font-size: 24px;
      line-height: 1.25;
      min-height: 60px;
      display: flex;
      align-items: center;
      color: #ffffff;
      margin-bottom: 8px;
    }

    .house-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.55;
      min-height: 66px;
      margin-bottom: 22px;
    }

    .house-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      min-height: 110px;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .spec-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #d1dcd5;
    }

    .spec-icon-wrap {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--emerald-bright);
      flex-shrink: 0;
    }

    .house-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 12px;
    }

    .price-num {
      font-size: 28px;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.03em;
      white-space: nowrap !important;
    }

    .price-period {
      font-size: 12px;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      white-space: nowrap !important;
    }

    /* AMENITIES SECTION */
    .amenities-section {
      background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .amenity-box {
      background: var(--liquid-glass-bg);
      border: var(--liquid-glass-border);
      box-shadow: var(--liquid-glass-specular);
      border-radius: 24px;
      padding: 34px 28px;
      backdrop-filter: var(--liquid-glass-blur);
    }

    .amenity-box:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 255, 255, 0.28);
    }

    .amenity-icon-large {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--emerald-bright);
      margin-bottom: 20px;
    }

    .amenity-title {
      font-size: 20px;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .amenity-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* UNIFORM SQUARE PHOTO GALLERY */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .gallery-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      cursor: pointer;
      background: #080d0a;
      border: var(--liquid-glass-border);
      box-shadow: var(--liquid-glass-specular);
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 255, 255, 0.32);
      box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.45), 0 30px 60px rgba(0, 0, 0, 0.8);
    }

    .gallery-card:hover img {
      transform: scale(1.06);
    }

    .gallery-hover {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: flex-end;
      padding: 18px;
    }

    .gallery-card:hover .gallery-hover {
      opacity: 1;
    }

    .gallery-hover-text {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .gallery-hover-text svg {
      width: 16px;
      height: 16px;
      stroke: var(--emerald-bright);
    }

    /* TARIFFS */
    .tariffs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .tariff-card {
      background: var(--liquid-glass-bg);
      border: var(--liquid-glass-border);
      box-shadow: var(--liquid-glass-specular);
      border-radius: 28px;
      padding: 40px 32px;
      backdrop-filter: var(--liquid-glass-blur);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    .tariff-card.featured {
      background: linear-gradient(180deg, rgba(16, 185, 129, 0.12) 0%, rgba(14, 22, 18, 0.82) 100%);
      border-color: rgba(16, 185, 129, 0.3);
    }

    .tariff-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%), linear-gradient(135deg, #10b981, #059669);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 4px 16px;
      border-radius: 980px;
    }

    .tariff-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .tariff-name {
      font-size: 22px;
      color: #fff;
      margin-bottom: 8px;
    }

    .tariff-cost {
      font-size: 38px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    .tariff-list {
      list-style: none;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .tariff-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: #cbd5e1;
    }

    .tariff-list li svg {
      stroke: var(--emerald-bright);
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    /* FAQ ACCORDION */
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-row {
      border-bottom: 1px solid var(--border-subtle);
      margin-bottom: 8px;
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 24px 0;
      font-size: 19px;
      font-weight: 600;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: color 0.2s;
    }

    .faq-question:hover {
      color: var(--emerald-bright);
    }

    .faq-icon-arrow {
      transition: transform 0.3s;
      stroke: var(--emerald-bright);
    }

    .faq-row.active .faq-icon-arrow {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .faq-row.active .faq-answer {
      max-height: 200px;
      padding-bottom: 24px;
    }

    /* CONTACTS & FORM */
    .contacts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      background: var(--liquid-glass-bg);
      border: var(--liquid-glass-border);
      box-shadow: var(--liquid-glass-specular);
      border-radius: 32px;
      padding: 48px;
      backdrop-filter: var(--liquid-glass-blur);
    }

    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 32px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--emerald-bright);
      flex-shrink: 0;
    }

    .contact-title {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-dim);
      margin-bottom: 4px;
    }

    .contact-val {
      font-size: 16px;
      font-weight: 600;
      color: #ffffff;
    }

    .form-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
      border-radius: 14px;
      padding: 14px 18px;
      font-size: 15px;
      color: #fff;
      outline: none;
      margin-bottom: 16px;
      transition: all 0.2s;
    }

    .form-input:focus {
      border-color: var(--emerald-bright);
      background: rgba(255, 255, 255, 0.07);
    }

    /* FULLSCREEN LIGHTBOX - TOP PRIORITY & RESPONSIVE */
    .lightbox-modal {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      display: none;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.25s ease;
      cursor: pointer;
    }

    .lightbox-modal.active,
    .lightbox-modal.open {
      display: flex !important;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .lightbox-img-wrapper {
      max-width: 90vw;
      max-height: 85vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: default;
    }

    .lightbox-img-wrapper img {
      max-width: 90vw;
      max-height: 85vh;
      width: auto;
      height: auto;
      border-radius: 18px;
      object-fit: contain;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85);
      display: block;
      user-select: none;
      -webkit-user-select: none;
    }

    .lightbox-btn {
      position: absolute;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      z-index: 100001;
    }

    .lightbox-btn:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: scale(1.08);
    }

    .lightbox-close { top: 24px; right: 24px; }
    .lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
    .lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

    .lightbox-counter {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      background: rgba(0, 0, 0, 0.7);
      padding: 7px 20px;
      border-radius: 980px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      z-index: 100001;
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .lightbox-close { top: 16px; right: 16px; width: 44px; height: 44px; }
      .lightbox-prev { left: 10px; width: 42px; height: 42px; }
      .lightbox-next { right: 10px; width: 42px; height: 42px; }
      .lightbox-counter { bottom: 16px; font-size: 13px; }
    }

    /* LUXURY APPLE LIQUID GLASS BOOKING MODAL */
    .book-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.82);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      display: none;
      opacity: 0;
      align-items: center;
      justify-content: center;
      padding: 20px;
      transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .book-modal.active,
    .book-modal.open {
      display: flex;
      opacity: 1;
    }

    .book-modal-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 35%, rgba(12, 19, 15, 0.95) 100%), rgba(10, 16, 13, 0.98);
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: inset 0 1.5px 1.5px 0 rgba(255, 255, 255, 0.45), inset 0 -1.5px 2px 0 rgba(0, 0, 0, 0.5), 0 35px 80px rgba(0, 0, 0, 0.9);
      border-radius: 30px;
      padding: 36px 32px;
      max-width: 580px;
      width: 100%;
      position: relative;
      animation: modalPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      max-height: 92vh;
      overflow-y: auto;
    }

    @keyframes modalPopIn {
      from { opacity: 0; transform: scale(0.95) translateY(10px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }

    .modal-close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.2s;
    }

    .modal-close-btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .modal-cabin-header {
      margin-bottom: 20px;
    }

    .modal-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--emerald-bright);
      margin-bottom: 6px;
    }

    .modal-cabin-title {
      font-size: 26px;
      color: #fff;
      font-weight: 700;
      margin-bottom: 12px;
    }

    /* MODAL DATES SELECTOR - INLINE DUAL DATE BOXES */
    .modal-dates-picker-wrap {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 10px;
      align-items: center;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      padding: 8px 12px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .modal-dates-picker-wrap:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .modal-date-box {
      text-align: left;
      padding: 6px 10px;
      border-radius: 12px;
      transition: all 0.2s;
    }

    .modal-date-box.active {
      background: rgba(16, 185, 129, 0.18);
      border: 1px solid rgba(16, 185, 129, 0.4);
    }

    .mdb-label {
      font-size: 11px;
      text-transform: uppercase;
      color: var(--text-muted);
      letter-spacing: 0.06em;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .modal-date-box.active .mdb-label {
      color: var(--emerald-bright);
    }

    .mdb-val {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
    }

    .modal-dates-arrow {
      color: var(--emerald-bright);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-dates-arrow svg {
      width: 16px;
      height: 16px;
    }

    /* DURATION SELECTOR - STEPPER & QUICK PRESETS */
    .modal-duration-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 14px;
      padding: 8px 12px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .duration-stepper {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .dur-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.15s;
    }

    .dur-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.06);
    }

    .dur-btn svg {
      width: 13px;
      height: 13px;
      stroke: #fff;
      stroke-width: 2.2;
    }

    .dur-current {
      font-size: 13px;
      font-weight: 700;
      color: var(--emerald-bright);
      min-width: 60px;
      text-align: center;
    }

    .duration-quick-presets {
      display: flex;
      align-items: center;
      gap: 5px;
      flex-wrap: wrap;
    }

    .preset-pill {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text-muted);
      font-size: 11.5px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 9999px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .preset-pill:hover {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .preset-pill.active {
      background: rgba(16, 185, 129, 0.22);
      border-color: rgba(16, 185, 129, 0.55);
      color: #6ee7b7;
      font-weight: 700;
    }

    /* CONFLICT ALERT BANNER */
    .booking-conflict-alert {
      display: none;
      align-items: center;
      gap: 10px;
      background: rgba(239, 68, 68, 0.14);
      border: 1px solid rgba(239, 68, 68, 0.35);
      border-radius: 14px;
      padding: 10px 14px;
      margin-bottom: 14px;
      font-size: 12.5px;
      color: #fca5a5;
      line-height: 1.4;
      animation: popIn 0.2s ease;
    }

    .booking-conflict-alert svg {
      width: 17px;
      height: 17px;
      stroke: #ef4444;
      stroke-width: 2.2;
      flex-shrink: 0;
    }

    /* INLINE MODAL CALENDAR DROPDOWN */
    .modal-calendar-dropdown {
      display: none;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
      border-radius: 18px;
      padding: 16px;
      margin-bottom: 18px;
      animation: popIn 0.2s ease;
    }

    .modal-calendar-dropdown.open {
      display: block;
    }

    .mcal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .mcal-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }

    .mcal-nav {
      display: flex;
      gap: 6px;
    }

    .input-field-group {
      position: relative;
      margin-bottom: 14px;
    }

    .input-field-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      stroke: var(--text-muted);
      pointer-events: none;
    }

    .modal-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
      border-radius: 14px;
      padding: 14px 16px 14px 46px;
      font-size: 14.5px;
      color: #fff;
      outline: none;
      transition: all 0.2s;
    }

    .modal-input:focus {
      border-color: var(--emerald-bright);
      background: rgba(255, 255, 255, 0.07);
    }

    /* MESSENGER SELECTOR */
    .messenger-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-dim);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .messenger-tabs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 18px;
    }

    .ms-tab {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
      padding: 10px;
      border-radius: 12px;
      text-align: center;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s;
    }

    .ms-tab:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .ms-tab.active {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
      border-color: rgba(16, 185, 129, 0.4);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
      color: #fff;
    }

    /* EXTRA OPTIONS */
    .modal-extras-title {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-dim);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .modal-extra-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
      margin-bottom: 8px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .modal-extra-item:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    .extra-check-box {
      width: 20px;
      height: 20px;
      border-radius: 6px;
      border: 1.5px solid rgba(255, 255, 255, 0.28);
      margin-right: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .modal-extra-item.checked .extra-check-box {
      background: var(--emerald-bright);
      border-color: var(--emerald-bright);
    }

    .extra-check-box svg {
      width: 13px;
      height: 13px;
      stroke: #000;
      stroke-width: 2.5;
      display: none;
    }

    .modal-extra-item.checked .extra-check-box svg {
      display: block;
    }

    .extra-name {
      font-size: 13.5px;
      color: #fff;
    }

    .extra-price {
      font-size: 13px;
      font-weight: 700;
      color: var(--emerald-bright);
    }

    /* MODAL BREAKDOWN */
    .modal-total-box {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
      border-radius: 16px;
      padding: 14px 18px;
      margin: 18px 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mtb-label {
      font-size: 13px;
      color: var(--text-muted);
    }

    .mtb-val {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .mtb-val span {
      color: var(--emerald-bright);
    }

    /* MODAL SUCCESS SCREEN */
    .modal-success-screen {
      display: none;
      text-align: center;
      padding: 30px 10px;
    }

    .modal-success-screen.active,
    .modal-success-screen.open {
      display: flex !important;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      animation: modalPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .success-icon-wrap {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.15);
      border: 1px solid rgba(16, 185, 129, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--emerald-bright);
    }

    .success-title {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }

    .success-desc {
      font-size: 14.5px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 26px;
    }

    /* HARDWARE-ACCELERATED TRANSLATE3D ROLLOUT ANIMATIONS - 2X SLOWER */
    .reveal,
    .house-card.reveal,
    .tour-card.reveal,
    .amenity-box.reveal,
    .gallery-card.reveal,
    .faq-container.reveal,
    .contacts-grid.reveal,
    .section-header.reveal {
      opacity: 0;
      transform: translate3d(0, 36px, 0) scale(0.98);
      transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.is-visible,
    .house-card.reveal.is-visible,
    .tour-card.reveal.is-visible,
    .amenity-box.reveal.is-visible,
    .gallery-card.reveal.is-visible,
    .faq-container.reveal.is-visible,
    .contacts-grid.reveal.is-visible,
    .section-header.reveal.is-visible {
      opacity: 1 !important;
      transform: translate3d(0, 0, 0) scale(1) !important;
    }

    .section-header.reveal {
      transition-delay: 0.08s;
    }

    /* CRISP SMOOTH STAGGER DELAYS - DOUBLED (2X) */
    .houses-grid .house-card.reveal:nth-child(1) { transition-delay: 0.16s; }
    .houses-grid .house-card.reveal:nth-child(2) { transition-delay: 0.40s; }
    .houses-grid .house-card.reveal:nth-child(3) { transition-delay: 0.64s; }

    .tours-grid .tour-card.reveal:nth-child(1) { transition-delay: 0.12s; }
    .tours-grid .tour-card.reveal:nth-child(2) { transition-delay: 0.32s; }
    .tours-grid .tour-card.reveal:nth-child(3) { transition-delay: 0.52s; }
    .tours-grid .tour-card.reveal:nth-child(4) { transition-delay: 0.72s; }
    .tours-grid .tour-card.reveal:nth-child(5) { transition-delay: 0.92s; }

    .amenities-grid .amenity-box.reveal:nth-child(1) { transition-delay: 0.10s; }
    .amenities-grid .amenity-box.reveal:nth-child(2) { transition-delay: 0.24s; }
    .amenities-grid .amenity-box.reveal:nth-child(3) { transition-delay: 0.38s; }
    .amenities-grid .amenity-box.reveal:nth-child(4) { transition-delay: 0.52s; }
    .amenities-grid .amenity-box.reveal:nth-child(5) { transition-delay: 0.66s; }
    .amenities-grid .amenity-box.reveal:nth-child(6) { transition-delay: 0.80s; }

    .gallery-grid .gallery-card.reveal:nth-child(1) { transition-delay: 0.08s; }
    .gallery-grid .gallery-card.reveal:nth-child(2) { transition-delay: 0.20s; }
    .gallery-grid .gallery-card.reveal:nth-child(3) { transition-delay: 0.32s; }
    .gallery-grid .gallery-card.reveal:nth-child(4) { transition-delay: 0.44s; }
    .gallery-grid .gallery-card.reveal:nth-child(5) { transition-delay: 0.16s; }
    .gallery-grid .gallery-card.reveal:nth-child(6) { transition-delay: 0.28s; }
    .gallery-grid .gallery-card.reveal:nth-child(7) { transition-delay: 0.40s; }
    .gallery-grid .gallery-card.reveal:nth-child(8) { transition-delay: 0.52s; }
    .gallery-grid .gallery-card.reveal:nth-child(9) { transition-delay: 0.20s; }
    .gallery-grid .gallery-card.reveal:nth-child(10) { transition-delay: 0.32s; }
    .gallery-grid .gallery-card.reveal:nth-child(11) { transition-delay: 0.44s; }
    .gallery-grid .gallery-card.reveal:nth-child(12) { transition-delay: 0.56s; }
    .gallery-grid .gallery-card.reveal:nth-child(13) { transition-delay: 0.24s; }
    .gallery-grid .gallery-card.reveal:nth-child(14) { transition-delay: 0.36s; }
    .gallery-grid .gallery-card.reveal:nth-child(15) { transition-delay: 0.48s; }
    .gallery-grid .gallery-card.reveal:nth-child(16) { transition-delay: 0.60s; }

    .faq-container.reveal { transition-delay: 0.16s; }
    .contacts-grid.reveal { transition-delay: 0.20s; }

    /* CARD HOVER ENHANCEMENTS ONLY AFTER REVEAL */
    .house-card.reveal.is-visible:hover {
      transform: translateY(-5px) !important;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(16, 185, 129, 0.1);
      border-color: rgba(16, 185, 129, 0.35);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
    }

    .amenity-box.reveal.is-visible:hover {
      transform: translateY(-4px) scale(1) !important;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.08);
      border-color: rgba(16, 185, 129, 0.3);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
    }

    .gallery-card.reveal.is-visible:hover {
      transform: translateY(-4px) scale(1.02) !important;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
      border-color: rgba(255, 255, 255, 0.35);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
    }

    /* HERO ENTRANCE: ETHEREAL MATERIALIZE FROM MIST */
    @keyframes etherealMaterialize {
      0% {
        opacity: 0;
        filter: blur(18px);
        transform: scale(0.95);
      }
      100% {
        opacity: 1;
        filter: none;
        transform: none;
      }
    }

    .hero-tag {
      animation: etherealMaterialize 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    }
    .hero-title {
      animation: etherealMaterialize 2.0s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
    }
    .hero-subtitle {
      animation: etherealMaterialize 2.0s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
    }
    .hero-actions {
      animation: etherealMaterialize 2.0s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
    }
    .booking-bar-wrapper {
      animation: etherealMaterialize 2.1s cubic-bezier(0.16, 1, 0.3, 1) 1.4s both;
    }

    /* HEADER SCROLLED STATE */
    header.scrolled {
      background: rgba(5, 7, 6, 0.92);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    /* SMOOTH SCROLL MARGIN FOR FIXED HEADER */
    section[id] {
      scroll-margin-top: 84px;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border-subtle);
      padding: 48px 0;
      color: var(--text-dim);
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-brand-wrap {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .footer-logo-img {
      height: 60px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
    }

    .footer-copy {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    /* FLOATING MOBILE BAR - PERMANENTLY DISABLED */
    .floating-mobile-bar {
      display: none !important;
    }

    /* COMPREHENSIVE RESPONSIVE DESIGN */
    @media (max-width: 1200px) {
      .booking-bar {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .bar-cta-wrap {
        grid-column: span 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      #calPopupCheckOut {
        left: 0;
      }
    }

    @media (max-width: 992px) {
      .hero-title { font-size: 46px; }
      .houses-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
      }
      .house-title { min-height: auto; }
      .house-desc { min-height: auto; }
      .house-specs { min-height: auto; }
      .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
      .amenities-grid { grid-template-columns: repeat(2, 1fr); }
      .tariffs-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
      .contacts-grid { grid-template-columns: 1fr; padding: 32px; }
      .nav-links { display: none; }
    }

    @media (max-width: 768px) {
      html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        position: relative;
      }
      .container {
        padding: 0 16px !important;
        max-width: 100% !important;
      }
      .hero {
        max-width: 100% !important;
        padding-top: 115px;
        padding-bottom: 70px;
      }
      .hero-bg-image {
        transform: none !important;
      }
      section, main, header, footer {
        max-width: 100% !important;
      }
      .footer-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
      }
      .footer-brand-wrap {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
      }
      .tour-card {
        padding: 22px 18px !important;
        border-radius: 20px !important;
      }
      .tour-thumbs-strip {
        gap: 6px !important;
        margin-bottom: 16px !important;
      }
      .houses-grid, .tariffs-grid, .gallery-grid, .amenities-grid, .tours-grid {
        max-width: 100% !important;
      }
      .booking-bar-wrapper {
        max-width: 100% !important;
        width: 100% !important;
      }
      header {
        height: 62px;
      }
      .header-right .header-phone {
        display: none;
      }
      .hero-tag {
        font-size: 11.5px;
        padding: 5px 14px;
        margin-bottom: 18px;
      }
      .hero-title {
        font-size: 33px;
        line-height: 1.15;
        margin-bottom: 18px;
      }
      .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
      }
      .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 36px;
      }
      .hero-actions .btn-emerald, .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
      }
      .booking-bar {
        grid-template-columns: 1fr;
        padding: 16px;
        border-radius: 22px;
        gap: 10px;
      }
      .bar-cta-wrap {
        grid-column: span 1;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
      }
      .bar-cta-wrap .btn-emerald {
        width: 100%;
        justify-content: center;
        padding: 14px;
      }
      .bar-calc-preview {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.04);
        padding: 8px 14px;
        border-radius: 12px;
      }
      .calendar-popup {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0 !important;
        right: 0 !important;
        width: 100%;
        border-radius: 28px 28px 0 0;
        padding: 24px 20px 36px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.95);
      }
      .dropdown-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 28px 28px 0 0;
        padding: 20px 16px 36px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.95);
      }
      .house-slider {
        height: 260px;
      }
      .house-body {
        padding: 24px 20px;
      }
      .house-title {
        font-size: 22px;
      }
      .section-title {
        font-size: 32px;
      }
      .section-header {
        margin-bottom: 40px;
      }
      section {
        padding: 70px 0;
      }
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }
      .gallery-card {
        border-radius: 14px;
      }
      .amenities-grid {
        grid-template-columns: 1fr;
      }
      .lightbox-btn {
        width: 44px;
        height: 44px;
      }
      .lightbox-prev { left: 10px; }
      .lightbox-next { right: 10px; }
      .lightbox-close { top: 16px; right: 16px; }
      .house-slider {
        height: 380px !important;
      }
      .house-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding-top: 16px;
      }
      .house-price-box {
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 12px 14px;
        gap: 6px;
      }
      .price-row-item {
        justify-content: flex-start;
        align-items: baseline;
        gap: 8px;
        white-space: nowrap !important;
      }
      .price-row-item .p-label {
        min-width: 76px;
        font-size: 13px;
        white-space: nowrap !important;
      }
      .price-row-item .price-num {
        font-size: 20px;
        white-space: nowrap !important;
      }
      .price-row-item .price-period {
        white-space: nowrap !important;
      }
      .house-footer .btn-card {
        width: 100%;
        height: 46px;
        font-size: 14px;
      }
      .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }
  
    /* CHEVRON ROTATION ON DATE TRIGGERS */
    .custom-date-trigger.active .dropdown-chevron {
      transform: rotate(180deg);
      stroke: var(--emerald-bright);
    }

    /* HERO DURATION STEPPER & QUICK PILLS */
    .hero-duration-stepper {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 4px 8px;
    }

    .h-dur-btn {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }

    .h-dur-btn:hover {
      background: rgba(16, 185, 129, 0.28);
      border-color: rgba(16, 185, 129, 0.5);
      color: var(--emerald-bright);
    }

    .cal-quick-dur-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cal-dur-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-dim);
      font-weight: 600;
    }

    .cal-dur-pills {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
    }

    .quick-dur-pill {
      font-size: 11px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.15s;
    }

    .quick-dur-pill:hover, .quick-dur-pill.active {
      background: rgba(16, 185, 129, 0.25);
      border-color: rgba(16, 185, 129, 0.45);
      color: #ffffff;
    }

    /* PAST DATES: STRICTLY GRAY, MUTED, NEVER RED, NEVER SELECTABLE */
    .cal-day.past-date, .cal-day.disabled {
      color: rgba(255, 255, 255, 0.2) !important;
      background: transparent !important;
      cursor: not-allowed !important;
      opacity: 0.32 !important;
      pointer-events: none !important;
      border: none !important;
    }
    .cal-day.past-date::after, .cal-day.disabled::after {
      display: none !important;
    }

  
    /* HOUSES 2-COLUMN GRID & PRICE STACK */
    .houses-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 1060px;
      margin: 0 auto;
    }

    @media (max-width: 900px) {
      .houses-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
      }
    }

    .house-price-box {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex-shrink: 0;
    }

    .price-row-item {
      display: flex;
      align-items: baseline;
      gap: 6px;
      white-space: nowrap !important;
    }

    .price-row-item .p-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
      min-width: 68px;
      white-space: nowrap !important;
    }

    .price-row-item .price-num {
      font-size: 19px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap !important;
      letter-spacing: -0.01em;
    }

    .price-row-item .price-period {
      font-size: 12px;
      color: var(--text-dim);
      white-space: nowrap !important;
    }

    .price-row-item.weekend .price-num {
      color: var(--emerald-bright);
    }

    .house-amenities-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: 16px 0 20px;
    }

    .amenity-pill {
      font-size: 11.5px;
      padding: 4px 10px;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #d1d5db;
    }

    /* EXCURSIONS SECTION */
    .tours-section {
      padding: 100px 0;
      position: relative;
    }

    .tours-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 48px;
    }

    @media (max-width: 992px) {
      .tours-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
        margin: 40px auto 0;
      }
    }

    .tour-card {
      background: var(--liquid-glass-bg);
      border: var(--liquid-glass-border);
      box-shadow: var(--liquid-glass-specular);
      border-radius: 28px;
      padding: 32px;
      backdrop-filter: var(--liquid-glass-blur);
      -webkit-backdrop-filter: var(--liquid-glass-blur);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .tour-card.featured {
      grid-column: span 2;
    }

    @media (max-width: 992px) {
      .tour-card.featured {
        grid-column: span 1;
      }
    }

    .tour-header {
      margin-bottom: 16px;
    }

    .tour-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      border-radius: 9999px;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--emerald-bright);
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.25);
      margin-bottom: 12px;
    }

    .tour-title {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1.25;
    }

    .tour-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .tour-thumbs-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-bottom: 22px;
    }

    .tour-thumb {
      aspect-ratio: 4 / 3;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      background: #080d0a;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .tour-thumb:hover {
      transform: scale(1.04);
      border-color: var(--emerald-bright);
    }

    .tour-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .tour-thumb-more {
      position: absolute;
      inset: 0;
      background: rgba(5, 8, 6, 0.75);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
    }

    .tour-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: auto;
    }

    @media (max-width: 576px) {
      .tour-footer {
        flex-direction: column;
        align-items: flex-start;
      }
      .tour-actions-wrap {
        width: 100%;
      }
      .tour-actions-wrap button,
      .tour-actions-wrap a {
        width: 100%;
        text-align: center;
      }
    }

    .tour-price-val {
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      white-space: nowrap !important;
    }

    .tour-price-note {
      font-size: 11.5px;
      color: var(--emerald-soft);
      font-weight: 500;
      margin-top: 4px;
    }

    .tour-actions-wrap {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn-tour-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.16);
      padding: 0 18px;
      height: 42px;
      border-radius: 9999px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-tour-secondary:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .tour-btn {
      height: 42px;
      padding: 0 20px;
      font-size: 13px;
      border-radius: 9999px;
    }

    /* CARD HOVER ENHANCEMENTS ONLY AFTER REVEAL */
    .tour-card.reveal.is-visible:hover {
      transform: translateY(-6px) scale(1) !important;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(16, 185, 129, 0.12);
      border-color: rgba(16, 185, 129, 0.35);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
    }

  
    .modal-field-group {
      margin-bottom: 14px;
    }

    .modal-select-wrap {
      position: relative;
      width: 100%;
    }

    .modal-select {
      width: 100%;
      height: 48px;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 14px;
      color: #ffffff;
      padding: 0 40px 0 16px;
      font-size: 15px;
      font-weight: 600;
      font-family: inherit;
      outline: none;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .modal-select:focus {
      border-color: var(--emerald-bright);
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
      background: rgba(255, 255, 255, 0.09);
    }

    .modal-select option {
      background: #0d1410;
      color: #ffffff;
      padding: 12px;
      font-size: 15px;
    }

    .modal-select-wrap .select-arrow {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      stroke: var(--text-muted);
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      pointer-events: none;
    }

/* SEO SUBPAGE & BLOG STYLES */
.breadcrumbs {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: var(--emerald-bright);
}
.breadcrumbs span.sep {
  opacity: 0.5;
}
.breadcrumbs span.current {
  color: var(--text-main);
}
.subpage-hero {
  padding: 130px 0 40px;
  position: relative;
}
.subpage-hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--emerald-subtle);
  border: 1px solid var(--emerald-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--emerald-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.subpage-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
}
.subpage-hero p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 820px;
}
.seo-prose {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.seo-prose h2 {
  color: #ffffff;
  font-size: 28px;
  margin: 44px 0 18px;
  letter-spacing: -0.02em;
}
.seo-prose h3 {
  color: #ffffff;
  font-size: 22px;
  margin: 28px 0 14px;
}
.seo-prose p {
  margin-bottom: 18px;
}
.seo-prose ul, .seo-prose ol {
  margin: 0 0 24px 24px;
}
.seo-prose li {
  margin-bottom: 10px;
}
.seo-prose strong {
  color: #ffffff;
}
.seo-prose a {
  color: var(--emerald-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.seo-card {
  background: var(--liquid-glass-bg);
  border: var(--liquid-glass-border);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: var(--liquid-glass-blur);
}
.seo-card h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}
.seo-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 40px 0 80px;
}
.blog-card {
  background: var(--liquid-glass-bg);
  border: var(--liquid-glass-border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--emerald-border);
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--emerald-bright);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.error-box {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
}
.error-code {
  font-size: clamp(80px, 15vw, 150px);
  font-weight: 900;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, rgba(255,255,255,0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}

/* FIXED HEADER RESPONSIVENESS & PADDING */
main {
  padding-top: 80px;
}

@media (max-width: 992px) {
  .nav-links {
    display: none !important;
  }
  .header-right .header-phone .contact-val {
    display: none !important;
  }
}

@media (max-width: 768px) {
  header {
    height: 64px !important;
  }
  main {
    padding-top: 68px !important;
  }
  .header-inner {
    padding: 0 16px !important;
  }
  .header-logo-img {
    height: 38px !important;
  }
  .logo-text span:first-child {
    font-size: 15px !important;
  }
  .logo-text span:last-child {
    font-size: 10px !important;
  }
  .header-right {
    gap: 10px !important;
  }
  .header-right .btn-emerald {
    padding: 0 16px !important;
    height: 38px !important;
    font-size: 13px !important;
  }
  .subpage-hero {
    padding: 24px 0 24px !important;
  }
  .breadcrumbs {
    padding: 12px 0 6px !important;
  }
}

/* BUTTONS FIX - NEVER CLIP TEXT */
.btn-emerald {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: normal !important;
  line-height: 1.25 !important;
  min-height: 46px !important;
  height: auto !important;
  box-sizing: border-box !important;
  padding: 12px 24px !important;
}

.seo-card {
  display: flex;
  flex-direction: column;
}
.seo-card .btn-emerald {
  margin-top: auto;
}
