/* ==========================================================================
   Kilment International Building Construction — Premium Design System v2.0
   Luxury Architectural Theme: Metallic Gold · Obsidian Black · Crisp White
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&family=Changa:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Readex+Pro:wght@300;400;500;600;700&family=Vazirmatn:wght@300;400;500;600;700;800&family=Cairo:wght@400;600;700;800;900&family=Tajawal:wght@400;500;700;800&family=Cinzel:wght@400;500;600;700;800;900&display=swap');

/* Prevent horizontal scroll caused by AOS transforms */
html, body { overflow-x: hidden; }

/* Services section title: readable size on small phones */
@media (max-width: 639px) {
  [data-i18n="services_title"] { font-size: clamp(16px, calc((100vw - 40px) / 20), 20px) !important; line-height: 1.35; }
}
/* Services section subtitle: slightly larger on mobile */
@media (max-width: 639px) {
  #services [data-i18n="services_subtitle"] { font-size: 13px !important; }
}

/* Stat value "مشاريع متعددة" / "Multiple Projects": single line, smaller */
@media (max-width: 639px) {
  .stat-card-luxury .stat-val-text[data-i18n="stat_2_val"] { font-size: clamp(9px, calc((100vw - 40px) / 34), 14px) !important; white-space: nowrap; }
}
/* Stat value "Experience & Innovation": single line in English on mobile */
@media (max-width: 639px) {
  html[dir="ltr"] .stat-card-luxury .stat-val-text[data-i18n="stat_1_val"] { font-size: clamp(8px, calc((100vw - 40px) / 40), 12px) !important; white-space: nowrap; }
}
/* Stat value "Multiple Projects": single line in English on mobile */
@media (max-width: 639px) {
  html[dir="ltr"] .stat-card-luxury .stat-val-text[data-i18n="stat_2_val"] { font-size: clamp(8px, calc((100vw - 40px) / 42), 12px) !important; white-space: nowrap; }
}
@media (min-width: 1024px) {
  .stat-card-luxury .stat-val-text[data-i18n="stat_2_val"] { font-size: 17px !important; }
}

/* Hero badge: keep on a single line in English on mobile */
@media (max-width: 639px) {
  html[dir="ltr"] [data-i18n="hero_badge"] { font-size: clamp(9px, calc((100vw - 40px) / 36), 12px) !important; white-space: nowrap; }
}
/* Hero badge: keep on a single line in Arabic on mobile */
@media (max-width: 639px) {
  html[dir="rtl"] [data-i18n="hero_badge"] { font-size: clamp(11px, calc((100vw - 40px) / 29), 13px) !important; white-space: nowrap; }
}
/* Hero CTAs: tighter gap on mobile so English text stays on one line */
@media (max-width: 639px) {
  #hero .btn-gold-luxury, #hero .btn-outline-gold { gap: 6px !important; }
}

/* Footer copyright: single line in English on mobile */
@media (max-width: 639px) {
  html[dir="ltr"] [data-i18n="copyright"] { font-size: 9px !important; white-space: nowrap; }
}
/* Footer copyright: single line in Arabic on small phones */
@media (max-width: 639px) {
  html[dir="rtl"] [data-i18n="copyright"] { font-size: clamp(9px, calc((100vw - 40px) / 28), 11px) !important; white-space: nowrap; }
}

/* Testimonials: exactly one full card per screen on mobile */
@media (max-width: 767px) {
  .testimonials-slider .swiper-slide { width: 100% !important; }
  .testimonials-slider { overflow: hidden; }
}

/* ─── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  --gold-primary:   #D4AF37;
  --gold-light:     #F3E5AB;
  --gold-dark:      #9A741C;
  --gold-gradient:  linear-gradient(135deg, #AA771C 0%, #D4AF37 50%, #FDF0A6 75%, #AA771C 100%);
  --gold-glow:      0 0 30px rgba(212, 175, 55, 0.4);
  --gold-subtle:    rgba(212, 175, 55, 0.06);
  --bg-dark:        #0A0B0E;
  --bg-deeper:      #050608;
  --bg-card:        rgba(16, 17, 24, 0.80);
  --bg-card-hover:  rgba(24, 26, 38, 0.90);
  --text-main:      #F0F1F5;
  --text-muted:     #8C93A8;
  --border-gold:    rgba(212, 175, 55, 0.22);
  --border-subtle:  rgba(255, 255, 255, 0.06);
  --radius-card:    18px;
  --radius-lg:      24px;
  --shadow-card:    0 8px 32px rgba(0,0,0,0.45);
  --shadow-gold:    0 12px 40px rgba(212, 175, 55, 0.18);
  --font-heading:   'Alexandria', 'Cairo', system-ui, sans-serif;
  --font-sub:       'Changa', 'Tajawal', sans-serif;
  --font-body:      'Readex Pro', 'Vazirmatn', system-ui, sans-serif;
  --font-en:        'Cinzel', 'Playfair Display', serif;
  --font-en-body:   'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ─── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deeper); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #AA771C, #D4AF37); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Direction-aware ───────────────────────────────────────────────────── */
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="ltr"] body { direction: ltr; text-align: left; font-family: var(--font-en-body); }

html[dir="ltr"] body,
html[dir="ltr"] h1, html[dir="ltr"] h2, html[dir="ltr"] h3,
html[dir="ltr"] h4, html[dir="ltr"] h5, html[dir="ltr"] h6,
html[dir="ltr"] .font-heading {
  font-family: var(--font-en);
  letter-spacing: -0.01em;
}
html[dir="ltr"] .nav-link, html[dir="ltr"] .mobile-nav-link,
html[dir="ltr"] .btn-gold-luxury, html[dir="ltr"] .btn-outline-gold,
html[dir="ltr"] .section-subtitle, html[dir="ltr"] .filter-btn {
  font-family: var(--font-en);
  letter-spacing: 0;
}

/* ─── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6, .font-heading { font-family: var(--font-heading); letter-spacing: -0.015em; }
h1 { line-height: 1.12; }
h2 { line-height: 1.22; margin-bottom: 1.25rem; }
h3 { line-height: 1.32; margin-bottom: 0.75rem; }
p  { line-height: 1.88; margin-bottom: 1rem; }

.nav-link, .mobile-nav-link, .btn-gold-luxury,
.btn-outline-gold, .section-subtitle, .filter-btn { font-family: var(--font-sub); }

.counter-val, .stat-num, .ghost-number, .why-number {
  font-family: 'Changa', var(--font-heading);
  font-weight: 900;
}

/* ─── Section Spacing ───────────────────────────────────────────────────── */
section { position: relative; }
.section-spacing { padding-top: 1.5rem; padding-bottom: 1.5rem; }
@media (min-width: 768px)  { .section-spacing { padding-top: 2rem; padding-bottom: 2rem; } }
@media (min-width: 1024px) { .section-spacing { padding-top: 2.5rem; padding-bottom: 2.5rem; } }

.section-title-wrap { margin-bottom: 1.25rem; }
@media (min-width: 768px) { .section-title-wrap { margin-bottom: 1.5rem; } }

/* ─── Section Subtitle ──────────────────────────────────────────────────── */
.section-subtitle {
  color: var(--gold-primary);
  font-family: var(--font-sub);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.section-subtitle::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-gradient);
  display: inline-block;
  border-radius: 2px;
}
html[dir="ltr"] .section-subtitle { flex-direction: row-reverse; }
html[dir="ltr"] .section-subtitle::before { display: none; }
html[dir="ltr"] .section-subtitle::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-gradient);
  display: inline-block;
  border-radius: 2px;
}

/* ─── Gold Gradient Text ────────────────────────────────────────────────── */
.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1.35;
  padding-bottom: 4px;
}

/* ─── Smooth-scroll offset for fixed navbar ─────────────────────────────── */
section[id] { scroll-margin-top: 88px; }

/* ─── Glassmorphism ─────────────────────────────────────────────────────── */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
}
.glass-nav {
  background: rgba(8, 9, 13, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* ─── Geometric Background Pattern ─────────────────────────────────────── */
.geo-bg {
  background-image:
    linear-gradient(rgba(212,175,55,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.geo-bg-dense {
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ─── Mobile menu animation ─────────────────────────────────────────────── */
#mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  border-bottom: 1px solid transparent;
  transition: max-height 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease, transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#mobile-menu.open {
  max-height: 620px;
  opacity: 1;
  transform: translateY(0);
  border-bottom-color: rgba(212, 175, 55, 0.15);
}

/* ─── Preloader ─────────────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(145deg, #050608 0%, #0A0B0E 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease-out, visibility 0.9s ease-out;
}
#preloader.loaded { opacity: 0; visibility: hidden; }

.preloader-scale { display: flex; flex-direction: column; align-items: center; transform: scale(2); }
@media (max-width: 639px) {
  .preloader-scale { transform: scale(1.4); }
}

.loader-glow {
  width: 140px;
  height: 140px;
  animation: pulseGlow 2s infinite alternate ease-in-out;
}
@keyframes pulseGlow {
  0%   { transform: scale(0.95); filter: drop-shadow(0 0 12px rgba(212,175,55,0.4)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 40px rgba(212,175,55,0.9)); }
}
.loader-bar-container {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 28px;
}
.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  box-shadow: 0 0 18px #D4AF37;
  transition: width 0.3s ease;
}

/* ─── Navbar ────────────────────────────────────────────────────────────── */
.nav-link {
  position: relative;
  padding-bottom: 4px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
html[dir="ltr"] .nav-link::after { right: auto; left: 0; }
.nav-link:hover, .nav-link.active-link { color: var(--gold-primary); }
.nav-link:hover::after, .nav-link.active-link::after { width: 100%; }

/* ─── Hero Decorative Lines ─────────────────────────────────────────────── */
.hero-geo-line {
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
}

/* ─── Counters (About) ──────────────────────────────────────────────────── */
.stats-count-card {
  position: relative;
  background: rgba(12, 13, 20, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 18px;
  padding: 1.4rem 0.75rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.stats-count-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -160%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.75s ease;
  z-index: 1;
}
.stats-count-card:hover::before { left: 160%; }
.stats-count-card:hover { border-color: rgba(212, 175, 55, 0.6); }
.stats-count-card > * { position: relative; z-index: 2; }
.stats-count-card i {
  font-size: 22px;
  margin-bottom: 0.55rem;
  display: block;
}
.stats-count-card .stats-num {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 0.6rem;
  font-weight: 900;
}
.stats-count-card p {
  font-size: 12px;
  font-weight: 600;
  margin-top: 0.35rem;
  line-height: 1.5;
}
.stats-count-card .counter-val, .stats-count-card .text-white { font-size: inherit; }
.stats-count-card .kibcc-brand { font-size: 34px; letter-spacing: 3px; }

/* Counters: compact luxury cards on mobile */
@media (max-width: 639px) {
  .stats-count-card {
    padding: 1rem 0.5rem;
    border-radius: 14px;
  }
  .stats-count-card i {
    font-size: 15px;
    margin-bottom: 0.4rem;
  }
  .stats-count-card .stats-num {
    font-size: 26px;
    margin-bottom: 0.45rem;
  }
  .stats-count-card .kibcc-brand { font-size: 22px; letter-spacing: 2px; }
  .stats-count-card .w-8 { margin-bottom: 0.4rem; }
  .stats-count-card p {
    font-size: 9px;
    margin-top: 0.3rem;
    line-height: 1.45;
  }
}
/* Counters: keep English labels on one line on mobile */
@media (max-width: 639px) {
  html[dir="ltr"] .stats-count-card p { font-size: 8px !important; white-space: nowrap; }
}

/* ─── Stat Cards (Hero) ─────────────────────────────────────────────────── */
@media (max-width: 639px) {
  .stat-card-luxury { padding: 0.5rem !important; }
  .stat-card-luxury .stat-val-text { font-size: 14px; }
  .stat-card-luxury p { font-size: 9px; }
  .stat-card-luxury span { font-size: 8px; }
  .stat-card-luxury .stat-icon-glow { width: 32px; height: 32px; border-radius: 10px; font-size: 12px; margin-bottom: 0.35rem; }
  .hero-stat-grid { gap: 0.5rem !important; }
  .stat-card-luxury .stat-val-text { margin-bottom: 0.25rem !important; }
  .stat-card-luxury p { margin-bottom: 0.2rem !important; }
}

.stat-card-luxury {
  position: relative;
  background: rgba(12, 13, 20, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 32px rgba(0,0,0,0.45);
}
.stat-card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -160%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.75s ease;
  z-index: 1;
}
.stat-card-luxury:hover::before { left: 160%; }
.stat-card-luxury:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(212,175,55,0.85);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.3);
}
.stat-card-luxury > * { position: relative; z-index: 2; }

.stat-icon-glow {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(170,119,28,0.22), rgba(212,175,55,0.08));
  border: 1.5px solid rgba(212,175,55,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(212,175,55,0.12);
}
.stat-card-luxury:hover .stat-icon-glow {
  transform: rotate(-8deg) scale(1.15);
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 0 28px rgba(212,175,55,0.7);
  border-color: transparent;
}
.stat-val-text { font-family: 'Changa','Alexandria',sans-serif; font-weight: 800; letter-spacing: -0.02em; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-gold-luxury {
  position: relative;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 22px rgba(212,175,55,0.28);
  z-index: 1;
  cursor: pointer;
  border: none;
}
.btn-gold-luxury::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  transition: left 0.6s;
  z-index: 2;
}
.btn-gold-luxury:hover::before { left: 100%; }
.btn-gold-luxury:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(212,175,55,0.55); color: #000; }

.btn-outline-gold {
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.35s ease;
  background: rgba(212,175,55,0.04);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: var(--gold-glow);
  transform: translateY(-3px);
  border-color: transparent;
}

/* ─── Luxury Card Base ──────────────────────────────────────────────────── */
.luxury-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.luxury-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.55);
  box-shadow: var(--shadow-card), 0 0 24px rgba(212,175,55,0.18);
  background: var(--bg-card-hover);
}

/* ─── Ghost Number (Service Cards) ─────────────────────────────────────── */
.ghost-number {
  position: absolute;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(212,175,55,0.055);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  top: -8px;
  left: -8px;
  transition: color 0.45s ease, transform 0.45s ease;
  z-index: 0;
}
html[dir="ltr"] .ghost-number { left: auto; right: -8px; }
.luxury-card:hover .ghost-number { color: rgba(212,175,55,0.13); transform: scale(1.08); }

/* Service card inner content above ghost */
.service-inner { position: relative; z-index: 1; }

/* Featured service card */
.service-card-featured {
  background: linear-gradient(145deg, rgba(170,119,28,0.18) 0%, rgba(212,175,55,0.07) 100%);
  border-color: rgba(212,175,55,0.45);
}
.service-card-featured:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.28);
}

/* Gold accent bar at bottom of service card on hover */
.service-accent-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
}
html[dir="ltr"] .service-accent-bar { transform-origin: left; }

/* ─── Services: compact horizontal cards on mobile ─────────────────────── */
@media (max-width: 639px) {
  #services .luxury-card { padding: 1rem 1.05rem; }
  #services .service-inner {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-areas: "icon title" "icon desc" "icon btn";
    column-gap: 0.85rem;
    row-gap: 0.4rem;
    align-items: start;
  }
  #services .service-inner > div:first-child {
    grid-area: icon;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    font-size: 1rem;
    border-radius: 0.75rem;
  }
  #services .service-inner h3 { grid-area: title; font-size: 0.95rem; margin-bottom: 0; padding-top: 0.15rem; line-height: 1.4; }
  #services .service-inner p  { grid-area: desc; font-size: 0.72rem; margin-bottom: 0.35rem; }
  #services .service-inner button { grid-area: btn; font-size: 0.7rem; gap: 0.35rem; }
  #services .service-inner button i { font-size: 9px; }
  /* smaller ghost number so it stays inside compact cards */
  #services .ghost-number { font-size: 3.4rem; top: -4px; left: -4px; }
  html[dir="ltr"] #services .ghost-number { left: auto; right: -4px; }
}

/* ─── Portfolio / Projects (Premium Luxury) ─────────────────────────────── */
.project-card {
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 28px 60px rgba(0,0,0,0.6), 0 0 36px rgba(212,175,55,0.12);
}

/* Decorative radial glows behind the portfolio grid */
#projects { position: relative; isolation: isolate; }
#projects::before,
#projects::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
#projects::before {
  top: -140px;
  right: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212,175,55,0.09) 0%, transparent 70%);
}
#projects::after {
  bottom: -140px;
  left: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
}
#projects > .container { position: relative; z-index: 1; }

/* Serial number badge on each project card */
.project-num {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #D4AF37;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(9,10,15,0.5);
  border: 1px solid rgba(212,175,55,0.45);
  backdrop-filter: blur(8px);
}
html[dir="ltr"] .project-num { right: auto; left: 14px; }

/* Gold "view details" bar sliding up on hover */
.project-details-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 16px;
  background: var(--gold-gradient);
  color: #0a0b10;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transform: translateY(102%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease;
}
.project-card:hover .project-details-bar { transform: translateY(0); opacity: 1; }

.project-img-container { overflow: hidden; position: relative; }
.project-img-container img {
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover .project-img-container img { transform: scale(1.08); }

.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9,10,15,0.55) 65%, rgba(9,10,15,0.96) 100%);
  opacity: 0.92;
  transition: opacity 0.45s ease;
}
.project-card:hover .project-overlay { opacity: 1; }

/* Gold pill tag */
.project-pill {
  display: inline-block;
  background: var(--gold-gradient);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 4px 13px;
  border-radius: 999px;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}

/* Featured chip (hero) */
.project-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 0.9rem;
  background: rgba(9,10,15,0.5);
  border: 1px solid rgba(212,175,55,0.45);
  backdrop-filter: blur(8px);
}
html[dir="ltr"] .project-chip { right: auto; left: 16px; }

/* Circular expand button with gold outline */
.project-expand-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 0.85rem;
  background: rgba(9,10,15,0.5);
  border: 1px solid rgba(212,175,55,0.45);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.35s ease;
}
.project-expand-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  transform: rotate(90deg) scale(1.08);
  box-shadow: var(--gold-glow);
}
.project-expand-lg { width: 46px; height: 46px; font-size: 1rem; }
html[dir="ltr"] .project-expand-btn { left: auto; right: 14px; }
html[dir="ltr"] .project-expand-lg { right: 16px; }

/* Premium grid: hero card on the right (60%) + natural 16:9 cards */
.projects-grid { display: grid; gap: 1.4rem; }

/* All project images display at natural 16:9 (video-frame) aspect ratio */
.project-img-container { aspect-ratio: 16 / 9; }
.projects-grid .project-card { align-self: start; }

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

@media (min-width: 768px) and (max-width: 1023px) {
  .projects-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* Filter Tabs */
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.85rem;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

/* ─── About Section ─────────────────────────────────────────────────────── */
.about-img-clip {
  clip-path: polygon(0 0, 94% 0, 100% 6%, 100% 100%, 6% 100%, 0 94%);
  transition: clip-path 0.5s ease;
}
.about-img-clip:hover {
  clip-path: polygon(0 0, 100% 0, 100% 0%, 100% 100%, 0% 100%, 0 100%);
}

/* Achievement bars */
.achievement-track {
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}
.achievement-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 2px;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}
.achievement-fill.run { width: var(--target-w); }

/* ─── Why Us Section ────────────────────────────────────────────────────── */
.why-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-areas: "icon content";
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-card);
  background: rgba(12,13,20,0.5);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}
.why-item:hover::before { opacity: 1; }
.why-item:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.35); }

/* Gold icon badge */
.why-icon {
  grid-area: icon;
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.06) 100%);
  border: 1px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.35rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.why-item:hover .why-icon {
  background: var(--gold-gradient);
  color: #0a0b10;
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}

/* Ghost number */
.why-number {
  position: absolute;
  top: -6px;
  left: -6px;
  font-size: 3.6rem;
  font-weight: 900;
  color: rgba(212,175,55,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  transition: color 0.45s ease, transform 0.45s ease;
}
html[dir="ltr"] .why-number { left: auto; right: -6px; }
.why-item:hover .why-number { color: rgba(212,175,55,0.14); transform: scale(1.08); }

/* Content column above ghost */
.why-content { grid-area: content; position: relative; z-index: 1; }

.why-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  margin: 0 0 0.9rem;
}
html[dir="ltr"] .why-divider { background: linear-gradient(270deg, var(--gold-primary), transparent); }

/* ─── Testimonials ──────────────────────────────────────────────────────── */
.testi-card {
  background: linear-gradient(165deg, rgba(18,19,28,0.92) 0%, rgba(10,11,16,0.97) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* soft gold glow in the corner */
.testi-card::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
  top: -90px;
  right: -90px;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}
html[dir="ltr"] .testi-card::before { right: auto; left: -90px; }
.testi-card:hover::before { opacity: 1; }
/* gold accent bar on hover */
.testi-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}
html[dir="ltr"] .testi-card::after { transform-origin: left; }
.testi-card:hover::after { transform: scaleX(1); }
.testi-card:hover {
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 30px rgba(212,175,55,0.14);
}

/* top row: quote badge + rating */
.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}
.testi-quote-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--gold-primary) 0%, #AA771C 100%);
  color: #0a0b10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 8px 22px rgba(212,175,55,0.35);
  transition: transform 0.4s ease;
}
.testi-card:hover .testi-quote-badge { box-shadow: 0 8px 26px rgba(212,175,55,0.5); }
.testi-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 9999px;
  padding: 0.4rem 0.9rem;
}
.testi-stars { color: var(--gold-primary); font-size: 0.78rem; letter-spacing: 2px; }
.testi-score { color: var(--gold-primary); font-weight: 800; font-size: 0.72rem; }

/* quote text */
.testi-text {
  color: #d7d9e0;
  font-size: 0.9rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  margin: 0;
  flex: 1;
}

/* Line-style swiper pagination */
.testi-pagination .swiper-pagination-bullet {
  width: 22px !important;
  height: 2px !important;
  border-radius: 2px !important;
  background: rgba(212,175,55,0.3) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  margin: 0 3px !important;
}
.testi-pagination .swiper-pagination-bullet-active {
  width: 48px !important;
  background: var(--gold-primary) !important;
  box-shadow: 0 0 12px rgba(212,175,55,0.5) !important;
}

/* ─── Contact Form — Underline Inputs ───────────────────────────────────── */
.underline-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  border-radius: 0;
  padding: 14px 0 10px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-family: var(--font-body);
  width: 100%;
  transition: border-color 0.3s ease;
  outline: none;
}
.underline-input:focus { border-bottom-color: var(--gold-primary); }
.underline-input::placeholder { color: rgba(140,147,168,0.55); font-size: 0.88rem; }
.underline-input option { background: #12131A; color: var(--text-main); }

.input-group {
  position: relative;
  padding-top: 8px;
}
.input-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 2px;
}

/* ─── Contact Cards ─────────────────────────────────────────────────────── */
.contact-action-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(145deg, rgba(20,22,32,0.72) 0%, rgba(12,13,20,0.55) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  transition: all 0.35s ease;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.contact-action-card:hover {
  border-color: rgba(212,175,55,0.65);
  background: rgba(18,20,30,0.9);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.45), 0 0 22px rgba(212,175,55,0.14);
}
.contact-action-card:hover .contact-card-arrow, .contact-action-card:hover i.fa-arrow-left, .contact-action-card:hover i.fa-arrow-right { opacity: 1; }

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: #0a0b10;
  background: linear-gradient(145deg, var(--gold-primary) 0%, #AA771C 100%);
  box-shadow: 0 6px 18px rgba(212,175,55,0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.contact-action-card:hover .contact-icon-box { transform: scale(1.1) rotate(-4deg); box-shadow: 0 8px 24px rgba(212,175,55,0.45); }

/* WhatsApp card accent */
.wa-card { border-color: rgba(37,211,102,0.28); }
.wa-card:hover { border-color: rgba(37,211,102,0.65); box-shadow: 0 14px 36px rgba(0,0,0,0.45), 0 0 22px rgba(37,211,102,0.15); }
.wa-box {
  background: linear-gradient(145deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37,211,102,0.28);
}
.contact-action-card:hover .wa-box { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }

/* 24/7 pill */
.contact-247 {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0a0b10;
  background: linear-gradient(145deg, #25D366 0%, #16a34a 100%);
  border-radius: 9999px;
  padding: 0.28rem 0.55rem;
  box-shadow: 0 0 12px rgba(37,211,102,0.4);
  white-space: nowrap;
}

/* Response time badge */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
}
.response-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

/* ─── Contact Form Panel glow ───────────────────────────────────────────── */
.form-panel::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  bottom: -110px;
  left: -110px;
  pointer-events: none;
}
html[dir="ltr"] .form-panel::before { left: auto; right: -110px; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer-top-bar {
  height: 3px;
  background: var(--gold-gradient);
  width: 100%;
  box-shadow: 0 0 20px rgba(212,175,55,0.35);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 4px 0;
}
.footer-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}
.footer-link:hover { color: var(--gold-primary); padding-right: 4px; }
html[dir="ltr"] .footer-link:hover { padding-right: 0; padding-left: 4px; }
.footer-link:hover::before { width: 14px; }

/* ─── Floating Buttons ──────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 96px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  text-decoration: none;
}
html[dir="rtl"] .whatsapp-float { left: 28px; right: auto; }
html[dir="ltr"] .whatsapp-float { right: 28px; left: auto; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.65); color: #fff; }

.instagram-float {
  position: fixed;
  bottom: 156px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #405DE6, #C13584, #F77737);
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(225,48,108,0.45);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  cursor: pointer;
}
html[dir="rtl"] .instagram-float { left: 28px; right: auto; }
html[dir="ltr"] .instagram-float { right: 28px; left: auto; }
.instagram-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(225,48,108,0.65); }

.back-to-top {
  position: fixed;
  bottom: 28px;
  width: 48px;
  height: 48px;
  background: rgba(12,13,20,0.92);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
html[dir="rtl"] .back-to-top { left: 28px; right: auto; }
html[dir="ltr"] .back-to-top { right: 28px; left: auto; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-gradient); color: #000; box-shadow: var(--gold-glow); transform: translateY(-3px); }

/* ─── Modal ─────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-container { transform: scale(0.92) translateY(20px); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.modal-overlay.active .modal-container { transform: scale(1) translateY(0); }

.modal-logo-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--gold-primary) 0%, #AA771C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(212,175,55,0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}
.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.25);
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 2;
}
.modal-close-btn:hover {
  background: var(--gold-gradient);
  color: #0a0b10;
  box-shadow: var(--gold-glow);
}
html[dir="rtl"] .modal-close-btn { left: 1rem; right: auto; }
html[dir="ltr"] .modal-close-btn { right: 1rem; left: auto; }
html[dir="ltr"] #projectModal .close-modal { left: auto; right: 1rem; }

@media (max-width: 639px) {
  #quoteModal .modal-container {
    padding: 1.5rem 1.25rem 1.75rem;
    max-height: 94vh;
  }
  #quoteModal .underline-input { font-size: 1rem; }
  #quoteModal .underline-input::placeholder { font-size: 0.95rem; }
  #quoteModal .btn-gold-luxury { padding-top: 0.95rem; padding-bottom: 0.95rem; }
  #quoteModal .input-group { padding-top: 5px; }
}

/* ─── Swiper Overrides ──────────────────────────────────────────────────── */
.swiper-pagination-bullet { background: rgba(212,175,55,0.3) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active {
  background: var(--gold-primary) !important;
  width: 24px !important;
  border-radius: 10px !important;
}

/* ─── Floating animation ────────────────────────────────────────────────── */
@keyframes floatAnim { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.floating-elem { animation: floatAnim 5s ease-in-out infinite; }

/* ─── Animated gradient border ──────────────────────────────────────────── */
@keyframes borderRotate { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* ─── Miscellaneous helpers ─────────────────────────────────────────────── */
.dir-ltr { direction: ltr !important; unicode-bidi: embed; }
html[dir="ltr"] .dir-ltr { text-align: left; }
html[dir="rtl"]  .dir-ltr { text-align: right; }

.text-balance { text-wrap: balance; }

/* Thin gold separator line */
.gold-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 0 auto;
  width: 80%;
}

/* partners marquee */
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.partner-pill:hover { border-color: var(--border-gold); color: var(--gold-primary); }

/* ─── LTR Layout Overrides ──────────────────────────────────────────────── */
html[dir="ltr"] .footer-link:hover { padding-left: 4px; padding-right: 0; }
html[dir="ltr"] .ghost-number { left: auto; right: -8px; }

/* ─── Responsive Utilities ──────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (max-width: 639px) {
  .projects-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
  .why-item { grid-template-columns: 46px 1fr; grid-template-areas: "icon content"; gap: 0.85rem; padding: 1.1rem 1.05rem; }
  .why-icon { width: 44px; height: 44px; border-radius: 0.75rem; font-size: 1rem; }
  .why-number { font-size: 2.6rem; top: -4px; left: -4px; }
  html[dir="ltr"] .why-number { left: auto; right: -4px; }
  .why-divider { margin: 0 0 0.6rem; }
  .projects-filter { gap: 0.4rem; justify-content: center; }
  .filter-btn { font-size: 0.68rem; padding: 6px 10px; }
}
