/* ============================================================
   AURELIA AGENCY — style.css
   Luxury Real Estate | Pakistan
   ============================================================ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Figtree:wght@300;400;500;600;700&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --sky: #8FB2CF;
  --sky-light: #A9C4DA;
  --sky-pale: #C8DDE9;
  --sky-ultra: #E8F2F8;
  --white: #FFFFFF;
  --off-white: #F7FAFB;
  --ink: #1F1F1F;
  --ink-light: #3A3A3A;
  --muted: #7B7B7B;
  --border: #E5E5E5;
  --card-bg: #FFFFFF;
  --accent: #2C5F7A;
  --accent-light: #4A8BA8;
  --warm: #D4956A;
  --font-display: 'Fraunces', serif;
  --font-body: 'Figtree', sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 12px rgba(31, 31, 31, 0.06);
  --shadow-md: 0 8px 32px rgba(31, 31, 31, 0.10);
  --shadow-lg: 0 20px 60px rgba(31, 31, 31, 0.13);
  --shadow-xl: 0 32px 80px rgba(31, 31, 31, 0.16);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--ink);
  overflow-x: hidden;
  cursor: auto;
}

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

a {
  text-decoration: none;
}

/* ─── SCROLL PROGRESS ─── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--accent));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 999px 999px 0;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.45s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.9rem 3.5rem;
  border-bottom: 1px solid rgba(229, 229, 229, 0.7);
  box-shadow: 0 4px 24px rgba(31, 31, 31, 0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}

nav.scrolled .nav-logo {
  color: var(--ink);
}

.nav-logo span {
  font-style: italic;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition);
}

nav.scrolled .nav-menu a {
  color: var(--muted);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 99px;
  transition: width var(--transition);
}

.nav-menu a:hover {
  color: var(--white);
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--white) !important;
  color: var(--ink) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition) !important;
}

nav.scrolled .nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
  border-radius: 99px;
}

nav.scrolled .hamburger span {
  background: var(--ink);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #7BAAC6 0%, #8FB2CF 40%, #A9C4DA 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  top: -150px;
  right: -80px;
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3.5rem 10rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
}

.hero-eyebrow i {
  font-size: 0.65rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.6rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  display: block;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  max-width: 420px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: var(--ink);
  padding: 0.95rem 2.2rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(31, 31, 31, 0.15);
  transition: all var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(31, 31, 31, 0.2);
  background: var(--off-white);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 0.95rem 2.2rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 2rem;
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.4rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
  padding: 3rem 3rem 3rem 1.5rem;
  display: flex;
  align-items: center;
}

.hero-right-inner {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.hero-right-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  transition: transform 8s ease;
}

.hero-right-inner:hover img {
  transform: scale(1.03);
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 1.4rem;
  color: var(--warm);
}

.badge-text {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.badge-text strong {
  color: var(--ink);
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
  font-weight: 600;
}

/* ─── SEARCH BOX ─── */
.hero-search-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 4rem;
}

.hero-search {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 1.8rem 2rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 -8px 40px rgba(31, 31, 31, 0.08);
  border: 1px solid var(--border);
  border-bottom: none;
}

.search-field {
  flex: 1;
  min-width: 0;
}

.search-field label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
  font-weight: 600;
  white-space: nowrap;
}

.search-field input,
.search-field select {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 0.65rem 1rem;
  outline: none;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-field select option {
  background: var(--white);
  color: var(--ink);
}

.search-field input:focus,
.search-field select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(143, 178, 207, 0.15);
}

.search-btn {
  background: var(--accent);
  border: none;
  color: var(--white);
  padding: 0.72rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.search-btn:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ─── SCROLL DOWN ─── */
.scroll-down {
  position: absolute;
  bottom: 2.2rem;
  left: 25%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.scroll-down span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.scroll-arrow {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollArrow 1.6s ease-in-out infinite;
}

@keyframes scrollArrow {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 8rem 5rem;
}

.section-tag {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--sky);
  border-radius: 99px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 500px;
  font-weight: 300;
}

.section-header {
  margin-bottom: 3.5rem;
}

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

.section-header.centered .section-tag {
  justify-content: center;
}

.section-header.centered .section-tag::before {
  display: none;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

/* ─── SEARCH RESULTS ─── */
#search-results {
  display: none;
}

#search-results.visible {
  display: block;
}

.search-results-section {
  background: var(--off-white);
  padding: 6rem 5rem;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

/* ─── PROPERTIES ─── */
.properties {
  background: var(--off-white);
}

.filter-tabs {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  background: var(--white);
  padding: 0.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.65rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.property-card {
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.property-card:hover .prop-img img {
  transform: scale(1.07);
}

.prop-img {
  height: 248px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.prop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.prop-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.prop-favorite {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s;
  border: 1px solid rgba(229, 229, 229, 0.6);
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.prop-favorite:hover {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--white);
  transform: scale(1.1);
}

.prop-info {
  padding: 1.5rem;
}

.prop-location {
  font-size: 0.7rem;
  color: var(--sky);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.prop-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prop-features {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.prop-feat {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.prop-feat-icon {
  color: var(--sky);
  font-size: 0.82rem;
}

.prop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.prop-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
}

.prop-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(143, 178, 207, 0.12);
  border: 1.5px solid rgba(143, 178, 207, 0.35);
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.prop-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ─── ABOUT ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--white);
}

.about-images {
  position: relative;
  min-height: 520px;
}

.about-img-main {
  width: 72%;
  height: 460px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-img-accent {
  width: 52%;
  height: 280px;
  object-fit: cover;
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  z-index: 3;
  border-radius: var(--radius-lg);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-img-bg {
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  width: 62%;
  height: 78%;
  background: linear-gradient(135deg, var(--sky-pale) 0%, var(--sky-light) 100%);
  opacity: 0.5;
  z-index: 1;
  border-radius: var(--radius-xl);
}

.about-experience {
  position: absolute;
  top: 2rem;
  left: -2rem;
  z-index: 4;
  background: var(--accent);
  padding: 1.4rem 1.8rem;
  text-align: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-exp-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.about-exp-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2.5rem 0;
}

.about-stat {
  background: var(--off-white);
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--sky);
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.about-stat-label {
  font-size: 0.76rem;
  color: var(--muted);
}

/* ─── SERVICES ─── */
.services {
  background: linear-gradient(180deg, #8FB2CF 0%, #A9C4DA 100%);
}

.services .section-tag {
  color: rgba(255, 255, 255, 0.75);
}

.services .section-tag::before {
  background: rgba(255, 255, 255, 0.5);
}

.services .section-title {
  color: var(--white);
}

.services .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

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

.service-card {
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 48px rgba(31, 31, 31, 0.12);
}

.service-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.4rem;
}

.service-icon {
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
  color: var(--white);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.service-arrow {
  margin-top: 1.4rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.service-card:hover .service-arrow {
  gap: 0.9rem;
  color: var(--white);
}

/* ─── SHOWCASE ─── */
.showcase {
  padding: 8rem 0;
  background: var(--off-white);
  overflow: hidden;
}

.showcase-inner {
  padding: 0 5rem;
  margin-bottom: 2.5rem;
}

.showcase-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 5rem 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-track.grabbing {
  cursor: grabbing;
}

.showcase-card {
  flex: 0 0 320px;
  height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
  filter: brightness(0.8);
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem;
  background: linear-gradient(to top, rgba(31, 31, 31, 0.9) 0%, transparent 100%);
  transform: translateY(28%);
  transition: transform var(--transition);
}

.showcase-card:hover .showcase-card-info {
  transform: translateY(0);
}

.showcase-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.showcase-card-loc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.showcase-card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sky-pale);
  font-weight: 400;
}

/* ─── WHY CHOOSE US ─── */
.why {
  background: var(--white);
}

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

.why-card {
  text-align: center;
  padding: 2.8rem 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--sky-pale);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--sky-pale) 0%, var(--sky-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--accent);
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--sky) 0%, var(--accent) 100%);
  color: var(--white);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.why-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── RENT ─── */
.rent-section {
  background: var(--off-white);
}

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

.rent-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.rent-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.rent-card:hover .rent-img img {
  transform: scale(1.08);
}

.rent-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.rent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rent-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

.rent-info {
  padding: 1.3rem;
}

.rent-location {
  font-size: 0.68rem;
  color: var(--sky);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
}

.rent-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.rent-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.rent-feat {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.rent-feat i {
  color: var(--sky);
  font-size: 0.78rem;
}

.rent-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.rent-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}

.rent-price small {
  font-size: 0.68rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.rent-btn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(143, 178, 207, 0.12);
  border: 1.5px solid rgba(143, 178, 207, 0.4);
  padding: 0.48rem 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.rent-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--white);
}

.testi-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.add-review-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.add-review-btn:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.testi-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--sky-pale);
}

.testi-quote {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--sky);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.testi-stars {
  color: var(--warm);
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
  letter-spacing: 0.1em;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--sky-pale);
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 400;
}

.testi-role {
  font-size: 0.73rem;
  color: var(--muted);
}

/* ─── REVIEW MODAL ─── */
.review-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31, 31, 31, 0.5);
  backdrop-filter: blur(12px);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.review-modal-overlay.open {
  display: flex;
}

.review-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--sky-pale);
  color: var(--accent);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.modal-field {
  margin-bottom: 1.3rem;
}

.modal-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.modal-input,
.modal-textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius-sm);
}

.modal-textarea {
  resize: vertical;
  min-height: 95px;
}

.modal-input:focus,
.modal-textarea:focus {
  border-color: var(--sky);
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.3rem;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 1.55rem;
  color: var(--border);
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--warm);
}

.modal-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
  border-radius: var(--radius-pill);
}

.modal-submit:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── VIDEO SECTION ─── */
.video-section {
  position: relative;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80') center/cover;
  filter: brightness(0.32);
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  cursor: pointer;
  animation: pulsePaly 2.2s ease-in-out infinite;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.07);
}

.play-btn svg {
  margin-left: 5px;
}

@keyframes pulsePaly {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
}

.video-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.video-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ─── FAQ ─── */
.faq {
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  transition: color var(--transition);
  gap: 1rem;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--accent);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--sky-ultra);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1.4rem;
}

/* ─── CONTACT ─── */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.contact-ico {
  width: 42px;
  height: 42px;
  background: var(--sky-ultra);
  border: 1.5px solid var(--sky-pale);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--accent);
}

.contact-detail-label {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-detail-val {
  font-size: 0.92rem;
  color: var(--ink-light);
}

.contact-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}

.social-btn:hover {
  border-color: var(--sky);
  color: var(--accent);
  background: var(--sky-ultra);
  transform: translateY(-2px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  border-radius: var(--radius-sm);
}

.form-textarea {
  resize: vertical;
  min-height: 125px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(143, 178, 207, 0.15);
}

.form-select option {
  background: var(--white);
}

.map-wrapper {
  margin-top: 1.5rem;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg);
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 5rem 5rem 2.2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo span {
  font-style: italic;
  color: var(--sky-pale);
}

.footer-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer-social .social-btn {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
}

.footer-social .social-btn:hover {
  border-color: var(--sky);
  color: var(--sky-pale);
  background: rgba(143, 178, 207, 0.12);
}

.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 300;
}

.footer-links a::before {
  content: '›';
  color: var(--sky);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.footer-links a:hover::before {
  opacity: 1;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.84rem;
  padding: 0.72rem 1rem;
  outline: none;
  min-width: 0;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
  background: var(--sky);
  border: none;
  color: var(--white);
  padding: 0.72rem 1.1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition);
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: var(--accent);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

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

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--sky-pale);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsappPulse 2.6s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 38px rgba(37, 211, 102, 0.55);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0.07); }
}

.whatsapp-btn svg {
  width: 27px;
  height: 27px;
  fill: white;
}

/* ─── BACK TO TOP ─── */
#back-top {
  position: fixed;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 900;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  transform: translateY(16px);
  box-shadow: var(--shadow-sm);
}

#back-top.show {
  opacity: 1;
  transform: translateY(0);
}

#back-top:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* ─── AOS POINTER FIX ─── */
[data-aos] {
  pointer-events: none !important;
}

[data-aos].aos-animate {
  pointer-events: all !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .rent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .testi-track {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 1.1rem 2rem;
  }

  nav.scrolled {
    padding: 0.85rem 2rem;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 7rem 2rem 14rem;
    order: 1;
  }

  .hero-right {
    height: 55vh;
    padding: 0 2rem 4rem;
    order: 2;
    display: none;
  }

  .hero-right-inner {
    max-height: 100%;
    height: 100%;
  }

  .hero-search-wrapper {
    padding: 0 1.5rem;
    position: absolute;
    bottom: 0;
  }

  .hero-search {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1.4rem 1.5rem 1.2rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .search-field {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 140px;
  }

  .search-btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  section {
    padding: 5rem 2rem;
  }

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

  .about-images {
    min-height: 380px;
  }

  .about-img-main {
    width: 82%;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testi-track {
    grid-template-columns: 1fr;
  }

  .rent-grid {
    grid-template-columns: 1fr 1fr;
  }

  .search-results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-inner {
    padding: 0 2rem;
  }

  .showcase-track {
    padding: 0.5rem 2rem 2rem;
  }

  footer {
    padding: 4rem 2rem 2rem;
  }
}

@media (max-width: 600px) {
  .hero-left {
    padding: 7rem 1.5rem 16rem;
  }

  .hero-search-wrapper {
    padding: 0 1rem;
  }

  .hero-search {
    padding: 1.2rem 1.2rem 1rem;
    gap: 0.8rem;
  }

  .search-field {
    flex: 1 1 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .rent-grid {
    grid-template-columns: 1fr;
  }

  .search-results-grid {
    grid-template-columns: 1fr;
  }

  .testi-track {
    grid-template-columns: 1fr;
  }

  .testi-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    flex: 0 0 280px;
    height: 380px;
  }

  .video-title {
    font-size: 2rem;
  }

  section {
    padding: 4rem 1.5rem;
  }
}