﻿
    /* â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --red:        #8B1717;
      --red-dark:   #6b1010;
      --red-deeper: #2d0707;
      --red-light:  #fff0f0;
      --gold:       #8B1717;
      --gold-light: #fff0f0;
      --white:      #ffffff;
      --off-white:  #faf8f5;
      --gray-50:    #f9f7f4;
      --gray-100:   #f0ece8;
      --gray-200:   #e0dbd5;
      --gray-400:   #9a9590;
      --gray-500:   #716d68;
      --gray-600:   #4a4642;
      --dark:       #1a0a0a;
      --radius:     16px;
      --radius-sm:  10px;
      --shadow-sm:  0 2px 12px rgba(0,0,0,.08);
      --shadow-md:  0 8px 32px rgba(0,0,0,.14);
      --shadow-lg:  0 20px 60px rgba(0,0,0,.22);
      --shadow-xl:  0 32px 80px rgba(0,0,0,.30);
      --transition: .3s cubic-bezier(.4,0,.2,1);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
      opacity: 0;
      transition: opacity .5s ease;
    }
    body.loaded { opacity: 1; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    input, select { font-family: inherit; }

    /* â”€â”€ CONTAINER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

    /* â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      transition: all .4s cubic-bezier(.4,0,.2,1);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      gap: 0;
      padding: 18px 40px;
      transition: all .4s cubic-bezier(.4,0,.2,1);
    }
    /* transparent state (top of page, over hero) */
    #navbar.nav-top .nav-inner {
      background: transparent;
    }
    /* scrolled state */
    #navbar.nav-scrolled .nav-inner {
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(139,23,23,.10);
      padding: 12px 40px;
      box-shadow: 0 4px 32px rgba(0,0,0,.08);
    }

    /* Logo */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0;
      margin-right: auto;
      text-decoration: none;
    }
    .logo-wordmark {
      font-family: 'Inter', sans-serif;
      font-weight: 800;
      font-size: 1.45rem;
      letter-spacing: -.5px;
      display: flex;
      align-items: center;
      gap: 0;
      transition: color .3s;
    }
    .logo-stay { color: var(--red); }
    .logo-dekh { color: var(--red); }

    /* Magnifying glass O */
    .logo-o {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 19px;
      height: 30px;
      margin-left: -1px;
      vertical-align: -12px;
    }
    .logo-o svg { width: 19px; height: 30px; }

    /* transparent nav â†’ white */
    #navbar.nav-top .logo-stay  { color: #fff; }
    #navbar.nav-top .logo-dekh  { color: #fff; }
    #navbar.nav-top .logo-o svg circle.lens { stroke: #fff; }
    #navbar.nav-top .logo-o svg line.handle { stroke: #fff; }

    /* scrolled nav â†’ red */
    #navbar.nav-scrolled .logo-stay  { color: var(--red); }
    #navbar.nav-scrolled .logo-dekh  { color: var(--red); }
    #navbar.nav-scrolled .logo-o svg circle.lens { stroke: var(--red); }
    #navbar.nav-scrolled .logo-o svg line.handle { stroke: var(--red); }

    /* Nav links */
    /* Hamburger hidden on desktop */
    .nav-hamburger { display: none; }
    .mobile-nav-drawer { display: none; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
      margin: 0 32px;
    }
    .nav-links a {
      font-size: .875rem;
      font-weight: 600;
      letter-spacing: .01em;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all .25s;
      position: relative;
    }
    #navbar.nav-top .nav-links a { color: rgba(255,255,255,.88); }
    #navbar.nav-top .nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }
    #navbar.nav-scrolled .nav-links a { color: var(--gray-600); }
    #navbar.nav-scrolled .nav-links a:hover { color: var(--red); background: var(--red-light); }

    /* Active underline */
    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 14px; right: 14px;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
    }

    /* Login button */
    .nav-login {
      font-size: .875rem;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: 10px;
      transition: all .25s;
      white-space: nowrap;
    }
    #navbar.nav-top .nav-login {
      color: #fff;
      border: 2px solid rgba(255,255,255,.6);
      background: rgba(255,255,255,.12);
    }
    #navbar.nav-top .nav-login:hover {
      background: rgba(255,255,255,.22);
      border-color: #fff;
    }
    #navbar.nav-scrolled .nav-login {
      color: var(--white);
      background: var(--red);
      border: 2px solid var(--red);
    }
    #navbar.nav-scrolled .nav-login:hover {
      background: var(--red-dark);
      border-color: var(--red-dark);
    }

    /* â”€â”€ HERO SLIDER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      background: #0d0404;
    }

    /* Individual slides */
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
      will-change: opacity;
    }
    .slide.active { opacity: 1; z-index: 1; }
    .slide img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.05);
      transition: transform 7s cubic-bezier(.25,0,.25,1);
    }
    .slide.active img { transform: scale(1); }

    /* Natural dark overlay â€” images stay clear */
    .slide-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top,    rgba(0,0,0,.65) 0%, rgba(0,0,0,.20) 45%, transparent 70%),
        linear-gradient(to bottom, rgba(0,0,0,.40) 0%, transparent 40%);
    }

    /* Centered hero text */
    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 24px 180px;
      gap: 20px;
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      backdrop-filter: blur(10px);
      color: rgba(255,255,255,.92);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 100px;
      pointer-events: auto;
    }
    .hero-headline {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1.1;
      color: #fff;
      letter-spacing: -.02em;
      text-shadow: 0 2px 24px rgba(0,0,0,.4);
      max-width: 760px;
    }
    .hero-headline em {
      font-style: italic;
      color: #fff;
      position: relative;
    }
    .hero-sub {
      font-size: 1.1rem;
      color: rgba(255,255,255,.78);
      line-height: 1.65;
      max-width: 520px;
      text-shadow: 0 1px 8px rgba(0,0,0,.3);
    }

    /* Slide caption (property name) */
    .slide-caption {
      position: absolute;
      top: 50%; left: 5%;
      transform: translateY(-50%);
      z-index: 3;
      opacity: 0;
      transition: opacity .6s .4s;
      pointer-events: none;
    }
    .slide.active .slide-caption { opacity: 1; }
    .slide-caption-label {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.75);
      margin-bottom: 6px;
    }
    .slide-caption-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
    }
    .slide-caption-loc {
      font-size: .8rem;
      color: rgba(255,255,255,.65);
      margin-top: 2px;
    }

    /* Left / Right arrows */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 52px; height: 52px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(12px);
      border: 1.5px solid rgba(255,255,255,.25);
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .25s;
    }
    .slider-arrow:hover {
      background: var(--red);
      border-color: var(--red);
      transform: translateY(-50%) scale(1.08);
    }
    .slider-arrow.prev { left: 24px; }
    .slider-arrow.next { right: 24px; }

    /* Dot indicators */
    .slider-dots {
      position: absolute;
      bottom: 155px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 8px;
    }
    .slider-dot {
      width: 8px; height: 8px;
      border-radius: 100px;
      background: rgba(255,255,255,.4);
      border: none;
      cursor: pointer;
      transition: all .35s;
      padding: 0;
    }
    .slider-dot.active {
      width: 28px;
      background: #fff;
    }

    /* â”€â”€ FLOATING SEARCH BAR (bottom of hero) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hero-search-wrap {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      width: min(900px, calc(100vw - 48px));
    }
    .search-box {
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(20px);
      border-radius: 100px;
      padding: 8px 8px 8px 12px;
      display: flex;
      align-items: stretch;
      gap: 0;
      box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.15);
    }
    .search-field {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 10px 20px;
      flex: 1;
      cursor: pointer;
      border-radius: 100px;
      transition: background .2s;
      min-width: 0;
    }
    .search-field:hover { background: rgba(0,0,0,.04); }
    .search-field label {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 3px;
      white-space: nowrap;
    }
    .search-field input,
    .search-field select {
      font-size: .88rem;
      color: var(--gray-500);
      border: none;
      outline: none;
      background: transparent;
      font-weight: 500;
      width: 100%;
      cursor: pointer;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .search-field select { appearance: none; }
    .search-divider {
      width: 1px;
      background: var(--gray-200);
      margin: 10px 0;
      flex-shrink: 0;
    }
    .search-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px; height: 52px;
      background: var(--red);
      color: #fff;
      border-radius: 50%;
      transition: all .25s;
      flex-shrink: 0;
      align-self: center;
    }
    .search-btn:hover {
      background: var(--red-dark);
      transform: scale(1.08);
      box-shadow: 0 8px 24px rgba(139,23,23,.5);
    }

    /* Stats bar below search */
    .hero-stats-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      margin-top: 14px;
    }
    .hero-stat {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.85);
    }
    .hero-stat strong {
      font-size: 1.05rem;
      font-weight: 800;
      color: #fff;
    }
    .hero-stat span {
      font-size: .78rem;
      color: rgba(255,255,255,.6);
    }
    .stat-divider {
      width: 1px;
      height: 20px;
      background: rgba(255,255,255,.2);
    }

    /* â”€â”€ SECTION UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .section    { padding: 96px 0; }
    .section-sm { padding: 60px 0; }
    .eyebrow {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
      gap: 24px;
    }
    .section-header h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -.02em;
      color: var(--dark);
      margin-top: 6px;
    }
    .section-header p { color: var(--gray-500); font-size: .95rem; margin-top: 8px; line-height: 1.6; }

    /* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      font-size: .875rem;
      padding: 12px 24px;
      border-radius: 12px;
      transition: all .25s;
      white-space: nowrap;
      text-decoration: none;
      border: 2px solid transparent;
    }
    .btn-primary {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
    }
    .btn-primary:hover {
      background: var(--red-dark);
      border-color: var(--red-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(139,23,23,.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--red);
      border-color: var(--red);
    }
    .btn-outline:hover {
      background: var(--red);
      color: #fff;
      transform: translateY(-1px);
    }
    .btn-white {
      background: #fff;
      color: var(--red);
      border-color: #fff;
    }
    .btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
    .btn-ghost {
      background: transparent;
      color: rgba(255,255,255,.8);
      border-color: rgba(255,255,255,.3);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,.1);
      color: #fff;
      border-color: rgba(255,255,255,.6);
    }
    .btn-lg { padding: 14px 28px; font-size: .95rem; }

    /* â”€â”€ PROPERTY CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .properties-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .property-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--gray-100);
      transition: all .35s cubic-bezier(.4,0,.2,1);
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }
    .property-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }
    .card-img-wrap {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
    }
    .card-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .5s cubic-bezier(.4,0,.2,1);
    }
    .property-card:hover .card-img-wrap img { transform: scale(1.07); }
    .card-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: var(--red);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 8px;
      letter-spacing: .04em;
    }
    .card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
    .card-location {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: .75rem;
      color: var(--gray-400);
      font-weight: 500;
    }
    .card-title { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.35; }
    .card-meta {
      display: flex;
      gap: 12px;
      font-size: .78rem;
      color: var(--gray-400);
      flex-wrap: wrap;
    }
    .card-meta span { display: flex; align-items: center; gap: 4px; }
    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid var(--gray-100);
    }
    .card-price { font-size: .95rem; font-weight: 800; color: var(--dark); }
    .card-price span { font-size: .78rem; font-weight: 500; color: var(--gray-400); }
    .card-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: .82rem;
      font-weight: 700;
      color: var(--dark);
    }

    /* â”€â”€ MARQUEE / DESTINATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .marquee-section {
      background: var(--gray-50);
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
      padding: 40px 0;
      overflow: hidden;
    }
    .marquee-header {
      text-align: center;
      margin-bottom: 24px;
    }
    .marquee-header .eyebrow { justify-content: center; display: flex; gap: 6px; }
    .marquee-header p { font-size: .88rem; color: var(--gray-400); margin-top: 4px; }
    .marquee-track {
      display: flex;
      gap: 12px;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    .marquee-track:hover { animation-play-state: paused; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .dest-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 18px;
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: 100px;
      font-size: .82rem;
      font-weight: 600;
      color: var(--gray-600);
      white-space: nowrap;
      transition: all .25s;
      cursor: default;
    }
    .dest-chip:hover {
      border-color: var(--red);
      color: var(--red);
      background: var(--red-light);
    }
    .dest-chip svg { color: var(--red); flex-shrink: 0; }

    /* â”€â”€ WHY SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .why-section { background: var(--off-white); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .why-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      border: 1.5px solid var(--gray-100);
      transition: all .35s;
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--red-dark));
      transform: scaleX(0);
      transition: transform .35s;
      transform-origin: left;
    }
    .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
    .why-card:hover::before { transform: scaleX(1); }
    .why-icon {
      width: 52px; height: 52px;
      background: var(--red-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--red);
      transition: all .35s;
    }
    .why-card:hover .why-icon {
      background: var(--red);
      color: #fff;
    }
    .why-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
      letter-spacing: -.01em;
    }
    .why-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

    /* â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px;
      border: 1.5px solid var(--gray-100);
      box-shadow: var(--shadow-sm);
      transition: all .35s;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-200); }
    .testimonial-stars { display: flex; gap: 3px; }
    .testimonial-text {
      font-size: .9rem;
      color: var(--gray-600);
      line-height: 1.7;
      flex: 1;
      font-style: italic;
    }
    .testimonial-text::before { content: '"'; font-size: 1.5rem; color: var(--red); line-height: 0; vertical-align: -.3em; margin-right: 4px; }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--gray-100);
    }
    .testimonial-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff;
      font-weight: 700;
      font-size: .9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .testimonial-name { font-weight: 700; font-size: .875rem; color: var(--dark); }
    .testimonial-location { font-size: .75rem; color: var(--gray-400); font-weight: 500; margin-top: 2px; }

    /* â”€â”€ HOST CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .host-cta {
      background: linear-gradient(135deg, var(--red-deeper) 0%, var(--red-dark) 50%, var(--red) 100%);
      border-radius: 24px;
      padding: 64px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 48px;
      position: relative;
      overflow: hidden;
    }
    .host-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
      background-size: 32px 32px;
    }
    .host-cta-text { position: relative; }
    .host-cta-text h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: -.02em;
    }
    .host-cta-text p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.65; max-width: 500px; }
    .host-cta-actions { display: flex; gap: 12px; flex-shrink: 0; position: relative; }

    /* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    footer {
      background: var(--red);
      color: rgba(255,255,255,.7);
      padding: 72px 0 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand .logo-wordmark { font-size: 1.45rem; }
    .footer-brand .logo-stay { color: #fff; }
    .footer-brand .logo-dekh { color: #fff; }
    .footer-brand .logo-o svg circle.lens { stroke: #fff; }
    .footer-brand .logo-o svg line.handle { stroke: #fff; }
    .footer-brand p {
      font-size: .875rem;
      line-height: 1.7;
      margin-top: 16px;
      color: rgba(255,255,255,.5);
      max-width: 260px;
    }
    .footer-col h4 {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a {
      font-size: .875rem;
      color: rgba(255,255,255,.6);
      transition: color .2s;
      font-weight: 500;
    }
    .footer-col ul a:hover { color: #fff; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
    .footer-social { display: flex; gap: 12px; }
    .footer-social a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.07);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.6);
      transition: all .25s;
    }
    .footer-social a:hover {
      background: var(--red);
      color: #fff;
    }

    /* â”€â”€ SCROLL-TO-TOP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #scroll-top {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: var(--red);
      color: #fff;
      border-radius: 50%;
      font-size: 1.1rem;
      box-shadow: var(--shadow-md);
      z-index: 999;
      opacity: 0;
      transform: translateY(12px);
      transition: all .3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #scroll-top.visible { opacity: 1; transform: translateY(0); }
    #scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }

    /* â”€â”€ REVEAL ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

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

    /* Hero content entrance */
    .hero-content > * {
      animation: fadeUp .8s ease both;
    }
    .hero-content > *:nth-child(1) { animation-delay: .3s; }
    .hero-content > *:nth-child(2) { animation-delay: .5s; }
    .hero-content > *:nth-child(3) { animation-delay: .7s; }

    /* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @media (max-width: 1024px) {
      .hero-search-wrap { width: calc(100vw - 48px); }
      .search-box { border-radius: 20px; padding: 6px; flex-wrap: wrap; }
      .search-field { flex: 1 1 40%; min-width: 140px; }
      .search-divider { display: none; }
      .search-btn {
        width: 44px; height: 44px;
        border-radius: 14px;
        align-self: center;
        margin-left: auto;
      }
      .slider-dots { bottom: 200px; }
      .hero-stats-bar { gap: 16px; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .host-cta { flex-direction: column; text-align: center; padding: 48px 32px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .nav-inner { padding: 16px 24px; }
      #navbar.nav-scrolled .nav-inner { padding: 10px 24px; }
    }
    @media (max-width: 560px) {
      .properties-grid { grid-template-columns: 1fr !important; }
    }
    @media (max-width: 768px) {
      .hero-content { padding: 80px 20px 220px; }
      .hero-headline { font-size: 2.4rem; }
      .hero-sub { font-size: .95rem; }
      .hero-search-wrap { bottom: 24px; }
      .search-box { border-radius: 16px; flex-direction: column; gap: 0; }
      .search-field {
        flex: 1 1 100%;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
        padding: 12px 16px;
      }
      .search-field:last-of-type { border-bottom: none; }
      .search-btn {
        width: calc(100% - 16px);
        height: 48px;
        border-radius: 12px;
        margin: 8px;
        justify-content: center;
        gap: 8px;
        font-size: .9rem;
        font-weight: 700;
      }
      .search-btn::after { content: ' Search'; }
      .slider-arrow { width: 40px; height: 40px; }
      .slider-arrow.prev { left: 12px; }
      .slider-arrow.next { right: 12px; }
      .slider-dots { bottom: 260px; }
      .hero-stats-bar { display: none; }
      .slide-caption { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .listings-header { flex-direction: column; align-items: flex-start !important; }
      .nav-links { display: none; }
      .host-cta-actions { flex-direction: column; width: 100%; }

      /* ── Mobile Hamburger ─────────────────────────── */
      .nav-hamburger {
        display: flex; flex-direction: column; justify-content: center;
        gap: 5px; cursor: pointer; padding: 6px; border: none; background: none;
        margin-left: 12px; color: inherit;
      }
      .nav-hamburger span {
        display: block; width: 22px; height: 2px;
        background: currentColor; border-radius: 2px; transition: all .3s;
      }
      #navbar.nav-top .nav-hamburger span { background: rgba(255,255,255,.9); }
      #navbar.nav-scrolled .nav-hamburger span { background: var(--dark); }

      /* ── Mobile Nav Drawer ────────────────────────── */
      .mobile-nav-drawer {
        display: none; flex-direction: column;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(26,10,10,.97);
        backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
        z-index: 9999; padding: 80px 32px 40px; gap: 4px;
        animation: drawerIn .25s ease;
      }
      @keyframes drawerIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
      .mobile-nav-drawer.open { display: flex; }
      .mobile-nav-drawer a {
        font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,.85);
        padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
        text-decoration: none; transition: color .2s;
      }
      .mobile-nav-drawer a:hover,
      .mobile-nav-drawer a.active { color: #fff; }
      .mobile-nav-close {
        position: absolute; top: 20px; right: 20px;
        background: rgba(255,255,255,.1); border: none; color: #fff;
        width: 42px; height: 42px; border-radius: 50%; font-size: 1.3rem;
        cursor: pointer; display: flex; align-items: center; justify-content: center;
        transition: background .2s;
      }
      .mobile-nav-close:hover { background: rgba(255,255,255,.2); }
    }
  

/* ── ADDITIONAL PAGE STYLES ──────────────────────────────── */

/* Fix base body for subpages (no opacity animation) */
body { opacity: 1 !important; }

/* btn variants */
.btn-sm { padding: 8px 16px; font-size: .8rem; border-radius: 8px; }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 14px 28px; font-size: .95rem; }

/* card-wishlist */
.card-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: all .25s;
  z-index: 2;
}
.card-wishlist:hover { background: #fff; transform: scale(1.12); }
.card-wishlist.active { background: #fff5f5; }

/* badge */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 100px; font-size: .72rem; font-weight: 700; }
.badge-gold { background: #fef3c7; color: #92400e; }
.badge-luxury { background: var(--red-light); color: var(--red); }

/* ── PROPERTY PAGE ──────────────────────────────────── */
.property-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.property-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 8px;
}
.property-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .875rem;
  color: var(--gray-500);
}
.property-meta .rating { display: flex; align-items: center; gap: 4px; font-weight: 700; color: var(--dark); }
.property-meta .sep { color: var(--gray-200); }
.property-actions { display: flex; gap: 8px; flex-shrink: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 300px;
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-grid .main-img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform .3s; }
.gallery-grid .main-img:hover { transform: scale(1.02); }
.gallery-grid > img:not(.main-img) { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform .3s; }
.gallery-grid > img:not(.main-img):hover { transform: scale(1.02); }
.gallery-more { position: relative; overflow: hidden; }
.gallery-more img { width: 100%; height: 100%; object-fit: cover; }

.property-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.property-section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 28px;
}
.property-section h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; color: var(--dark); }
.property-section p { font-size: .9rem; color: var(--gray-600); line-height: 1.75; }
.property-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.quick-stat {
  background: var(--white);
  padding: 20px 16px;
  text-align: center;
}
.quick-stat .value { font-size: 1rem; font-weight: 800; color: var(--dark); }
.quick-stat .label { font-size: .72rem; color: var(--gray-400); font-weight: 500; margin-top: 4px; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--gray-600);
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: 8px;
}

/* Booking widget */
.booking-widget {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
}
.widget-price { font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.widget-price span { font-size: .9rem; font-weight: 500; color: var(--gray-400); }
.widget-rating {
  display: flex; align-items: center; gap: 5px;
  font-size: .82rem; color: var(--gray-500);
  margin: 6px 0 16px;
}
.widget-dates {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  overflow: hidden; margin-bottom: 10px;
}
.widget-date-field {
  padding: 12px 14px;
  cursor: pointer;
}
.widget-date-field:first-child { border-right: 1px solid var(--gray-200); }
.widget-date-field label {
  display: block; font-size: .65rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 4px;
}
.widget-date-field input[type="date"] {
  border: none; outline: none; font-size: .88rem;
  color: var(--gray-600); width: 100%; background: transparent;
}
.widget-guests {
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 14px; cursor: pointer;
  position: relative;
}
.widget-guests label {
  display: block; font-size: .65rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 4px;
}
.widget-guests #guest-display { font-size: .88rem; color: var(--gray-600); font-weight: 500; }
.widget-note { font-size: .75rem; color: var(--gray-400); text-align: center; margin-top: 10px; line-height: 1.5; }
.price-breakdown { border-top: 1px solid var(--gray-100); padding-top: 14px; }
.price-row { display: flex; justify-content: space-between; font-size: .875rem; color: var(--gray-600); padding: 5px 0; }
.price-row.total { font-weight: 800; color: var(--dark); border-top: 1px solid var(--gray-200); margin-top: 6px; padding-top: 10px; font-size: .95rem; }

/* ── DASHBOARD LAYOUT ────────────────────────────────── */
.dashboard-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}
.dashboard-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar-profile {
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  text-align: center;
}
.sidebar-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  border: 3px solid rgba(255,255,255,.3);
}
.sidebar-name { font-weight: 700; color: #fff; font-size: .95rem; }
.sidebar-email { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.sidebar-nav { padding: 12px 8px; }
.sidebar-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all .2s;
  margin-bottom: 2px;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: var(--red-light);
  color: var(--red);
}

.dashboard-main { min-width: 0; }
.dashboard-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; margin-top: 32px;
}
.dashboard-header:first-child { margin-top: 0; }
.dashboard-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.stat-card.red { background: linear-gradient(135deg, var(--red-dark), var(--red)); border-color: transparent; }
.stat-card.red .label, .stat-card.red .sub { color: rgba(255,255,255,.75); }
.stat-card.red .value { color: #fff; }
.stat-card .label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); margin-bottom: 8px; }
.stat-card .value { font-size: 1.6rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-card .sub { font-size: .72rem; color: var(--gray-400); margin-top: 4px; }

/* Host listing card */
.host-listing-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-100);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.host-listing-img { width: 100px; height: 80px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.host-listing-info { flex: 1; min-width: 0; }
.host-listing-name { font-weight: 700; font-size: .95rem; color: var(--dark); margin-bottom: 4px; }
.host-listing-meta { font-size: .78rem; color: var(--gray-400); margin-bottom: 8px; }
.host-listing-actions { display: flex; gap: 8px; margin-top: 10px; }
.host-listing-stats { display: flex; gap: 20px; flex-shrink: 0; }
.hls { text-align: center; }
.hls .val { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.hls .lbl { font-size: .7rem; color: var(--gray-400); font-weight: 500; }

/* Listing status */
.listing-status { display: inline-block; font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.listing-status.live { background: #dcfce7; color: #15803d; }
.listing-status.pending { background: #fef3c7; color: #92400e; }

/* Booking list */
.booking-list { display: flex; flex-direction: column; gap: 12px; }
.booking-item {
  display: flex;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-100);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.booking-img { width: 72px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--gray-100); }
.booking-info { flex: 1; min-width: 0; }
.booking-name { font-weight: 700; font-size: .9rem; color: var(--dark); margin-bottom: 3px; }
.booking-dates { font-size: .78rem; color: var(--gray-400); margin-bottom: 6px; }
.booking-status { font-size: .72rem; font-weight: 700; }
.booking-status.pending { color: #d97706; }
.booking-status.upcoming { color: var(--red); }
.booking-status.completed { color: #16a34a; }
.booking-actions { margin-top: 8px; display: flex; gap: 8px; }
.booking-amount { font-size: 1rem; font-weight: 800; color: var(--dark); flex-shrink: 0; }

/* ── MODAL ───────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  max-width: 480px;
  width: calc(100% - 48px);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: var(--gray-200); }
.modal-title { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; }

/* ── FORM GROUPS ─────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(139,23,23,.08); }

/* ── LOGIN PAGE ──────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 40px 20px;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-title { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.auth-sub { font-size: .875rem; color: var(--gray-400); }

/* ── REVEAL-LEFT animation ───────────────────────────── */
.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* stagger children */
.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.stagger > *.visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .12s; }
.stagger > *:nth-child(3) { transition-delay: .19s; }
.stagger > *:nth-child(4) { transition-delay: .26s; }

/* ── STAR ────────────────────────────────────────────── */
.star svg, .star { display: inline-flex; align-items: center; }

/* ── RESPONSIVE: Dashboard ───────────────────────────── */
@media (max-width: 900px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .property-layout { grid-template-columns: 1fr; }
  .property-quick-stats { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 240px 120px; }
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .host-listing-card { flex-direction: column; align-items: flex-start; }
  .booking-item { flex-direction: column; align-items: flex-start; }
  .modal { padding: 24px 18px; }
}

/* ── GLOBAL MOBILE FIXES (all pages) ─────────────────── */
@media (max-width: 768px) {
  /* Container padding fix */
  .container { padding: 0 16px !important; }

  /* Scroll-top button — above floating CTA buttons */
  #scroll-top { bottom: 170px !important; right: 16px !important; width: 40px !important; height: 40px !important; font-size: .9rem !important; }

  /* Float CTA buttons smaller on mobile */
  #sd-float-cta { bottom: 80px !important; right: 14px !important; gap: 10px !important; }
  .sd-fab { width: 44px !important; height: 44px !important; }

  /* Horizontal swipe carousels — keep pan-x for swipe */
  .swipe-wrap { touch-action: pan-x pan-y; -webkit-overflow-scrolling: touch; }
  .review-grid-new { touch-action: pan-x pan-y; -webkit-overflow-scrolling: touch; }

  /* Images inside carousels — don't block touch events */
  .swipe-wrap img,
  .property-card img { pointer-events: none; user-select: none; }

  /* Prevent horizontal overflow on all pages */
  body { overflow-x: hidden; }
  section, .container { max-width: 100vw; }
}
