/* ==========================================================================
   VJ Hospitalities — Ultra-Premium Hospitality Experience
   Theme: Minimalist Monochrome Luxury (Black, White, Warm Stone, Frosted Glass)
   Typography: Outfit (Modern Geometric Sans) + Cormorant Garamond (Editorial Serif)
   ========================================================================== */

@font-face {
  font-family: "OT Magnet Arabic";
  src:
    url("../fonts/OTMagnetArabic-Black.woff2") format("woff2"),
    url("../fonts/OTMagnetArabic-Black.woff") format("woff"),
    url("../fonts/OTMagnetArabic-Black.otf") format("opentype"),
    url("../fonts/OTMagnetArabic-Black.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core Colors */
  --black: #0a0a0a;
  --black-pure: #000000;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f8f8f8;
  --bg-warm: #faf9f6;
  --bg-card: #ffffff;
  --ink: #111111;
  --ink-secondary: #4a4a4a;
  --muted: #6e6e6e;
  --muted-light: #949494;

  /* Borders & Dividers */
  --line: rgba(0, 0, 0, 0.08);
  --line-subtle: rgba(0, 0, 0, 0.04);
  --line-light: rgba(255, 255, 255, 0.15);
  --line-glow: rgba(255, 255, 255, 0.4);

  /* Shadows & Elevation */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 28px -4px rgba(0, 0, 0, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 50px -10px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 30px 70px -15px rgba(0, 0, 0, 0.18), 0 8px 24px -4px rgba(0, 0, 0, 0.06);
  --shadow-floating: 0 14px 36px rgba(0, 0, 0, 0.22);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.03);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Layout */
  --header: 84px;
  --container-max: 1440px;

  /* Typography */
  --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --display: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --track-tight: -0.025em;
  --track-normal: -0.01em;
  --track-wide: 0.08em;
  --track-caps: 0.14em;

  /* Easings */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset & Smooth Rendering */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c8c8c8;
  border-radius: 999px;
  border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
  user-select: none;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: #000000;
  color: #ffffff;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5rem;
  line-height: 1.15;
  letter-spacing: var(--track-tight);
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.16;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-secondary);
}

p:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Containers & Grid Layout */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.container.narrow {
  max-width: 800px;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 3.75rem 0;
  }
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 44rem;
}

.section-head.tight {
  margin-bottom: 0;
}

.section-head p,
.section-lead {
  color: var(--muted);
  margin: 0.5rem 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.section-lead {
  margin: 1.2rem 0 1.5rem;
  font-size: 1.12rem;
  font-weight: 300;
}

.section-head.light h2,
.section-head.light p,
.section-head.light .eyebrow {
  color: #ffffff;
}

.section-head.light p {
  opacity: 0.85;
}

.section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted) !important;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
  /* text-transform: none; */
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  padding: 0.85rem 1.5rem;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-out-expo),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn svg {
  flex-shrink: 0;
  display: block;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: #1f1f1f;
  border-color: #1f1f1f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: #f7f7f7;
  border-color: var(--black);
  color: var(--black);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.14);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
  background: #f4f4f4;
  border-color: #f4f4f4;
  color: var(--black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
  background: transparent;
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.14);
}

.btn-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Neon Glass Pill Button */
.btn-neon {
  position: relative;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.4rem 0.4rem 1.3rem;
  border: 1.5px solid rgba(220, 220, 220, 0.85);
  border-radius: var(--radius-full);
  background: #ffffff;
  color: #000000;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.03),
    0 4px 16px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}

.btn-neon:hover {
  transform: translateX(-6px);
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.28);
}

.btn-neon:active {
  transform: translateX(-3px) scale(0.98);
}

.btn-neon-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #ffffff;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition:
    transform 0.4s var(--ease-out-expo),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.btn-neon:hover .btn-neon-icon {
  background: #ffffff;
  color: #000000;
  border-color: rgba(0, 0, 0, 0.1);
  transform: translateX(-4px) scale(1.05);
}

.btn-neon-icon svg {
  display: block;
  stroke: currentColor;
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-neon:hover .btn-neon-icon svg {
  transform: translateX(-2px);
}

.btn-neon-label {
  padding-left: 0.05rem;
  white-space: nowrap;
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-neon:hover .btn-neon-label {
  transform: translateX(-4px);
}

.btn-neon-icon-only {
  flex-direction: row;
  padding: 0.35rem;
  gap: 0;
}

.btn-neon-icon-only .btn-neon-icon {
  width: 38px;
  height: 38px;
}

.btn-neon-icon-only:hover {
  transform: translateX(-4px);
}

.btn-neon-icon-only:hover .btn-neon-icon {
  transform: scale(1.08);
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #111111;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 5;
  pointer-events: auto;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease-out-expo),
    box-shadow 0.25s var(--ease-out-expo);
}

.carousel-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
  transform: translateY(0) scale(0.96);
}

.carousel-btn svg {
  display: block;
  pointer-events: none;
  transition: transform 0.25s var(--ease-out-expo);
}

.carousel-btn:hover svg {
  transform: scale(1.06);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-open {
  z-index: 1000;
}

/* Scrolled Header or Light/White Background Header */
.site-header.is-scrolled,
.site-header.is-open,
.site-header--light,
.property-detail-body .site-header,
body.light-header .site-header,
body:not(.home-page) .site-header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

.header-main {
  height: var(--header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: auto;
}

.logo-img {
  height: 42px;
  max-height: 42px;
  width: auto;
  aspect-ratio: 233 / 108;
  object-fit: contain;
  display: block;
}

.footer-logo {
  height: auto;
}

.footer-logo .logo-img {
  height: 52px !important;
  max-height: 52px !important;
  width: auto !important;
  aspect-ratio: 233 / 108;
  object-fit: contain;
}

.logo-img-light {
  display: block !important;
}

.logo-img-dark {
  display: none !important;
}

/* Show dark logo & hide light logo on scrolled header or any white-bg page header */
.site-header.is-scrolled .logo-img-light,
.site-header.is-open .logo-img-light,
.site-header--light .logo-img-light,
.property-detail-body .site-header .logo-img-light,
body.light-header .site-header .logo-img-light,
body:not(.home-page) .site-header .logo-img-light {
  display: none !important;
}

.site-header.is-scrolled .logo-img-dark,
.site-header.is-open .logo-img-dark,
.site-header--light .logo-img-dark,
.property-detail-body .site-header .logo-img-dark,
body.light-header .site-header .logo-img-dark,
body:not(.home-page) .site-header .logo-img-dark {
  display: block !important;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Nav links on top transparent header: Crisp White */
.site-nav .nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #ffffff;
  padding: 0.4rem 0.1rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s var(--ease-out-expo);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Nav links on scrolled header or any white background header: Crisp Black */
.site-header.is-scrolled .site-nav .nav-link,
.site-header.is-open .site-nav .nav-link,
.site-header--light .site-nav .nav-link,
.property-detail-body .site-header .site-nav .nav-link,
body.light-header .site-header .site-nav .nav-link,
body:not(.home-page) .site-header .site-nav .nav-link {
  color: #000000 !important;
  text-shadow: none !important;
}

.site-header.is-scrolled .site-nav .nav-link::after,
.site-header.is-open .site-nav .nav-link::after,
.site-header--light .site-nav .nav-link::after,
.property-detail-body .site-header .site-nav .nav-link::after,
body.light-header .site-header .site-nav .nav-link::after,
body:not(.home-page) .site-header .site-nav .nav-link::after {
  background: #000000 !important;
}

.site-header.is-scrolled .site-nav .nav-link:hover,
.site-header.is-scrolled .site-nav .nav-link.is-active,
.site-header--light .site-nav .nav-link:hover,
.site-header--light .site-nav .nav-link.is-active,
.property-detail-body .site-header .site-nav .nav-link:hover,
.property-detail-body .site-header .site-nav .nav-link.is-active,
body.light-header .site-header .site-nav .nav-link:hover,
body.light-header .site-header .site-nav .nav-link.is-active,
body:not(.home-page) .site-header .site-nav .nav-link:hover,
body:not(.home-page) .site-header .site-nav .nav-link.is-active {
  color: #000000 !important;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.site-header.is-scrolled .header-tools .btn-neon,
.site-header--light .header-tools .btn-neon,
.property-detail-body .site-header .header-tools .btn-neon,
body.light-header .site-header .header-tools .btn-neon,
body:not(.home-page) .site-header .header-tools .btn-neon {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  color: #000000;
}

.site-header.is-scrolled .header-tools .btn-neon:hover,
.site-header--light .header-tools .btn-neon:hover,
.property-detail-body .site-header .header-tools .btn-neon:hover,
body.light-header .site-header .header-tools .btn-neon:hover,
body:not(.home-page) .site-header .header-tools .btn-neon:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.site-header.is-scrolled .header-tools .btn-neon .btn-neon-icon svg,
.site-header--light .header-tools .btn-neon .btn-neon-icon svg,
.property-detail-body .site-header .header-tools .btn-neon .btn-neon-icon svg,
body.light-header .site-header .header-tools .btn-neon .btn-neon-icon svg,
body:not(.home-page) .site-header .header-tools .btn-neon .btn-neon-icon svg {
  stroke: currentColor;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1005;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  justify-self: end;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.5px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.nav-toggle span.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border-radius: 2px;
  pointer-events: none;
  transition:
    background 0.25s var(--ease),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s var(--ease);
  transform-origin: center;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle,
.site-header--light .nav-toggle,
.property-detail-body .site-header .nav-toggle,
body.light-header .site-header .nav-toggle,
body:not(.home-page) .site-header .nav-toggle {
  border-color: rgba(0, 0, 0, 0.15) !important;
  background: #f4f4f4 !important;
}

.site-header.is-scrolled .nav-toggle span:not(.sr-only),
.site-header.is-open .nav-toggle span:not(.sr-only),
.site-header--light .nav-toggle span:not(.sr-only),
.property-detail-body .site-header .nav-toggle span:not(.sr-only),
body.light-header .site-header .nav-toggle span:not(.sr-only),
body:not(.home-page) .site-header .nav-toggle span:not(.sr-only) {
  background: #000000 !important;
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-open .nav-toggle span:nth-child(4) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section & Cinematic Slider
   ========================================================================== */

.hero {
  position: relative;
  height: 90vh;
  height: 90dvh;
  min-height: 640px;
  max-height: 960px;
  display: grid;
  align-items: flex-end;
  padding: calc(var(--header) + 2rem) 0 3rem;
  overflow: hidden;
  color: #ffffff;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: #111111;
  opacity: 0;
  transition: opacity 1.2s var(--ease-in-out);
  z-index: 0;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  transform: scale(1.08);
  transition: transform 9s linear;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-slide.is-leaving {
  opacity: 0;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Hero AI Search & Luxury Booking Engine
   ========================================================================== */

.hero-search {
  display: grid;
  gap: 1.2rem;
  width: min(100%, 960px);
  margin-inline: auto;
}

/* AI Search floating bar */
.ai-search {
  position: relative;
  display: grid;
  gap: 0.4rem;
}

.ai-search-badge {
  position: absolute;
  top: -0.65rem;
  left: 1.4rem;
  z-index: 2;
  padding: 0.3rem 0.95rem;
  border-radius: var(--radius-full);
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.ai-search-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.ai-search-bar:focus-within {
  background: #ffffff;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.28),
    0 0 0 2px #000000;
}

.ai-search-bar input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--ink);
  padding: 0.6rem 0;
}

.ai-search-bar input::placeholder {
  color: #8c8c8c;
  font-weight: 400;
}

.ai-search-btn {
  flex-shrink: 0;
}

.ai-search-note {
  margin: 0;
  text-align: right;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  padding-right: 0.5rem;
}

/* Booking Panel */
/* ==========================================================================
   Ixigo-Inspired Sleek Compact Booking Engine (1-Line on Desktop)
   ========================================================================== */

.ixigo-booking-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 0.95rem 1.25rem 1.15rem;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  color: #111111;
  text-align: left;
}

/* Top Bar: Stay Switch (Left) & Filter Chips (Right) */
.booking-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.stay-type-switch {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 30px;
  padding: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}

.stay-tab {
  border: 0;
  background: transparent;
  padding: 0.35rem 1rem;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.stay-tab.is-active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.booking-card-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.card-filters-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  flex-shrink: 0;
}

.card-filter-chips {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.card-filter-chips .filter-chip {
  padding: 0.26rem 0.75rem;
  font-size: 0.78rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.card-filter-chips .filter-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.card-filter-chips .filter-chip:hover {
  border-color: #94a3b8;
}

.card-filter-chips .filter-chip.is-active,
.card-filter-chips .filter-chip:has(input:checked) {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* 1-Line Booking Bar on Desktop */
.booking-card-bar {
  display: grid;
  grid-template-columns: 1.15fr 1.45fr 1.25fr auto;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  padding: 4px;
  gap: 0;
  align-items: stretch;
}

.booking-card-col {
  display: flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border-right: 1px solid #f1f5f9;
  gap: 0.65rem;
  transition: background 0.2s ease;
  border-radius: 10px;
  min-width: 0;
}

.booking-card-col:hover,
.booking-card-col:focus-within {
  background: #f8fafc;
}

.booking-card-col.booking-col-btn {
  border-right: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: stretch;
}

.card-col-icon {
  color: #0f172a;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.card-col-field {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.card-col-label {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 0.1rem;
}

.card-col-select {
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0.94rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

.btn-near-me {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: all 0.2s ease;
}

.btn-near-me:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  transform: scale(1.06);
}

/* Dates */
.card-dates-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-date-input {
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

.card-date-sep {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Guests & Rooms */
.card-guests-field {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.card-sub-select {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-bullet-sep {
  color: #cbd5e1;
  font-weight: bold;
  font-size: 1rem;
}

/* Search Button */
.card-btn-search {
  width: 100%;
  min-width: 165px;
  height: 100%;
  min-height: 48px;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 10px;
  background: var(--black, #0a0a0a);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
}

.card-btn-search:hover {
  background: #222222;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
}

.card-btn-search:active {
  transform: translateY(0);
}

/* ==========================================================================
   Featured Properties Rail (Aashika, Ishita, Viaan, Vianca)
   ========================================================================== */

.featured {
  background: var(--bg);
}

.featured .section-row {
  align-items: flex-end;
  margin-bottom: 2rem;
}

.featured .section-head.tight p {
  margin: 0.4rem 0 0;
  max-width: 52ch;
}

.property-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3.75rem) / 3.5);
  gap: 1.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
  padding-top: 0.5rem;
  padding-inline: 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.property-rail::-webkit-scrollbar {
  display: none;
}

.property-card {
  scroll-margin-top: calc(var(--header) + 16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    border-color 0.4s var(--ease);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 0, 0, 0.14);
}

.property-card-media {
  position: relative;
  background: #e8e8e8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  min-height: 240px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.card-carousel-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.card-carousel-track img,
.card-carousel-track video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 0.4s ease,
    transform 0.8s var(--ease-out-expo);
  pointer-events: none;
}

.card-carousel-track img.is-active,
.card-carousel-track video.is-active {
  opacity: 1;
  z-index: 1;
}

.property-card:hover .card-carousel-track img.is-active,
.property-card:hover .card-carousel-track video.is-active {
  transform: scale(1.05);
}

.card-carousel-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.card-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  transition:
    background 0.3s var(--ease),
    width 0.35s var(--ease-out-expo),
    transform 0.3s var(--ease-out-expo);
}

.card-dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.card-dot.is-active {
  width: 18px;
  background: #ffffff;
}

.property-card-body {
  padding: 1.25rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
  background: var(--white);
}

.property-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.property-card-title {
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: var(--track-tight);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.92rem;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.property-location {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.3;
}

.property-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.2rem;
  padding-bottom: 0.25rem;
}

.property-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.rating-badge {
  background: #0f172a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.46rem;
  border-radius: 6px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  display: inline-block;
}

.rating-text {
  font-size: 0.84rem;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
}

.rating-dot {
  color: #94a3b8;
  font-weight: 700;
  margin: 0 1px;
}

.property-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  text-align: right;
  flex-shrink: 0;
}

.property-price .price-val {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1;
}

.property-card-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.property-card-actions .btn {
  flex: 1;
}

.btn-airbnb-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-airbnb-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.btn-airbnb-logo::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.6rem);
  transform: translateX(-50%) translateY(4px);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-xs);
  background: #111111;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 20;
}

.btn-airbnb-logo::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.25rem);
  transform: translateX(-50%) translateY(4px);
  border: 5px solid transparent;
  border-top-color: #111111;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 20;
}

.btn-airbnb-logo:hover,
.btn-airbnb-logo:focus-visible {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.18);
}

.btn-airbnb-logo:hover::after,
.btn-airbnb-logo:focus-visible::after,
.btn-airbnb-logo:hover::before,
.btn-airbnb-logo:focus-visible::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   Looking For / Escape Grid
   ========================================================================== */

.escapes {
  background: var(--bg-warm);
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}

.escapes .carousel-nav {
  display: none;
}

.escape-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.escape-card {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  color: #ffffff;
  background: var(--img) center / cover no-repeat, #1a1a1a;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: var(--track-tight);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo);
}

.escape-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0.88) 100%);
  transition: background 0.4s ease;
}

.escape-card>span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s var(--ease);
}

.escape-card>span::after {
  content: "→";
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.escape-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.escape-card:hover::before {
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.92) 100%);
}

.escape-card:hover>span {
  transform: translateX(4px);
}

.escape-card:hover>span::after {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   About The Brand Section (Editorial Architecture Layout)
   ========================================================================== */

.about-brand {
  background: var(--bg);
  padding: 5.5rem 0 0;
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}

.about-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

.about-title-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-headline {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: var(--track-tight);
  margin: 0;
  color: var(--black);
}

.about-desc-block {
  display: flex;
  align-items: center;
}

.about-desc {
  font-family: var(--font);
  color: var(--ink-secondary);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
  max-width: 48ch;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid var(--line);
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-square {
  width: 9px;
  height: 9px;
  background: var(--black);
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.85;
}

.stat-text {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  line-height: 1.3;
}

.stat-text strong {
  font-weight: 700;
  color: var(--black);
}

.about-visual-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  border-bottom: none;
  background: var(--black);
  aspect-ratio: 16 / 8.5;
  max-height: 560px;
  display: block;
  margin-bottom: 0;
}

.about-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-visual-wrap:hover .about-visual-img {
  transform: scale(1.02);
}

/* ==========================================================================
   Nearby Attractions Section
   ========================================================================== */

.attractions {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}

.attractions .carousel-nav {
  display: none;
}

.attractions .section-row {
  margin-bottom: 2rem;
}

.attractions-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  overflow: visible;
}

.attraction-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    border-color 0.4s var(--ease);
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 0, 0, 0.15);
}

.attraction-media {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 240px;
  background: var(--img) center / cover no-repeat, #ddd;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0.85rem 1.35rem;
  color: #ffffff;
}

.attraction-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.45) 65%, rgba(0, 0, 0, 0.88) 100%);
  transition: background 0.35s ease;
}

.attraction-card:hover .attraction-media::before {
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.94) 100%);
}

.attraction-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  max-width: 14ch;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.attraction-region {
  position: relative;
  z-index: 1;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.attraction-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.75rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
  transition: background 0.25s var(--ease);
}

.attraction-count {
  font-weight: 400;
  color: var(--ink-secondary);
}

.attraction-count strong {
  font-weight: 700;
  color: var(--black);
}

.attraction-arrow {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--black);
  transition: transform 0.25s var(--ease);
}

.attraction-card:hover .attraction-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Testimonials / Reviews Section
   ========================================================================== */

.reviews {
  background: var(--bg);
}

.reviews .section-row {
  margin-bottom: 2rem;
}

.reviews-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 1.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  padding-top: 0.5rem;
  padding-inline: 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-rail::-webkit-scrollbar {
  display: none;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  background: var(--white);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s var(--ease-out-expo),
    border-color 0.35s var(--ease);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 0, 0, 0.15);
}

.review-card .stars {
  margin: 0;
  letter-spacing: 0.14em;
  color: #111111;
  font-size: 0.95rem;
}

.review-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
}

.review-card strong {
  margin-top: auto;
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}

.review-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==========================================================================
   Blogs Section
   ========================================================================== */

.blog {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-subtle);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    border-color 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 0, 0, 0.15);
}

.blog-media {
  min-height: 220px;
  background: var(--img) center / cover no-repeat, var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo);
}

.blog-card:hover .blog-media {
  transform: scale(1.04);
}

.blog-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.blog-body .meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}

.blog-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: var(--track-tight);
}

.blog-body p {
  color: var(--ink-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.blog-body a {
  margin-top: auto;
  padding-top: 0.6rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-body a::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.blog-body a:hover::after {
  transform: translateX(4px);
}

/* ==========================================================================
   Showcase CTA Banner (All-in-One Stay Experience)
   ========================================================================== */

.showcase-cta {
  background: #f8f8f8;
  padding: 5.5rem 0 0;
  overflow: hidden;
  position: relative;
  color: var(--ink);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.showcase-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.showcase-cta-header {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-cta-header .eyebrow {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  /* text-transform: uppercase; */
  /* color: #ea580c; */
  margin-bottom: 0.6rem;
}

.showcase-cta-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.showcase-desc {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.6;
  margin: 1rem 0 1.8rem;
  max-width: 620px;
}

.showcase-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-icon-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: visible;
  flex-shrink: 0;
  transition:
    transform 0.25s var(--ease-out-expo),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn-icon-cta svg {
  flex-shrink: 0;
  display: block;
}

.btn-icon-cta:hover {
  transform: translateY(-3px) scale(1.06);
}

.btn-icon-cta:active {
  transform: translateY(0) scale(0.96);
}

/* Tooltip on hover/focus */
.btn-icon-cta::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.65rem);
  transform: translateX(-50%) translateY(5px);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-xs, 6px);
  background: #111111;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 30;
}

.btn-icon-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.35rem);
  transform: translateX(-50%) translateY(5px);
  border: 5px solid transparent;
  border-top-color: #111111;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 30;
}

.btn-icon-cta:hover::after,
.btn-icon-cta:hover::before,
.btn-icon-cta:focus-visible::after,
.btn-icon-cta:focus-visible::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.btn-icon-cta.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-icon-cta.btn-primary:hover {
  background: #1f1f1f;
  border-color: #1f1f1f;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.btn-icon-cta.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn-icon-cta.btn-secondary:hover {
  background: #f8f8f8;
  border-color: var(--black);
  color: var(--black);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.btn-icon-cta.btn-whatsapp-cta {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-icon-cta.btn-whatsapp-cta:hover {
  background: #22bf5b;
  border-color: #22bf5b;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.showcase-phones-fan {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 1160px;
  margin: 1.5rem auto 0;
  height: 530px;
  overflow: hidden;
  margin-bottom: -80px;
}

.showcase-phones-fan::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(250, 246, 240, 0) 0%, rgba(250, 246, 240, 0.95) 100%);
  pointer-events: none;
  z-index: 10;
}

.mockup-phone {
  width: 235px;
  height: 500px;
  border-radius: 36px;
  border: 4.5px solid #1e293b;
  background: #0f172a;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease);
  position: relative;
  user-select: none;
}

.phone-center {
  transform: translateY(0) scale(1.05);
  z-index: 5;
  margin: 0 -10px;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.22);
}

.phone-center:hover {
  transform: translateY(-8px) scale(1.07);
}

.phone-left {
  transform: rotate(-9deg) translateY(24px) scale(0.95);
  z-index: 4;
  margin: 0 -22px;
}

.phone-right {
  transform: rotate(9deg) translateY(24px) scale(0.95);
  z-index: 4;
  margin: 0 -22px;
}

.phone-far-left {
  transform: rotate(-18deg) translateY(64px) scale(0.85);
  z-index: 3;
  margin: 0 -24px;
  opacity: 0.92;
}

.phone-far-right {
  transform: rotate(18deg) translateY(64px) scale(0.85);
  z-index: 3;
  margin: 0 -24px;
  opacity: 0.92;
}

.phone-screen {
  width: 100%;
  height: 100%;
  padding: 0.75rem 0.8rem;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  text-align: left;
  box-sizing: border-box;
}

.phone-screen-primary {
  background: linear-gradient(180deg, #f97316 0%, #ea580c 46%, #ffffff 47%, #ffffff 100%);
}

.phone-screen-amber {
  background: linear-gradient(180deg, #ea580c 0%, #c2410c 38%, #ffffff 39%, #ffffff 100%);
}

.phone-screen-amazon {
  background: linear-gradient(180deg, #131921 0%, #232f3e 42%, #ffffff 43%, #ffffff 100%);
}

.phone-screen-flipkart {
  background: linear-gradient(180deg, #1e40af 0%, #2563eb 42%, #ffffff 43%, #ffffff 100%);
}

.phone-screen-mmt {
  background: linear-gradient(180deg, #991b1b 0%, #dc2626 42%, #ffffff 43%, #ffffff 100%);
}

.phone-screen-swiggy {
  background: linear-gradient(180deg, #c2410c 0%, #ea580c 42%, #ffffff 43%, #ffffff 100%);
}

.phone-sub-amazon {
  color: #ff9900 !important;
}

.phone-sub-flipkart {
  color: #ffe500 !important;
}

.phone-sub-mmt {
  color: #fca5a5 !important;
}

.phone-sub-swiggy {
  color: #fdba74 !important;
}

/* Voucher / Gift Card Layout */
.phone-voucher-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.voucher-card-top {
  padding: 0.8rem 0.85rem;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 98px;
}

.voucher-top-amazon {
  background: linear-gradient(135deg, #131921 0%, #232f3e 100%);
  border-bottom: 3px solid #ff9900;
}

.voucher-top-flipkart {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  border-bottom: 3px solid #ffe500;
}

.voucher-top-mmt {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
  border-bottom: 3px solid #f87171;
}

.voucher-top-swiggy {
  background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
  border-bottom: 3px solid #fb923c;
}

.voucher-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voucher-brand-name {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.voucher-chip-badge {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.voucher-val-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.65rem;
}

.voucher-amount {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
}

.voucher-type {
  font-size: 0.62rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.voucher-card-body {
  padding: 0.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #ffffff;
}

.voucher-code-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.05em;
}

.voucher-code-pill span {
  color: #64748b;
  font-weight: 600;
  font-size: 0.58rem;
  background: #e2e8f0;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.voucher-desc {
  font-size: 0.66rem;
  color: #64748b;
  line-height: 1.3;
  margin: 0;
  font-weight: 500;
}

.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.phone-user-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.phone-user-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.18);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
}

.phone-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  color: #ea580c;
  font-weight: 800;
  font-size: 0.64rem;
  display: grid;
  place-items: center;
}

.phone-user-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #ffffff;
}

.phone-badge-coin {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.phone-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.15rem 0 0.55rem;
  line-height: 1.2;
}

.phone-grid-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  background: #ffffff;
  padding: 0.55rem 0.35rem;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  margin-bottom: 0.55rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.phone-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.phone-action-item .action-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff7ed;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.phone-action-item span {
  font-size: 0.6rem;
  font-weight: 600;
  color: #334155;
  text-align: center;
  line-height: 1.15;
}

.phone-deal-banner {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 12px;
  padding: 0.5rem 0.65rem;
}

.phone-deal-tag {
  font-size: 0.64rem;
  font-weight: 700;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.phone-deal-banner p {
  font-size: 0.63rem;
  color: #475569;
  line-height: 1.25;
  margin: 0;
  font-weight: 500;
}

.phone-head-simple {
  margin: 0.25rem 0 0.6rem;
  color: #ffffff;
}

.phone-head-simple .phone-sub {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
  display: block;
}

.phone-head-simple h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0.15rem 0 0;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.phone-card-preview {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.phone-card-preview img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  display: block;
}

.phone-card-info {
  padding: 0.7rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.phone-card-info strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.phone-card-info span {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .showcase-phones-fan {
    transform: scale(0.94);
    transform-origin: bottom center;
    margin-top: 1rem;
    margin-bottom: -70px;
  }
}

@media (max-width: 992px) {
  .showcase-phones-fan {
    transform: none;
    height: 490px;
    margin-bottom: -60px;
    max-width: 720px;
  }

  .phone-far-left,
  .phone-far-right {
    display: none;
  }

  .mockup-phone {
    width: 220px;
    height: 480px;
  }

  .phone-left {
    transform: rotate(-7deg) translateY(20px) scale(0.94);
    margin: 0 -18px;
  }

  .phone-right {
    transform: rotate(7deg) translateY(20px) scale(0.94);
    margin: 0 -18px;
  }

  .phone-center {
    transform: translateY(0) scale(1.03);
    margin: 0 -8px;
  }
}

@media (max-width: 768px) {
  .showcase-cta {
    padding: 4.5rem 0 0;
  }

  .showcase-phones-fan {
    height: 440px;
    margin-bottom: -50px;
    max-width: 600px;
  }

  .mockup-phone {
    width: 195px;
    height: 430px;
    border-radius: 28px;
    border-width: 3.5px;
  }

  .phone-screen {
    padding: 0.6rem 0.65rem;
  }

  .phone-left {
    transform: rotate(-6deg) translateY(16px) scale(0.92);
    margin: 0 -14px;
  }

  .phone-right {
    transform: rotate(6deg) translateY(16px) scale(0.92);
    margin: 0 -14px;
  }

  .phone-center {
    transform: translateY(0) scale(1.02);
    margin: 0 -6px;
  }

  .voucher-card-top {
    min-height: 82px;
    padding: 0.6rem 0.65rem;
  }

  .voucher-amount {
    font-size: 1.15rem;
  }

  .voucher-brand-name {
    font-size: 0.74rem;
  }

  .voucher-card-body {
    padding: 0.55rem 0.65rem;
  }

  .phone-head-simple h4 {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .showcase-cta {
    padding: 3.5rem 0 0;
  }

  .showcase-cta-header .eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .showcase-desc {
    font-size: 0.92rem;
    margin: 0.75rem 0 1.25rem;
    padding: 0 0.5rem;
  }

  .showcase-phones-fan {
    height: 470px;
    margin-bottom: -40px;
    width: 100%;
    padding: 0 1rem;
  }

  .showcase-phones-fan::after {
    height: 45px;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .mockup-phone {
    width: 100%;
    max-width: 260px;
    height: 460px;
    border-radius: 32px;
    border-width: 4px;
  }

  .phone-center {
    transform: none !important;
    margin: 0 auto !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  }

  .phone-center:hover {
    transform: translateY(-4px) !important;
  }

  .phone-screen {
    padding: 0.7rem 0.75rem;
  }

  .phone-grid-actions {
    gap: 0.25rem;
    padding: 0.45rem 0.25rem;
    border-radius: 12px;
  }

  .phone-action-item .action-icon {
    width: 26px;
    height: 26px;
    font-size: 0.82rem;
    border-radius: 6px;
  }

  .phone-action-item span {
    font-size: 0.56rem;
  }

  .phone-title {
    font-size: 0.92rem;
    margin: 0.1rem 0 0.45rem;
  }

  .phone-deal-banner {
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
  }

  .phone-deal-banner p {
    font-size: 0.6rem;
  }
}

@media (max-width: 360px) {
  .mockup-phone {
    max-width: 235px;
    height: 430px;
    border-radius: 26px;
  }

  .showcase-phones-fan {
    height: 440px;
    margin-bottom: -35px;
  }

  .phone-screen {
    padding: 0.55rem 0.6rem;
  }

  .phone-user-tag {
    font-size: 0.65rem;
  }

  .phone-badge-coin {
    font-size: 0.62rem;
    padding: 0.15rem 0.45rem;
  }

  .phone-title {
    font-size: 0.86rem;
  }

  .phone-action-item .action-icon {
    width: 24px;
    height: 24px;
    font-size: 0.76rem;
  }

  .phone-action-item span {
    font-size: 0.52rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.8);
  padding: 4.5rem 0 6rem;
  position: relative;
}

.footer-inner {
  display: grid;
  gap: 2.5rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-social-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

.footer-logo-social {
  margin-top: 0;
}

.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem;
  font-weight: 500;
  font-size: 0.82rem;
  cursor: pointer;
  margin-top: 0.35rem;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.footer-back-top:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.social-row a:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   Footer Categorized Directory Menu
   ========================================================================== */

.footer-directory {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.2rem 1.5rem;
  /* padding: 2.5rem 0 1rem; */
  /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
}

.footer-dir-col {
  display: flex;
  flex-direction: column;
}

.footer-dir-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.footer-accordion-icon {
  display: none;
}

.footer-dir-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-dir-list li {
  margin: 0;
  padding: 0;
}

.footer-dir-list a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-dir-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .footer-directory {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.75rem;
  }
}

@media (max-width: 640px) {
  .footer-directory {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 1.2rem;
  }
}

@media (max-width: 420px) {
  .footer-directory {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  font-weight: 400;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 5.5rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
}

.footer-legal a,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Enquiry Modal Dialog
   ========================================================================== */

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeIn 0.3s var(--ease);
}

.modal-dialog {
  position: relative;
  width: min(100%, 460px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-xl);
  animation: modalPopIn 0.35s var(--ease-out-expo);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  border: 0;
  background: #f4f4f4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.modal-close:hover {
  background: #000000;
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-dialog h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.modal-property {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.enquiry-form {
  display: grid;
  gap: 1.1rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.enquiry-form input,
.enquiry-form textarea {
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  background: #f9f9f9;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: #000000;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.modal-actions .btn {
  flex: 1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

/* ==========================================================================
   Floating Quick Action Buttons
   ========================================================================== */

.float-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: var(--shadow-floating);
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s var(--ease-out-expo);
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.float-btn:active {
  transform: translateY(0) scale(0.96);
}

.float-airbnb {
  padding: 0;
  background: linear-gradient(135deg, #FF385C, #E61E4D);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.float-airbnb svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  display: block;
}

.btn-airbnb-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  color: #FF385C;
  flex-shrink: 0;
}

.btn-airbnb-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 56, 92, 0.25);
  background: #FFF0F2;
}

.btn-airbnb-logo svg {
  display: block;
}

.float-call {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.float-call:hover {
  background: #000000;
}

.float-whatsapp {
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Keyframes & Animations
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1200px) {
  .property-rail {
    grid-auto-columns: calc((100% - 3.75rem) / 3.5);
  }

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

@media (max-width: 992px) {
  :root {
    --header: 72px;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-tools {
    display: none !important;
  }

  .nav-cta-mobile {
    display: inline-flex !important;
  }

  .nav-toggle {
    display: flex !important;
    z-index: 1005;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.4s var(--ease-out-expo),
      opacity 0.35s var(--ease),
      visibility 0.4s;
  }

  .site-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav .nav-link {
    opacity: 0;
    transform: translateY(16px);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--black) !important;
    text-shadow: none !important;
    transition:
      color 0.25s var(--ease),
      opacity 0.35s var(--ease),
      transform 0.35s var(--ease-out-expo);
  }

  .site-nav.is-open .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open .nav-link:nth-child(1) {
    transition-delay: 0.06s;
  }

  .site-nav.is-open .nav-link:nth-child(2) {
    transition-delay: 0.10s;
  }

  .site-nav.is-open .nav-link:nth-child(3) {
    transition-delay: 0.14s;
  }

  .site-nav.is-open .nav-link:nth-child(4) {
    transition-delay: 0.18s;
  }

  .site-nav.is-open .nav-link:nth-child(5) {
    transition-delay: 0.22s;
  }

  .site-nav.is-open .nav-link:nth-child(6) {
    transition-delay: 0.26s;
  }

  .site-nav .nav-cta-mobile {
    opacity: 0;
    transform: translateY(16px);
    margin-top: 0.5rem;
    transition:
      opacity 0.35s var(--ease) 0.3s,
      transform 0.35s var(--ease-out-expo) 0.3s;
  }

  .site-nav.is-open .nav-cta-mobile {
    opacity: 1;
    transform: translateY(0);
  }

  .about-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem 0 1.5rem;
  }

  .about-visual-wrap {
    aspect-ratio: 16 / 10;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-panels {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .property-rail {
    grid-auto-columns: calc((100% - 2.5rem) / 2.5);
  }

  .escape-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-fields {
    grid-template-columns: 1fr 1fr;
  }

  .booking-field-dates {
    grid-column: 1 / -1;
  }

  .booking-field {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .booking-filters {
    flex-wrap: wrap;
  }

  .booking-submit {
    margin-left: auto;
    width: auto;
  }
}

.nav-cta-mobile {
  display: none;
}

@media (max-width: 768px) {

  .site-header {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
  }

  .site-header .logo-img-light {
    display: none !important;
  }

  .site-header .logo-img-dark {
    display: block !important;
    height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    aspect-ratio: 233 / 108 !important;
    object-fit: contain !important;
  }

  .site-header .nav-toggle {
    border-color: rgba(0, 0, 0, 0.15) !important;
    background: #f4f4f4 !important;
  }

  .site-header .nav-toggle span:not(.sr-only) {
    background: #000000 !important;
  }

  .hero-slider,
  .hero-shade,
  .ai-search {
    display: none !important;
  }

  .hero {
    background: #f8fafc;
    height: auto;
    min-height: auto;
    max-height: none;
    border-radius: 0;
    padding: calc(var(--header) + 1.25rem) 0 2rem;
    color: var(--ink);
  }

  .hero-search {
    gap: 0;
    max-width: 520px;
  }

  .ixigo-booking-card {
    padding: 0.75rem 0.85rem 0.85rem;
    border-radius: 16px;
  }

  .booking-card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
  }

  .stay-type-switch {
    margin-bottom: 0;
  }

  .stay-tab {
    padding: 0.25rem 0.85rem;
    font-size: 0.76rem;
  }

  .booking-card-bar {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
  }

  .booking-card-col {
    padding: 0.5rem 0.75rem;
    border-right: 0;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0;
    gap: 0.6rem;
  }

  .booking-card-col.booking-col-btn {
    border-bottom: 0;
    padding: 0.65rem 0 0;
  }

  .card-col-icon svg {
    width: 16px;
    height: 16px;
  }

  .card-col-label {
    font-size: 0.58rem;
  }

  .card-col-select,
  .card-date-input {
    font-size: 0.88rem;
  }

  .btn-near-me {
    width: 30px;
    height: 30px;
    padding: 0;
  }

  .card-btn-search {
    width: 100%;
    height: 44px;
    min-height: 44px;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  /* Section Heads Mobile: Show only heading & position arrows on left and right of cards */
  .featured .section-head .eyebrow,
  .featured .section-head p,
  .escapes .section-head .eyebrow,
  .escapes .section-head p,
  .attractions .section-head .eyebrow,
  .attractions .section-head p,
  .reviews .section-head .eyebrow,
  .reviews .section-head p {
    display: none !important;
  }

  .featured .section-head h2,
  .escapes .section-head h2,
  .attractions .section-head h2,
  .reviews .section-head h2 {
    margin: 0 !important;
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .featured .section-row,
  .escapes .section-row,
  .attractions .section-row,
  .reviews .section-row {
    margin-bottom: 0.85rem !important;
  }

  .featured .container,
  .escapes .container,
  .attractions .container,
  .reviews .container {
    position: relative;
  }

  .featured .carousel-nav,
  .escapes .carousel-nav,
  .attractions .carousel-nav,
  .reviews .carousel-nav {
    position: static;
    display: contents;
  }

  .featured .carousel-btn[data-properties-prev],
  .featured .carousel-btn[data-properties-next],
  .escapes .carousel-btn[data-escapes-prev],
  .escapes .carousel-btn[data-escapes-next],
  .attractions .carousel-btn[data-attractions-prev],
  .attractions .carousel-btn[data-attractions-next],
  .reviews .carousel-btn[data-reviews-prev],
  .reviews .carousel-btn[data-reviews-next] {
    position: absolute;
    top: calc(50% + 20px);
    transform: translateY(-50%);
    z-index: 30;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1.5px solid rgba(0, 0, 0, 0.14) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
  }

  .featured .carousel-btn[data-properties-prev],
  .escapes .carousel-btn[data-escapes-prev],
  .attractions .carousel-btn[data-attractions-prev],
  .reviews .carousel-btn[data-reviews-prev] {
    left: 8px !important;
  }

  .featured .carousel-btn[data-properties-next],
  .escapes .carousel-btn[data-escapes-next],
  .attractions .carousel-btn[data-attractions-next],
  .reviews .carousel-btn[data-reviews-next] {
    right: 8px !important;
  }

  .featured .carousel-btn svg,
  .escapes .carousel-btn svg,
  .attractions .carousel-btn svg,
  .reviews .carousel-btn svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #0f172a !important;
    stroke-width: 2.2 !important;
    fill: none !important;
    display: block !important;
    pointer-events: none !important;
    flex-shrink: 0 !important;
  }

  .featured .carousel-btn:active,
  .escapes .carousel-btn:active,
  .attractions .carousel-btn:active,
  .reviews .carousel-btn:active {
    background: #0f172a !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(0.92) !important;
  }

  .featured .carousel-btn:active svg,
  .escapes .carousel-btn:active svg,
  .attractions .carousel-btn:active svg,
  .reviews .carousel-btn:active svg {
    stroke: #ffffff !important;
  }

  /* Property Rail - Generous card width so all details fit completely */
  .property-rail {
    grid-auto-columns: min(340px, 86vw) !important;
    gap: 1rem !important;
    padding-inline: 0.5rem !important;
  }

  .property-card {
    min-width: 0;
  }

  .property-card-body {
    padding: 1.15rem 1.15rem 1.25rem !important;
    gap: 0.4rem !important;
  }

  .property-card-title {
    font-size: 1.25rem !important;
    white-space: normal !important;
  }

  .property-meta-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }

  .property-rating-box {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    flex-shrink: 0 !important;
  }

  .rating-text {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  }

  .property-price {
    display: inline-flex !important;
    align-items: baseline !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  .property-price .price-val {
    font-size: 1.3rem !important;
    white-space: nowrap !important;
  }

  .property-card-actions {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    margin-top: 0.4rem !important;
  }

  .property-card-actions .btn {
    flex: 1 !important;
    height: 42px !important;
    padding: 0 0.9rem !important;
    font-size: 0.88rem !important;
  }

  .btn-airbnb-logo {
    width: 42px !important;
    height: 42px !important;
    flex-shrink: 0 !important;
  }

  .escape-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: min(285px, 80vw) !important;
    gap: 1rem !important;
    overflow-x: auto !important;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.25rem 0.5rem 0.75rem !important;
    scroll-behavior: smooth;
    grid-template-columns: none !important;
  }

  .escape-grid::-webkit-scrollbar {
    display: none;
  }

  .escape-card {
    min-height: 270px !important;
    height: 270px !important;
    flex-shrink: 0;
  }

  .attractions-rail {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: min(260px, 76vw) !important;
    gap: 1rem !important;
    overflow-x: auto !important;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.25rem 0.5rem 0.75rem !important;
    scroll-behavior: smooth;
    grid-template-columns: none !important;
  }

  .attractions-rail::-webkit-scrollbar {
    display: none;
  }

  .attraction-card {
    min-width: 0;
    flex-shrink: 0;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-brand-wrap {
    width: 100%;
    align-items: flex-start;
    gap: 1.25rem;
  }

  /* Mobile Footer Accordion */
  .footer-directory {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-dir-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-dir-title {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1.05rem 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .footer-accordion-icon {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    stroke: rgba(255, 255, 255, 0.6) !important;
    stroke-width: 2.2 !important;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), stroke 0.3s ease !important;
    pointer-events: none !important;
    flex-shrink: 0 !important;
  }

  .footer-dir-col.is-open .footer-accordion-icon {
    transform: rotate(180deg) !important;
    stroke: #ffffff !important;
  }

  .footer-dir-list {
    display: none !important;
    padding: 0 0 1.25rem 0.25rem !important;
    gap: 0.85rem !important;
  }

  .footer-dir-col.is-open .footer-dir-list {
    display: flex !important;
    animation: footerAccordionSlideDown 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
  }

  @keyframes footerAccordionSlideDown {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }

  .float-actions {
    right: 1rem;
    bottom: 1rem;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: calc(var(--header) + 0.85rem) 0 1.5rem;
  }

  .ixigo-booking-card {
    padding: 0.6rem 0.65rem 0.65rem;
    border-radius: 15px;
  }

  .booking-card-col {
    padding: 0.42rem 0.55rem;
    gap: 0.5rem;
  }

  .booking-card-col.booking-col-btn {
    padding: 0.55rem 0 0;
  }

  .card-col-select,
  .card-date-input {
    font-size: 0.84rem;
  }

  .card-filters-label {
    font-size: 0.68rem;
  }

  .card-filter-chips .filter-chip {
    padding: 0.18rem 0.55rem;
    font-size: 0.72rem;
  }

  .card-btn-search {
    height: 42px;
    min-height: 42px;
    font-size: 0.92rem;
  }

  .property-rail {
    grid-auto-columns: min(315px, 86vw) !important;
    gap: 0.85rem !important;
  }

  .featured .carousel-btn[data-properties-prev],
  .escapes .carousel-btn[data-escapes-prev],
  .attractions .carousel-btn[data-attractions-prev],
  .reviews .carousel-btn[data-reviews-prev] {
    left: 4px !important;
  }

  .featured .carousel-btn[data-properties-next],
  .escapes .carousel-btn[data-escapes-next],
  .attractions .carousel-btn[data-attractions-next],
  .reviews .carousel-btn[data-reviews-next] {
    right: 4px !important;
  }

  .modal-dialog {
    padding: 1.5rem 1.25rem;
  }

  .modal-actions {
    flex-direction: column;
  }

  .about-brand {
    padding: 3.5rem 0 0;
  }

  .about-headline {
    font-size: 2.2rem;
  }

  .about-visual-wrap {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}