/* ============================================================
   LUXORA INTERIORS — Design System
   Primary: #D4AA04 | Background: #FAFAF7 | Text: #333333
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --primary:      #D4AA04;
  --primary-dark: #a88a02;
  --primary-light:#f0cd2a;
  --primary-glow: rgba(212,170,4,0.18);
  --bg:           #FAFAF7;
  --bg-card:      #FFFFFF;
  --text:         #333333;
  --text-light:   #777777;
  --border:       #E5E5E5;
  --dark:         #1a1a1a;
  --dark-2:       #242424;
  --dark-3:       #2e2e2e;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold:  0 8px 30px rgba(212,170,4,0.25);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* ── HTMX Loading Bar ────────────────────────────────────── */
#htmx-loader {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 9999;
  transition: width 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
#htmx-loader.htmx-loading { width: 70%; opacity: 1; }
#htmx-loader.htmx-loaded  { width: 100%; opacity: 0; }

/* ── Navbar ──────────────────────────────────────────────── */
.luxora-navbar {
  background: var(--dark);
  border-bottom: 1px solid rgba(212,170,4,0.2);
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1050;
}
.luxora-navbar.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--primary); }

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.9rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.dropdown-menu {
  background: var(--dark-2);
  border: 1px solid rgba(212,170,4,0.2);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  margin-top: 0.5rem !important;
}
.dropdown-item {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--primary-glow);
  color: var(--primary);
}

.navbar-toggler {
  border-color: rgba(212,170,4,0.4);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg {
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid rgba(212,170,4,0.4);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--primary); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-luxora {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary-luxora:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,170,4,0.4);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--dark);
}

.btn-outline-luxora {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-luxora:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.8rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--dark);
}

/* ── Section Styles ──────────────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Cards ───────────────────────────────────────────────── */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 0 0 4px 0;
  transition: height 0.4s ease;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 64px; height: 64px;
  background: var(--primary-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--dark);
  transform: scale(1.05);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p  { font-size: 0.9rem; color: var(--text-light); }

/* Project Cards */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.92) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: var(--transition);
}
.project-type {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50px;
  padding: 0.2rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.project-title { color: var(--white); font-size: 1.15rem; margin-bottom: 0; }

/* Testimonial Cards */
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,170,4,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,170,4,0.5);
  transform: translateY(-4px);
}
.stars { color: var(--primary); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px;
  background: var(--primary-glow);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 4rem 0;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(26,26,26,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── Why Choose Us ───────────────────────────────────────── */
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover {
  background: var(--primary-glow);
}
.why-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
}
.why-item h5 { font-size: 1rem; margin-bottom: 0.35rem; }
.why-item p  { font-size: 0.875rem; color: var(--text-light); margin: 0; }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── Process Page ────────────────────────────────────────── */
.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--border);
  transition: background 0.3s;
}
.process-step:hover::before { background: var(--primary); }
.process-step:hover {
  border-color: rgba(212,170,4,0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  min-width: 80px;
  transition: color 0.3s;
}
.process-step:hover .step-number { color: var(--primary); }
.step-icon {
  width: 56px; height: 56px;
  background: var(--primary-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--primary);
  color: var(--dark);
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--dark);
}
.gallery-grid {
  columns: 3 280px;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,170,4,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.contact-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.25rem;
  background: var(--primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
}

.form-control, .form-select {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  outline: none;
  background: var(--bg-card);
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero-subtitle { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.breadcrumb-luxora { display: flex; gap: 0.5rem; align-items: center; margin-top: 1rem; flex-wrap: wrap; }
.breadcrumb-luxora a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.breadcrumb-luxora a:hover { color: var(--primary); }
.breadcrumb-luxora span { font-size: 0.82rem; color: var(--primary); }
.breadcrumb-luxora i { font-size: 0.65rem; color: rgba(255,255,255,0.3); }

/* ── Sub-nav pills (interior/projects) ───────────────────── */
.sub-nav {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 3rem;
}
.sub-nav-link {
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  white-space: nowrap;
}
.sub-nav-link:hover, .sub-nav-link.active {
  background: var(--primary);
  color: var(--dark);
}

/* ── Footer ──────────────────────────────────────────────── */
.luxora-footer {
  background: var(--dark);
  border-top: 1px solid rgba(212,170,4,0.2);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 2rem;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--primary); }
.footer-desc { font-size: 0.9rem; line-height: 1.75; max-width: 300px; }
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.footer-link {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.footer-contact-item i { color: var(--primary); margin-top: 0.2rem; }
.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 3rem 0 2rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ── WhatsApp Float ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  z-index: 1000;
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  color: var(--white);
  box-shadow: 0 10px 35px rgba(37,211,102,0.65);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 35px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-fade-up   { animation: fadeInUp  0.7s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── Team Cards ──────────────────────────────────────────── */
.team-card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(212,170,4,0.3);
}
.team-img-wrap {
  height: 280px;
  overflow: hidden;
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-body { padding: 1.5rem; }
.team-name { font-size: 1.15rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 0.35rem; }
.team-exp  { font-size: 0.8rem; color: var(--text-light); }

/* ── Map wrapper ─────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* ── Interior/project image grids ───────────────────────── */
.img-grid-3 { columns: 3 240px; column-gap: 1rem; }
.img-grid-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.img-grid-item img {
  width: 100%; display: block;
  transition: transform 0.4s ease;
}
.img-grid-item:hover img { transform: scale(1.04); }

/* ── Award / Cert items ──────────────────────────────────── */
.award-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: var(--transition);
  margin-bottom: 0.75rem;
}
.award-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.award-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 60px;
}

/* ── Utility ─────────────────────────────────────────────── */
.text-primary-luxora { color: var(--primary) !important; }
.bg-primary-luxora   { background: var(--primary) !important; }
.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.divider-gold.center { margin: 0 auto 1.5rem; }

/* ── HTMX content swap transition ───────────────────────── */
#main-content.htmx-swapping {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
}
#main-content {
  transition: opacity 0.3s, transform 0.3s;
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .section { padding: 64px 0; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-value { font-size: 1.5rem; }
  .gallery-grid { columns: 2 200px; }
  .img-grid-3   { columns: 2 200px; }
}
@media (max-width: 767.98px) {
  .hero-section { min-height: 75vh; }
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .gallery-grid { columns: 1; }
  .sub-nav { overflow-x: auto; flex-wrap: nowrap; }
  .stat-value { font-size: 2rem; }
}
