/* ============================================
   WATERSIDE PROPERTY INVESTMENTS
   Refined Liquid Glass Design
   ============================================ */

/* ----------------------------------------
   Design Tokens
   ---------------------------------------- */
:root {
  /* Brand Colors */
  --brand-primary: #2C5E84;
  --brand-secondary: #E2CCB5;
  --brand-dark: #1e4263;
  --brand-light: #3a7aa8;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic */
  --success: #10b981;
  --error: #ef4444;

  /* Surfaces */
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-dark: var(--brand-primary);
  --bg-card: var(--white);

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px rgba(44, 94, 132, 0.1);

  /* Section Borders */
  --border-color: rgba(44, 94, 132, 0.15);
  --border-color-strong: rgba(44, 94, 132, 0.25);

  /* Text */
  --text-primary: var(--brand-primary);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --text-inverse: var(--white);

  /* Typography */
  --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container: 1280px;
  --header-height: 80px;

  /* Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  /* Shadows - subtle and refined */
  --shadow-sm: 0 2px 8px rgba(44, 94, 132, 0.04);
  --shadow: 0 4px 24px rgba(44, 94, 132, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 94, 132, 0.12);
  --shadow-glow: 0 0 40px rgba(44, 94, 132, 0.15);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
[data-theme="dark"] {
  --bg-primary: var(--gray-900);
  --bg-secondary: var(--gray-800);
  --bg-card: rgba(30, 41, 59, 0.8);
  --text-primary: var(--white);
  --text-secondary: var(--gray-400);
  --text-muted: var(--gray-500);
  --glass-bg: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-strong: rgba(255, 255, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* ----------------------------------------
   Typography
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand-primary);
  letter-spacing: -0.02em;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, var(--text-6xl)); }
h2 { font-size: clamp(2rem, 4vw, var(--text-4xl)); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

/* ----------------------------------------
   Layout
   ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
  border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .section { padding: var(--space-32) 0; }
}

.section--dark {
  background: var(--brand-primary);
  border-top-color: rgba(255, 255, 255, 0.15);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--brand-secondary);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.section--gray {
  background: var(--bg-secondary);
  border-top-color: var(--border-color-strong);
}

/* ----------------------------------------
   Skip Link
   ---------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--brand-primary);
  color: var(--brand-secondary);
  border-radius: var(--radius);
  z-index: 9999;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ----------------------------------------
   Header - Glass Effect
   ---------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(30, 74, 109, 0.92);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: var(--transition);
}

[data-theme="dark"] .header {
  background: rgba(10, 20, 32, 0.92);
  border-bottom: 1px solid rgba(226, 204, 181, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.header .container {
  height: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--white);
}

.logo__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
}

.logo__text {
  color: var(--brand-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  white-space: nowrap;
}

/* Navigation */
.nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
  margin-left: auto;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav__list {
  display: flex;
  gap: var(--space-1);
}

.nav__link {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.nav__link:hover {
  color: var(--brand-secondary);
  background: rgba(226, 204, 181, 0.15);
}

.nav__link--active {
  color: var(--brand-secondary);
  background: rgba(226, 204, 181, 0.2);
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Theme Toggle */
.theme-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  transition: var(--transition);
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* Menu Toggle */
.menu-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: var(--radius);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 94, 132, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-6);
  transform: translateX(100%);
  transition: var(--transition-slow);
  z-index: 99;
}

.mobile-nav--open {
  transform: translateX(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-nav__link {
  display: block;
  padding: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.mobile-nav__link:hover {
  color: var(--brand-secondary);
  background: rgba(226, 204, 181, 0.15);
}

.mobile-nav__link--active {
  color: var(--brand-secondary);
  background: rgba(226, 204, 181, 0.2);
}

@media (min-width: 1024px) {
  .mobile-nav { display: none; }
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--brand-primary);
  border: 1px solid var(--border-color-strong);
}

.btn--secondary:hover {
  background: rgba(44, 94, 132, 0.1);
  border-color: var(--brand-primary);
}

[data-theme="dark"] .btn--secondary {
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}

.btn--outline:hover {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}

[data-theme="dark"] .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* Header button */
.header .btn--primary {
  background: rgba(226, 204, 181, 0.2);
  border: 1px solid rgba(226, 204, 181, 0.4);
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: var(--text-xs);
}

.header .btn--primary:hover {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: var(--brand-primary);
}

/* Inverse buttons (for dark sections) */
.section--dark .btn--primary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

.section--dark .btn--primary:hover {
  background: var(--white);
}

.section--dark .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.section--dark .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ----------------------------------------
   Hero
   ---------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, rgba(44, 94, 132, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

/* Subtle gradient orbs for depth */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.hero::before {
  width: 600px;
  height: 600px;
  background: rgba(44, 94, 132, 0.15);
  top: -200px;
  right: -200px;
}

.hero::after {
  width: 400px;
  height: 400px;
  background: rgba(226, 204, 181, 0.2);
  bottom: -100px;
  left: -100px;
}

[data-theme="dark"] .hero::before {
  background: rgba(44, 94, 132, 0.3);
}

[data-theme="dark"] .hero::after {
  background: rgba(226, 204, 181, 0.1);
}

.hero__inner {
  display: grid;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.hero__content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__content { text-align: left; }
}

/* Mobile: reorder hero elements so carousel comes after title */
@media (max-width: 1023px) {
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
  }

  .hero__content {
    display: contents;
  }

  .hero__badge {
    order: 1;
  }

  .hero__title {
    order: 2;
  }

  .hero__visual {
    order: 3;
  }

  .hero__subtitle {
    order: 4;
  }

  .hero__buttons {
    order: 5;
    margin-bottom: var(--space-16);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(44, 94, 132, 0.1);
  border: 1px solid rgba(44, 94, 132, 0.2);
  color: var(--brand-primary);
  font-size: var(--text-xs);
  font-weight: 500;
  border-radius: 100px;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

@media (max-width: 1024px) {
  .hero__badge {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__badge {
    margin-top: 1.5rem;
  }
}

[data-theme="dark"] .hero__badge {
  background: rgba(226, 204, 181, 0.15);
  border-color: rgba(226, 204, 181, 0.3);
  color: var(--brand-secondary);
}

.hero__title {
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: clamp(1.75rem, 4vw, var(--text-4xl));
}

.hero__title span {
  color: var(--brand-secondary);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #d4a574 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  max-width: 540px;
  margin: 0 auto var(--space-8);
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__subtitle {
    margin: 0 0 var(--space-8);
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .hero__subtitle { font-size: var(--text-xl); }
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.hero__buttons .btn {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: var(--text-sm);
  transition: all 0.3s ease;
}

.hero__buttons .btn--primary {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}

.hero__buttons .btn--primary:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 94, 132, 0.4);
}

.hero__buttons .btn--outline {
  border-color: rgba(44, 94, 132, 0.6);
  color: rgba(44, 94, 132, 0.85);
}

.hero__buttons .btn--outline:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 94, 132, 0.4);
}

@media (min-width: 1024px) {
  .hero__buttons { justify-content: flex-start; }
}

/* Hero Visual - Glass Card */
.hero__visual {
  position: relative;
}

@media (max-width: 1024px) {
  .hero__visual {
    margin-bottom: var(--space-8);
  }
}

@media (max-width: 480px) {
  .hero__visual {
    margin-bottom: var(--space-6);
  }

  .hero__carousel {
    border-radius: var(--radius-xl);
  }
}

.hero__image {
  aspect-ratio: 4/3;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Carousel */
.hero__carousel {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.hero__carousel-slide {
  min-width: 100%;
  height: 100%;
}

.hero__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0s;
}

/* Ken Burns zoom effect */
.hero__carousel-slide--active img {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__carousel-slide--active img {
    animation: none;
    transform: scale(1);
  }
}

.hero__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(44, 94, 132, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
  z-index: 10;
}

.hero__carousel:hover .hero__carousel-btn,
.hero__carousel--active .hero__carousel-btn {
  opacity: 1;
}

.hero__carousel-btn:hover {
  background: var(--brand-primary);
}

.hero__carousel-btn--prev {
  left: var(--space-4);
}

.hero__carousel-btn--next {
  right: var(--space-4);
}

.hero__carousel-btn svg {
  width: 24px;
  height: 24px;
}

.hero__carousel-dots {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 10;
}

.hero__carousel-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.hero__carousel-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero__carousel-dot--active {
  background: var(--brand-secondary);
  width: 28px;
  border-radius: 100px;
}

/* Floating Stats Card - Glass */
.hero__stats {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color-strong);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: none;
}

@media (min-width: 768px) {
  .hero__stats { display: block; }
}

.hero__stat-value {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}

[data-theme="dark"] .hero__stat-value {
  color: var(--white);
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: var(--space-1);
}

/* ----------------------------------------
   Features Bar
   ---------------------------------------- */
.features-bar {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, #2C5E84 0%, #1e4a6d 100%);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.features-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none;
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  position: relative;
}

@media (min-width: 768px) {
  .features-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.features-bar__item {
  text-align: center;
}

.features-bar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
}

.features-bar__icon svg {
  width: 24px;
  height: 24px;
}

.features-bar__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.features-bar__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

/* Dark mode - make features bar stand out more */
[data-theme="dark"] .features-bar {
  background: linear-gradient(135deg, #1a3a52 0%, #0f2536 100%);
  border-top: 1px solid rgba(226, 204, 181, 0.2);
  border-bottom: 1px solid rgba(226, 204, 181, 0.2);
}

[data-theme="dark"] .features-bar__icon {
  background: rgba(226, 204, 181, 0.15);
  border-color: rgba(226, 204, 181, 0.25);
}

[data-theme="dark"] .features-bar__title {
  color: var(--brand-secondary);
}

[data-theme="dark"] .features-bar__text {
  color: rgba(255, 255, 255, 0.7);
}

/* Features Bar Icon Animations */
.features-bar__icon svg {
  transition: transform 0.4s ease;
}

.features-bar__item:hover .fb-icon-partnership {
  animation: fb-pulse 0.5s ease;
}

@keyframes fb-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.features-bar__item:hover .fb-icon-location {
  animation: fb-bounce 0.5s ease;
}

@keyframes fb-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.features-bar__item:hover .fb-icon-eye .fb-eye-pupil {
  animation: fb-eye-look 0.6s ease;
}

@keyframes fb-eye-look {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(2px); }
  75% { transform: translateX(-2px); }
}

.features-bar__item:hover .fb-icon-check .fb-checkmark {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: fb-check-draw 0.5s ease forwards;
}

@keyframes fb-check-draw {
  to { stroke-dashoffset: 0; }
}

/* ----------------------------------------
   Section Header
   ---------------------------------------- */
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section__header h2 {
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.section__header p {
  font-size: var(--text-lg);
  margin-top: var(--space-4);
}

/* ----------------------------------------
   Glass Cards
   ---------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44, 94, 132, 0.2);
}

[data-theme="dark"] .glass-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------
   Property Cards
   ---------------------------------------- */
.properties-grid {
  display: grid;
  gap: var(--space-8);
}

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

@media (min-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(3, 1fr); }
}

.property-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44, 94, 132, 0.3);
}

.property-card__image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .property-card__image {
  background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-800) 100%);
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.property-card:hover .property-card__image img {
  transform: scale(1.05);
}

.property-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--brand-primary);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.property-card__badge--active {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.property-card__badge--completed {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--brand-secondary);
}

.property-card__body {
  padding: var(--space-6);
}

.property-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.property-card__location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.property-card__location svg {
  width: 16px;
  height: 16px;
}

.property-card__stats {
  display: flex;
  gap: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-color);
}

.property-card__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.property-card__stat-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brand-primary);
}

[data-theme="dark"] .property-card__stat-value {
  color: var(--white);
}

.property-card__stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Coming Soon Property Cards */
.property-card--coming-soon {
  position: relative;
}

.property-card--coming-soon .property-card__image img,
.property-card--coming-soon .property-card__body {
  filter: blur(8px);
  opacity: 0.5;
}

.property-card--coming-soon .property-card__badge {
  display: none;
}

.property-card__coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.property-card__coming-soon-text {
  padding: var(--space-2) var(--space-5);
  background: rgba(44, 94, 132, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow);
}

[data-theme="dark"] .property-card__coming-soon-text {
  background: rgba(226, 204, 181, 0.85);
  color: var(--gray-900);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ----------------------------------------
   Process Steps
   ---------------------------------------- */
.process-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  text-align: center;
  padding: var(--space-8);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(44, 94, 132, 0.2);
}

.process-step__number {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-5);
  background: var(--brand-primary);
  color: var(--brand-secondary);
  font-size: var(--text-xl);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.process-step__text {
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ----------------------------------------
   Value Cards
   ---------------------------------------- */
.value-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  padding: var(--space-8);
  background:
    linear-gradient(135deg, rgba(44, 94, 132, 0.03) 0%, rgba(226, 204, 181, 0.05) 100%),
    var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44, 94, 132, 0.3);
  background:
    linear-gradient(135deg, rgba(44, 94, 132, 0.06) 0%, rgba(226, 204, 181, 0.08) 100%),
    var(--glass-bg);
}

.value-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(44, 94, 132, 0.1);
  color: var(--brand-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-card:hover .value-card__icon {
  transform: scale(1.1);
  background: rgba(44, 94, 132, 0.15);
}

[data-theme="dark"] .value-card__icon {
  background: rgba(226, 204, 181, 0.15);
  color: var(--brand-secondary);
}

[data-theme="dark"] .value-card:hover .value-card__icon {
  background: rgba(226, 204, 181, 0.25);
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.4s ease;
}

/* Individual icon hover animations */
.value-card:hover .icon-partnership {
  animation: partnership-pulse 0.5s ease;
}

@keyframes partnership-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.value-card:hover .icon-globe {
  transform: rotate(15deg);
}

.value-card:hover .icon-eye .eye-pupil {
  transform-origin: center;
  animation: eye-look 0.6s ease;
}

@keyframes eye-look {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(2px); }
  75% { transform: translateX(-2px); }
}

.value-card:hover .icon-user-check {
  transform: scale(1.05);
}

.value-card:hover .icon-user-check polyline {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: check-draw 0.4s ease forwards 0.1s;
}

.value-card:hover .icon-clock .clock-hand {
  transform-origin: 12px 12px;
  animation: clock-spin 0.6s ease;
}

@keyframes clock-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.value-card:hover .icon-shield {
  transform: scale(1.05);
}

.value-card:hover .icon-shield .shield-check {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: check-draw 0.4s ease forwards 0.1s;
}

@keyframes check-draw {
  to { stroke-dashoffset: 0; }
}

.value-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.value-card__text {
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ----------------------------------------
   CTA Section
   ---------------------------------------- */
.cta {
  padding: var(--space-24) 0;
  background:
    linear-gradient(135deg, rgba(44, 94, 132, 0.05) 0%, rgba(226, 204, 181, 0.1) 50%, rgba(44, 94, 132, 0.05) 100%),
    var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 94, 132, 0.08) 0%, transparent 70%);
  top: -300px;
  left: -200px;
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 204, 181, 0.15) 0%, transparent 70%);
  bottom: -250px;
  right: -150px;
  pointer-events: none;
}

.cta__content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: var(--space-12) var(--space-16);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}


.cta__title {
  color: var(--brand-primary);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: var(--text-2xl);
}

[data-theme="dark"] .cta__title {
  color: var(--white);
}

.cta__text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.cta__buttons .btn {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: var(--text-sm);
  transition: all 0.3s ease;
}

.cta__buttons .btn--primary {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}

.cta__buttons .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44, 94, 132, 0.3);
}

.cta__buttons .btn--outline:hover {
  transform: translateY(-3px);
}

/* Dark mode CTA */
[data-theme="dark"] .cta {
  background:
    linear-gradient(135deg, rgba(226, 204, 181, 0.05) 0%, rgba(44, 94, 132, 0.1) 50%, rgba(226, 204, 181, 0.05) 100%),
    var(--bg-secondary);
}

[data-theme="dark"] .cta::before {
  background: radial-gradient(circle, rgba(226, 204, 181, 0.08) 0%, transparent 70%);
}

[data-theme="dark"] .cta::after {
  background: radial-gradient(circle, rgba(44, 94, 132, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .cta__content {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(226, 204, 181, 0.2);
}

[data-theme="dark"] .cta__title {
  color: var(--brand-secondary);
}

[data-theme="dark"] .cta__text {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .cta__buttons .btn--primary {
  background: var(--brand-primary);
  color: var(--brand-secondary);
}

[data-theme="dark"] .cta__buttons .btn--primary:hover {
  box-shadow: 0 10px 30px rgba(44, 94, 132, 0.4);
}

[data-theme="dark"] .cta__buttons .btn--outline {
  border-color: rgba(44, 94, 132, 0.6);
  color: var(--brand-secondary);
}

[data-theme="dark"] .cta__buttons .btn--outline:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--brand-secondary);
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer {
  padding: var(--space-16) 0 var(--space-8);
  background: linear-gradient(135deg, #2C5E84 0%, #1e4a6d 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .footer {
  background: linear-gradient(135deg, #0f2536 0%, #0a1a28 100%);
  border-top: 1px solid rgba(226, 204, 181, 0.2);
}

.footer__grid {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 320px;
}

.footer__brand .logo {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer__brand .logo__text {
  white-space: nowrap;
  letter-spacing: 0.15em;
  font-size: var(--text-sm);
}

.footer__brand .logo__icon {
  background: none;
}

.footer__brand p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer__column h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a,
.footer__links li {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

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

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

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

/* Footer Social Links */
.footer__social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.social-link img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* ----------------------------------------
   Page Header
   ---------------------------------------- */
.page-header {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  text-align: center;
  position: relative;
}

[data-theme="dark"] .page-header {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.page-header::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(44, 94, 132, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

@media (min-width: 768px) {
  .page-header {
    padding: calc(var(--header-height) + var(--space-20)) 0 var(--space-20);
  }
}

.page-header h1 {
  margin-bottom: var(--space-4);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.page-header p {
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ----------------------------------------
   About Page
   ---------------------------------------- */
.about-intro {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .about-intro { grid-template-columns: 1fr 1fr; }
}

.about-intro__image {
  aspect-ratio: 4/3;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__content h2 {
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.about-intro__content p {
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

/* Team */
.team-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  text-align: center;
  padding: var(--space-8);
  background:
    linear-gradient(135deg, rgba(44, 94, 132, 0.03) 0%, rgba(226, 204, 181, 0.05) 100%),
    var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44, 94, 132, 0.3);
  background:
    linear-gradient(135deg, rgba(44, 94, 132, 0.06) 0%, rgba(226, 204, 181, 0.08) 100%),
    var(--glass-bg);
}

.team-grid--two {
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-5);
  background: rgba(44, 94, 132, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--brand-primary);
}

[data-theme="dark"] .team-card__avatar {
  background: rgba(226, 204, 181, 0.15);
  color: var(--brand-secondary);
}

.team-card__image {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-5);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--brand-primary);
}

[data-theme="dark"] .team-card__image {
  border-color: var(--brand-secondary);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Adjust Parmjit's image position - change the percentage to move the image */
/* First value = horizontal (50% = centered), Second value = vertical (0% = top, 50% = center, 100% = bottom) */
.team-img-parmjit {
  object-position: 50% 25%;
}

.team-card__name {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.team-card__role {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--brand-primary);
  margin-bottom: var(--space-4);
}

[data-theme="dark"] .team-card__role {
  color: var(--brand-secondary);
}

.team-card__bio {
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ----------------------------------------
   Contact Page
   ---------------------------------------- */
.contact-grid {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

.contact-info {
  padding: var(--space-8);
  background:
    linear-gradient(135deg, rgba(44, 94, 132, 0.03) 0%, rgba(226, 204, 181, 0.05) 100%),
    var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color-strong);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-info:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(44, 94, 132, 0.3);
}

[data-theme="dark"] .contact-info {
  background:
    linear-gradient(135deg, rgba(226, 204, 181, 0.03) 0%, rgba(44, 94, 132, 0.05) 100%),
    rgba(30, 41, 59, 0.8);
  border-color: rgba(226, 204, 181, 0.15);
}

[data-theme="dark"] .contact-info:hover {
  border-color: rgba(226, 204, 181, 0.3);
}

.contact-info h3 {
  color: var(--brand-primary);
  margin-bottom: var(--space-8);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: var(--text-xl);
}

[data-theme="dark"] .contact-info h3 {
  color: var(--brand-secondary);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  position: relative;
  padding: var(--space-4);
  background: rgba(44, 94, 132, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-info__item:hover {
  background: rgba(44, 94, 132, 0.08);
  border-color: rgba(44, 94, 132, 0.2);
}

[data-theme="dark"] .contact-info__item {
  background: rgba(226, 204, 181, 0.05);
  border-color: rgba(226, 204, 181, 0.1);
}

[data-theme="dark"] .contact-info__item:hover {
  background: rgba(226, 204, 181, 0.1);
  border-color: rgba(226, 204, 181, 0.2);
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__icon {
  width: 24px;
  height: 24px;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: var(--space-1);
}

[data-theme="dark"] .contact-info__icon {
  color: var(--brand-secondary);
}

.contact-info__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-sm);
  color: var(--brand-primary);
  font-weight: 500;
}

[data-theme="dark"] .contact-info__value {
  color: var(--white);
}

.contact-info__value a {
  transition: var(--transition);
}

.contact-info__value a:hover {
  color: var(--brand-light);
}

[data-theme="dark"] .contact-info__value a:hover {
  color: var(--brand-secondary);
}

/* ----------------------------------------
   Forms
   ---------------------------------------- */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-8);
  background:
    linear-gradient(135deg, rgba(44, 94, 132, 0.03) 0%, rgba(226, 204, 181, 0.05) 100%),
    var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .form {
  background:
    linear-gradient(135deg, rgba(226, 204, 181, 0.03) 0%, rgba(44, 94, 132, 0.05) 100%),
    rgba(30, 41, 59, 0.8);
  border-color: rgba(226, 204, 181, 0.15);
}

.form__row {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .form__row--2 { grid-template-columns: repeat(2, 1fr); }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme="dark"] .form__label {
  color: var(--brand-secondary);
}

.form__label--required::after {
  content: " *";
  color: var(--error);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: var(--space-4);
  font-size: var(--text-base);
  background: var(--bg-primary);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius);
  color: var(--text-primary);
  transition: var(--transition);
}

[data-theme="dark"] .form__input,
[data-theme="dark"] .form__textarea {
  background-color: rgba(15, 23, 42, 0.5);
  border-color: rgba(226, 204, 181, 0.2);
  color: var(--white);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
  font-family: var(--font-sans);
  opacity: 1;
}

[data-theme="dark"] .form__input::placeholder,
[data-theme="dark"] .form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(44, 94, 132, 0.15);
}

[data-theme="dark"] .form__input:focus,
[data-theme="dark"] .form__textarea:focus,
[data-theme="dark"] .form__select:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(226, 204, 181, 0.15);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  padding-right: var(--space-10);
}

[data-theme="dark"] .form__select {
  background-color: rgba(15, 23, 42, 0.5);
  border-color: rgba(226, 204, 181, 0.2);
  color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E2CCB5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
}

.form__error {
  font-size: var(--text-xs);
  color: var(--error);
  display: none;
}

.form__error--visible {
  display: block;
}

.form__success {
  padding: var(--space-4);
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  display: none;
}

.form__success--visible {
  display: block;
}

/* Form button styling */
.form .btn--primary {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: var(--space-4);
}

.form .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 94, 132, 0.3);
}

/* ----------------------------------------
   FAQ
   ---------------------------------------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: var(--space-4);
  background:
    linear-gradient(135deg, rgba(44, 94, 132, 0.03) 0%, rgba(226, 204, 181, 0.05) 100%),
    var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.faq__item:hover {
  border-color: rgba(44, 94, 132, 0.3);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .faq__item {
  background:
    linear-gradient(135deg, rgba(226, 204, 181, 0.03) 0%, rgba(44, 94, 132, 0.05) 100%),
    rgba(30, 41, 59, 0.8);
  border-color: rgba(226, 204, 181, 0.15);
}

[data-theme="dark"] .faq__item:hover {
  border-color: rgba(226, 204, 181, 0.3);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--brand-primary);
  text-align: left;
  transition: var(--transition);
}

[data-theme="dark"] .faq__question {
  color: var(--white);
}

.faq__question:hover {
  color: var(--brand-light);
}

[data-theme="dark"] .faq__question:hover {
  color: var(--brand-secondary);
}

.faq__icon {
  width: 24px;
  height: 24px;
  color: var(--brand-primary);
  opacity: 0.6;
  transition: transform var(--transition), opacity var(--transition);
  flex-shrink: 0;
}

[data-theme="dark"] .faq__icon {
  color: var(--brand-secondary);
}

.faq__item:hover .faq__icon {
  opacity: 1;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
  opacity: 1;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq__item--open .faq__answer {
  max-height: 500px;
}

.faq__answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--text-secondary);
  line-height: 1.8;
}

[data-theme="dark"] .faq__answer-inner {
  color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------------
   Legal Content
   ---------------------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}

.legal-content p {
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
}

/* ----------------------------------------
   Filters
   ---------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  justify-content: center;
}

.filter-btn {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: 100px;
  transition: var(--transition);
}

.filter-btn:hover {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.filter-btn--active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--brand-secondary);
}

.filter-btn--active:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

/* ----------------------------------------
   Modal
   ---------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: scale(0.95);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal--open .modal__content {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal__close:hover {
  background: var(--white);
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__body {
  overflow-y: auto;
  max-height: 90vh;
}

.modal__gallery {
  aspect-ratio: 16/9;
  background: var(--gray-200);
}

.modal__info {
  padding: var(--space-8);
}

.modal__title {
  margin-bottom: var(--space-2);
}

.modal__location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.modal__location svg {
  width: 16px;
  height: 16px;
}

.modal__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}

@media (min-width: 640px) {
  .modal__stats { grid-template-columns: repeat(4, 1fr); }
}

.modal__stat {
  text-align: center;
}

.modal__stat-value {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--brand-primary);
}

[data-theme="dark"] .modal__stat-value {
  color: var(--white);
}

.modal__stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.modal__description h4,
.modal__highlights h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.modal__description {
  margin-bottom: var(--space-6);
}

.modal__description p {
  line-height: 1.8;
}

.modal__highlights ul {
  padding-left: var(--space-5);
}

.modal__highlights li {
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  position: relative;
}

.modal__highlights li::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-4));
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
}

/* ----------------------------------------
   Gallery
   ---------------------------------------- */
.gallery {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-200);
}

[data-theme="dark"] .gallery {
  background: var(--gray-700);
}

.gallery__track {
  display: flex;
  transition: transform var(--transition-slow);
}

.gallery__slide {
  min-width: 100%;
  aspect-ratio: 4/3;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-4);
  pointer-events: none;
}

.gallery__btn {
  width: 48px;
  height: 48px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 0;
  transform: scale(0.9);
  transition: var(--transition);
}

.gallery:hover .gallery__btn {
  opacity: 1;
  transform: scale(1);
}

.gallery__btn:hover {
  background: var(--white);
}

.gallery__btn svg {
  width: 20px;
  height: 20px;
}

.gallery__dots {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
}

.gallery__dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.gallery__dot:hover {
  opacity: 0.75;
}

.gallery__dot--active {
  width: 24px;
  border-radius: 100px;
  opacity: 1;
}

/* ----------------------------------------
   Placeholder Image
   ---------------------------------------- */
.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  color: var(--gray-400);
  font-size: var(--text-sm);
}

[data-theme="dark"] .placeholder-image {
  background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-800) 100%);
  color: var(--gray-500);
}

.placeholder-image::before {
  content: "";
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E");
  background-size: contain;
  opacity: 0.5;
}

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

.text-center { text-align: center; }

@media (max-width: 1023px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 1024px) {
  .hide-desktop { display: none !important; }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ----------------------------------------
   Services Section
   ---------------------------------------- */
.services-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  padding: var(--space-8);
  background:
    linear-gradient(135deg, rgba(44, 94, 132, 0.03) 0%, rgba(226, 204, 181, 0.05) 100%),
    var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(44, 94, 132, 0.3);
  background:
    linear-gradient(135deg, rgba(44, 94, 132, 0.06) 0%, rgba(226, 204, 181, 0.08) 100%),
    var(--glass-bg);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(44, 94, 132, 0.1);
  color: var(--brand-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

[data-theme="dark"] .service-card__icon {
  background: rgba(226, 204, 181, 0.15);
  color: var(--brand-secondary);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.service-card__text {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-card__list li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding-left: var(--space-5);
  position: relative;
}

.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
}

[data-theme="dark"] .service-card__list li::before {
  background: var(--brand-secondary);
}

/* ----------------------------------------
   Location Section
   ---------------------------------------- */
.location-grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

.location-content h2 {
  color: var(--brand-primary);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

[data-theme="dark"] .location-content h2 {
  color: var(--white);
}

.location-intro {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.location-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.location-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-lg);
}

.location-stat__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  color: var(--brand-primary);
}

[data-theme="dark"] .location-stat__icon {
  color: var(--brand-secondary);
}

.location-stat__icon svg {
  width: 28px;
  height: 28px;
}

.location-stat__value {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}

[data-theme="dark"] .location-stat__value {
  color: var(--brand-secondary);
}

.location-stat__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.location-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.location-benefits svg {
  width: 18px;
  height: 18px;
  color: var(--brand-primary);
  flex-shrink: 0;
}

[data-theme="dark"] .location-benefits svg {
  color: var(--brand-secondary);
}

.location-visual {
  position: relative;
}

.location-image {
  aspect-ratio: 4/3;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------
   Section Footer
   ---------------------------------------- */
.section__footer {
  text-align: center;
  margin-top: var(--space-12);
}

/* ----------------------------------------
   Expect/Timeline Section
   ---------------------------------------- */
.expect-grid {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .expect-grid { grid-template-columns: 1fr 1fr; }
}

.expect-content h2 {
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.expect-content > p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.expect-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
}

.expect-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-primary), rgba(44, 94, 132, 0.2));
}

[data-theme="dark"] .expect-timeline::before {
  background: linear-gradient(to bottom, var(--brand-secondary), rgba(226, 204, 181, 0.2));
}

.expect-item {
  display: flex;
  gap: var(--space-5);
  position: relative;
}

.expect-item__marker {
  width: 24px;
  height: 24px;
  background: var(--brand-primary);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

[data-theme="dark"] .expect-item__marker {
  background: var(--brand-secondary);
}

.expect-item__content h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.expect-item__content p {
  font-size: var(--text-sm);
  line-height: 1.7;
}

.expect-visual {
  position: relative;
}

.expect-image {
  aspect-ratio: 4/3;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.expect-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expect-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  max-width: 280px;
  padding: var(--space-5);
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

[data-theme="dark"] .expect-card {
  background: var(--gray-800);
}

.expect-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(44, 94, 132, 0.1);
  color: var(--brand-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme="dark"] .expect-card__icon {
  background: rgba(226, 204, 181, 0.15);
  color: var(--brand-secondary);
}

.expect-card__icon svg {
  width: 20px;
  height: 20px;
}

.expect-card__text {
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ----------------------------------------
   CTA Benefits
   ---------------------------------------- */
.cta__benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-8);
  margin-bottom: var(--space-8);
}

.cta__benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.cta__benefits svg {
  width: 18px;
  height: 18px;
  color: var(--brand-primary);
}

[data-theme="dark"] .cta__benefits svg {
  color: var(--brand-secondary);
}

/* ----------------------------------------
   Value Grid - 6 cards layout
   ---------------------------------------- */
@media (min-width: 768px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ----------------------------------------
   Partners Page
   ---------------------------------------- */
.partners-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.partners-intro__text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-color-strong);
}

.partner-card__logo {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-3);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .partner-card__logo {
  background: var(--gray-800);
}

.partner-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-card__name {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.partner-card__category {
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.partner-card__description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ----------------------------------------
   Mobile Responsive Styles
   ---------------------------------------- */

/* Mobile: up to 480px */
@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }

  .container {
    padding: 0 var(--space-4);
  }

  /* Header */
  .logo__icon {
    width: 36px;
    height: 36px;
  }

  .logo__text {
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-bottom: var(--space-12);
    align-items: flex-start;
  }

  .hero__content {
    padding-top: var(--space-12);
  }

  .hero__title {
    font-size: var(--text-xl);
    letter-spacing: 0.15em;
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__badge {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: var(--space-1) var(--space-3);
    margin-top: var(--space-8);
  }

  /* Features Bar */
  .features-bar {
    padding: var(--space-10) 0;
  }

  .features-bar__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .features-bar__title {
    font-size: var(--text-base);
    letter-spacing: 0.15em;
  }

  .features-bar__icon {
    width: 48px;
    height: 48px;
  }

  /* Section Headers */
  .section__header {
    margin-bottom: var(--space-10);
  }

  .section__header h2 {
    font-size: var(--text-xl);
    letter-spacing: 0.15em;
  }

  .section__header p {
    font-size: var(--text-base);
  }

  /* Service Cards */
  .service-card {
    padding: var(--space-6);
  }

  .service-card__title {
    font-size: var(--text-base);
    letter-spacing: 0.1em;
  }

  /* Location Stats */
  .location-stats {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .location-stat {
    padding: var(--space-4);
  }

  .location-stat__value {
    font-size: var(--text-xl);
  }

  .location-content h2 {
    font-size: var(--text-xl);
    letter-spacing: 0.15em;
  }

  /* Process Steps */
  .process-step {
    padding: var(--space-6);
  }

  .process-step__title {
    font-size: var(--text-lg);
  }

  /* Property Cards */
  .property-card__body {
    padding: var(--space-4);
  }

  .property-card__title {
    font-size: var(--text-lg);
  }

  .property-card__stats {
    gap: var(--space-4);
  }

  /* Value Cards */
  .value-card {
    padding: var(--space-6);
  }

  .value-card__title {
    font-size: var(--text-lg);
  }

  /* Expect Section */
  .expect-content h2 {
    font-size: var(--text-xl);
    letter-spacing: 0.15em;
  }

  .expect-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--space-6);
    max-width: 100%;
  }

  /* CTA */
  .cta {
    padding: var(--space-16) 0;
  }

  .cta__content {
    padding: var(--space-8) var(--space-6);
  }

  .cta__title {
    font-size: var(--text-lg);
    letter-spacing: 0.1em;
  }

  .cta__text {
    font-size: var(--text-base);
  }

  .cta__benefits {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }

  .cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: var(--space-10) 0 var(--space-6);
  }

  .footer__grid {
    gap: var(--space-8);
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }
}

/* Tablet: 481px to 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .hero__title {
    font-size: var(--text-2xl);
    letter-spacing: 0.2em;
  }

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

  .features-bar__title {
    font-size: var(--text-base);
    letter-spacing: 0.2em;
  }

  .location-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .section__header h2 {
    letter-spacing: 0.2em;
  }

  .cta__content {
    padding: var(--space-10);
  }

  .cta__title {
    font-size: var(--text-xl);
  }

  .expect-card {
    bottom: -16px;
    right: -16px;
    max-width: 240px;
    padding: var(--space-4);
  }
}

/* Small screens: scale logo text */
@media (max-width: 768px) {
  .header .logo__text {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 480px) {
  .header .logo__text {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .header .logo__icon {
    width: 32px;
    height: 32px;
  }

  .header .logo {
    gap: var(--space-2);
  }
}

@media (max-width: 380px) {
  .header .logo__text {
    font-size: 0.6rem;
    letter-spacing: 0.03em;
  }

  .hero__title {
    font-size: var(--text-lg);
  }
}

/* FAQ Mobile Responsive */
@media (max-width: 480px) {
  .faq__question {
    padding: var(--space-4) var(--space-4);
    font-size: var(--text-base);
  }

  .faq__answer-inner {
    padding: 0 var(--space-4) var(--space-4);
    font-size: var(--text-sm);
  }

  .faq__icon {
    width: 20px;
    height: 20px;
  }
}

/* Page Header Mobile */
@media (max-width: 480px) {
  .page-header {
    padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-10);
  }

  .page-header h1 {
    font-size: var(--text-xl);
    letter-spacing: 0.15em;
  }

  .page-header p {
    font-size: var(--text-base);
  }
}

/* Contact Page Mobile */
@media (max-width: 480px) {
  .contact-info {
    padding: var(--space-6);
  }

  .contact-info h3 {
    font-size: var(--text-lg);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
  }

  .contact-info__item {
    padding: var(--space-3);
  }

  .contact-info__icon {
    width: 20px;
    height: 20px;
  }

  .form {
    padding: var(--space-6);
  }

  .form__input,
  .form__textarea,
  .form__select {
    padding: var(--space-3);
    font-size: var(--text-sm);
  }

  .form__label {
    font-size: var(--text-xs);
  }

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