@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary: #06080d;
  --bg-secondary: #0c1018;
  --bg-tertiary: #121824;
  --bg-card: rgba(18, 24, 36, 0.7);
  --gold: #c9a96e;
  --gold-light: #e2c992;
  --gold-dark: #a68b4b;
  --text-primary: #f5f0e8;
  --text-secondary: #a0a8b8;
  --text-muted: #6b7280;
  --accent: #c9a96e;
  --glass-bg: rgba(18, 24, 36, 0.55);
  --glass-border: rgba(201, 169, 110, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --navy: #0f1729;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] {
  --bg-primary: #faf8f5;
  --bg-secondary: #f0ece4;
  --bg-tertiary: #e8e2d8;
  --bg-card: rgba(255, 255, 255, 0.8);
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #8a8a9a;
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(201, 169, 110, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --navy: #f5f0e8;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 17px;
}

/* ── Preloader ── */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner {
  text-align: center;
}
.preloader-logo {
  font-family: 'Poppins', serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 8px;
  text-transform: uppercase;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 200px; height: 2px;
  background: var(--bg-tertiary);
  margin: 1.5rem auto 0;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 4px;
}

/* ── Selection ── */
::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  /* font-family: 'Poppins', serif; */
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--transition);
}

/* ── Navigation ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s var(--transition);
  background: #000000;
  opacity: .7;
}
.navbar.scrolled {
  background: rgba(6, 8, 13, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.8rem 0;
}
[data-theme="light"] .navbar.scrolled {
  background: rgba(250, 248, 245, 0.92);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', serif;
  font-size: 1.2rem;
  color: var(--gold);
  transform: rotate(45deg);
}
.nav-logo-icon span { transform: rotate(-45deg); }
.nav-logo-text {
  font-family: 'Poppins', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}
.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex; align-items: center; gap: 1rem;
}

.theme-toggle {
  width: 40px; height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  display: inline-block;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 28px; height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(6, 8, 13, 0.97);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: 'Poppins', serif;
  font-size: 2rem;
  color: var(--text-primary);
  letter-spacing: 3px;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── Hero Section (Single) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(6,8,13,0.85) 0%, rgba(6,8,13,0.4) 50%, rgba(6,8,13,0.7) 100%),
    url('assets/health-care/Kaddam_2.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.05) 0%, transparent 50%);
}

/* ── Hero Carousel ── */
.hero-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Slides Container */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: scale(1.08);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,8,13,0.82) 0%, rgba(6,8,13,0.35) 50%, rgba(6,8,13,0.65) 100%);
}
.hero-slide .hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.05) 0%, transparent 50%);
  z-index: 1;
}

/* Slide Content */
.hero-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-slide .hero-badge,
.hero-slide .hero-title,
.hero-slide .hero-desc,
.hero-slide .hero-actions {
  opacity: 0;
  transform: translateY(30px);
}
.hero-slide.active .hero-badge {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
.hero-slide.active .hero-title {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}
.hero-slide.active .hero-desc {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}
.hero-slide.active .hero-actions {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s ease 0.9s, transform 0.7s ease 0.9s;
}

/* Carousel Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 55px; height: 55px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(6,8,13,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--transition);
}
.carousel-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}
.carousel-prev { left: 2rem; }
.carousel-next { right: 2rem; }

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.carousel-dot {
  width: 12px; height: 12px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
  position: relative;
}
.carousel-dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.4s var(--transition-bounce);
}
.carousel-dot.active {
  border-color: var(--gold);
}
.carousel-dot.active::after {
  transform: scale(1);
}

/* Progress Bar */
.carousel-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 10;
}
.carousel-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
  transition: width 0.1s linear;
}

/* Slide Counter */
.carousel-counter {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 10;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}
.carousel-counter .current-slide {
  font-family: 'Poppins', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.carousel-counter .total-slides {
  font-size: 0.9rem;
}

/* ── Shared Hero Content (used by both .hero and .hero-carousel) ── */
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero-badge span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-title .gold { color: var(--gold); }
.hero-title .outline {
  -webkit-text-stroke: 1px var(--text-primary);
  color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* Buttons */
.btn-primary {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.4s var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero Side Stats */
.hero-stats {
  position: absolute;
  right: 2rem;
  bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 5;
  animation: fadeInUp 0.8s ease 1s both;
}
.hero-stat {
  text-align: right;
}
.hero-stat-num {
  font-family: 'Poppins', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Search Bar ── */
.search-section {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
}
.search-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.search-inner {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.search-group {
  flex: 1;
  min-width: 180px;
}
.search-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.search-group select,
.search-group input {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.search-group select option { background: var(--bg-secondary); }
.search-group select:focus,
.search-group input:focus {
  border-color: var(--gold);
}
.search-btn {
  padding: 0.75rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.search-btn:hover {
  box-shadow: 0 5px 20px rgba(201,169,110,0.3);
  transform: translateY(-1px);
}

/* ── Section Commons ── */
.section {
  padding: 7rem 2rem;
}
.section-container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-badge::before,
.section-badge::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Glass Card ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s var(--transition);
  overflow: hidden;
}
.glass-card:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* ── Property Cards ── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}
.property-card {
  position: relative;
  overflow: hidden;
}
.property-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.property-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.property-card:hover .property-img-wrap img {
  transform: scale(1.08);
}
.property-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 1rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.property-fav {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.property-fav:hover {
  background: var(--gold);
  color: var(--bg-primary);
}
.property-body {
  padding: 1.5rem;
}
.property-price {
  font-family: 'Poppins', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.property-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.property-loc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.property-features {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}
.property-feat {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.property-feat svg { width: 16px; height: 16px; stroke: var(--gold); }

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.why-card {
  padding: 2.5rem 2rem;
  text-align: center;
}
.why-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transition: all 0.4s ease;
}
.why-icon svg {
  transform: rotate(-45deg);
  width: 28px; height: 28px;
  stroke: var(--gold);
}
.why-card:hover .why-icon {
  background: var(--gold);
}
.why-card:hover .why-icon svg {
  stroke: var(--bg-primary);
}
.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.why-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  transition: height 0.5s var(--transition);
}
.service-card:hover::before { height: 100%; }
.service-num {
  font-family: 'Poppins', serif;
  font-size: 3rem;
  color: rgba(201,169,110,0.15);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.service-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.service-link:hover { gap: 1rem; }

/* ── Testimonials ── */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  padding: 2.5rem 2rem;
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  font-family: 'Poppins', serif;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-name {
  font-family: 'Poppins', serif;
  font-size: 1.1rem;
}
.testimonial-role {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* ── Stats ── */
.stats-section {
  position: relative;
  padding: 5rem 2rem;
  background:
    linear-gradient(135deg, rgba(6,8,13,0.9), rgba(6,8,13,0.85)),
    url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat;
  background-attachment: fixed;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 2rem 1rem;
}
.stat-number {
  font-family: 'Poppins', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ── CTA Banner ── */
.cta-section {
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Projects ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}
.project-card:first-child {
  grid-row: span 2;
  height: auto;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.project-card:hover img {
  transform: scale(1.05);
}
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,8,13,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.project-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.project-overlay p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 0.8rem;
}
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  color: var(--gold);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-right: none;
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  border: 1px solid var(--gold);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}
.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,8,13,0.8) 0%, rgba(6,8,13,0.6) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
}
.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
}
.page-hero-breadcrumb {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.page-hero-breadcrumb .gold { color: var(--gold); }

/* ── About Page ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story-img {
  position: relative;
}
.about-story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-story-img::after {
  content: '';
  position: absolute;
  top: 2rem; left: 2rem; right: -2rem; bottom: -2rem;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.3;
}
.about-story-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.about-story-text p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.about-story-text .signature {
  font-family: 'Poppins', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 1.5rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mission-card {
  padding: 3rem 2.5rem;
}
.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.mission-card p {
  color: var(--text-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.team-card {
  text-align: center;
}
.team-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}
.team-socials {
  position: absolute;
  bottom: -50px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  transition: bottom 0.4s var(--transition);
  padding: 1rem;
  background: linear-gradient(0deg, rgba(6,8,13,0.9), transparent);
}
.team-card:hover .team-socials { bottom: 0; }
.team-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.team-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}
.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}
.team-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
.achievement-card {
  padding: 2rem;
  text-align: center;
}
.achievement-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.achievement-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.achievement-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ── Contact Page ── */
.contact-grid {
  /* display: grid; */
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-card {
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.contact-info-icon {
  width: 55px; height: 55px; min-width: 55px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}
.contact-info-icon svg {
  transform: rotate(-45deg);
  width: 22px; height: 22px;
  stroke: var(--gold);
}
.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
}
.contact-info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-form-wrap {
  padding: 3rem;
}
.contact-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 0;
}
.form-group.full { grid-column: span 2; }
.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { min-height: 140px; }

.map-section {
  width: 100%;
  height: 400px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}
.map-section iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.8) contrast(1.1);
  opacity: 0.7;
  transition: all 0.4s ease;
}
.map-section:hover iframe {
  filter: grayscale(0.3);
  opacity: 1;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', serif;
  font-size: 1.15rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
  background: none; border: none; width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-toggle {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  font-weight: 300;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Gallery ── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.6rem 1.8rem;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.masonry-grid {
  columns: 3;
  column-gap: 1.5rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--transition);
  height: 250px;
  object-fit: cover;
 object-position: top;
}
.masonry-item:hover img {
  transform: scale(1.05);
}
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,8,13,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}
.masonry-overlay p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.masonry-overlay .zoom-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(6,8,13,0.35);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  background: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 500;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(201,169,110,0.4);
}

/* ── WhatsApp Button ── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; left: 2rem;
  width: 55px; height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  z-index: 500;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 25px rgba(37,211,102,0.6); }
}

/* ── Social Links Bar ── */
.social-links-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.social-link-circle {
  width: 55px; height: 55px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all 0.4s var(--transition);
}
.social-link-circle:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: translateY(-5px) rotate(5deg);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--transition);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--transition);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }
.stagger > *:nth-child(5) { transition-delay: 0.5s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* ── Divider ── */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-card:first-child { grid-row: span 1; height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .about-story-img::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { display: none; }
  .hero { min-height: 90vh; }
  .hero-carousel { min-height: 90vh; }
  .carousel-prev { left: 1rem; width: 42px; height: 42px; font-size: 1rem; }
  .carousel-next { right: 1rem; width: 42px; height: 42px; font-size: 1rem; }
  .carousel-counter { display: none; }
  .search-inner { flex-direction: column; }
  .search-group { min-width: 100%; }
  .properties-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .masonry-grid { columns: 2; }
  .testimonials-wrap { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number { font-size: 2.5rem; }
  .gallery-filters { gap: 0.5rem; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.7rem; }
  .masonry-grid { columns: 1; }
}