/* ============================================================
   BOLLYPOP BAND — Premium Dark Luxury Theme
   © 2025 Bollypop Entertainment Pvt. Ltd. | Built by Unicrats
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --black:      #0B0B0B;
  --black-soft: #111111;
  --black-card: #161616;
  --black-border:#1e1e1e;
  --gold:       #D4AF37;
  --gold-light: #e8cc6a;
  --gold-dark:  #a88a1e;
  --red:        #B22222;
  --red-light:  #d42b2b;
  --white:      #FFFFFF;
  --gray:       #8a8a8a;
  --gray-light: #c0c0c0;
  --heading:    'Montserrat', sans-serif;
  --body:       'Poppins', sans-serif;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 8px 40px rgba(212,175,55,0.12);
  --shadow-card:0 4px 30px rgba(0,0,0,0.6);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--body); }

/* ── Selection ───────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--black); }

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

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--gray-light); }

.gold { color: var(--gold); }
.red  { color: var(--red); }
.white { color: var(--white); }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }
.section-sm{ padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--heading);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
  margin-bottom: 56px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .section-label {
  justify-content: center;
}
.text-center .section-label::before { display: none; }
.text-center .section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  margin: 20px 0 40px;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 24px rgba(212,175,55,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.5);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-red {
  background: linear-gradient(135deg, var(--red), #8b0000);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(178,34,34,0.35);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(178,34,34,0.5);
}

.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* ── Gold border glow card ───────────────────────────────── */
.card-glow {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--gold), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
}
.card-glow:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-glow:hover::before { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--black-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 80px;
  width: auto;
  filter: brightness(1.1);
}
.logo-text {
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.logo-text span { color: var(--gold); }

nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: var(--transition);
  border-radius: 6px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px);
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
  transform-origin: center;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: var(--gold); }

.nav-cta { margin-left: 12px; }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--gray-light);
  transition: var(--transition);
}
.dropdown a:hover { color: var(--gold); background: rgba(212,175,55,0.06); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,11,11,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }

/* layered overlay: dark vignette top + strong bottom fade */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(11,11,11,0.55) 0%,
      rgba(11,11,11,0.60) 45%,
      rgba(11,11,11,0.90) 100%);
  z-index: 1;
}

/* container sits on top of overlay */
#hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 16px;
}

/* floating gold badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.40);
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  backdrop-filter: blur(14px);
}
.hero-badge span {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

/* headline */
.hero-title {
  font-family: var(--heading);
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title .gold-line {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-size: 0.9em;
}

/* subtitle */
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

/* CTA buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* glassmorphism stats bar */
.hero-stats {
  display: inline-flex;
  gap: 0;
  background: rgba(11,11,11,0.55);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  padding: 18px 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid rgba(212,175,55,0.18);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
  white-space: nowrap;
}

/* slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.hero-indicator.active {
  width: 26px;
  border-radius: 4px;
  background: var(--gold);
}

/* scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 28px;
  right: 36px;
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: bounce 2.2s infinite;
  cursor: pointer;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.scroll-arrow:hover { border-color: var(--gold); color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ═══════════════════════════════════════════════════════════
   TRUST STATS
═══════════════════════════════════════════════════════════ */
#trust {
  padding: 80px 0;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}
#trust::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.trust-item {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  border-right: 1px solid var(--black-border);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 12px;
  margin: 0 auto 14px;
  color: var(--gold);
}
.trust-icon svg { width: 22px; height: 22px; }

/* ═══════════════════════════════════════════════════════════
   ABOUT STRIP
═══════════════════════════════════════════════════════════ */
#about-strip {
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  inset: 0;
  right: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-float {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--black);
  box-shadow: var(--shadow);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 30px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.3;
}
.about-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.badge-pill {
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
#services { padding: 100px 0; background: var(--black-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }
.service-link svg { transition: var(--transition); }

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
#gallery { padding: 100px 0; }
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--black-border);
  color: var(--gray);
  transition: var(--transition);
  background: transparent;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--black-card);
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(212,175,55,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--red); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--black); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE
═══════════════════════════════════════════════════════════ */
#why-choose {
  padding: 100px 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}
#why-choose::before {
  content: 'BOLLYPOP';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(212,175,55,0.02);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}
.why-card:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 0 30px rgba(212,175,55,0.08);
}
.why-num {
  font-family: var(--heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(212,175,55,0.12);
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
}
.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--gold);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--white);
}
.why-card p { font-size: 0.88rem; color: var(--gray); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
#testimonials { padding: 100px 0; }
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: calc(100% / 3);
  padding: 0 12px;
}
.testimonial-inner {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  height: 100%;
  transition: var(--transition);
}
.testimonial-inner:hover {
  border-color: rgba(212,175,55,0.25);
  box-shadow: var(--shadow);
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  font-family: serif;
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.9rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  display: block;
}
.author-event {
  font-size: 0.78rem;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--black-border);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  background: transparent;
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--black-border);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
#faq {
  padding: 100px 0;
  background: var(--black-soft);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(212,175,55,0.3); }
.faq-question {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--gray);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   LEAD FORM / CTA
═══════════════════════════════════════════════════════════ */
#lead-form {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#lead-form::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(178,34,34,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lead-copy h2 { margin-bottom: 16px; }
.lead-copy p { color: var(--gray); margin-bottom: 36px; }
.lead-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--gray-light);
}
.lead-perk-icon {
  width: 36px; height: 36px;
  background: rgba(212,175,55,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 12px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════
   CITY PAGES
═══════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-thumb {
  height: 220px;
  background: var(--black-border);
  overflow: hidden;
}
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.blog-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.4;
}
.blog-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray);
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }

/* ── BLOG ARTICLE ── */
.article-hero { padding: 100px 0 60px; text-align: center; background: var(--black-soft); border-bottom: 1px solid var(--black-border); }
.article-hero .breadcrumb { justify-content: center; margin-bottom: 20px; }
.article-meta-top { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.article-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25); border-radius: 50px; padding: 5px 14px; }
.article-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--gray); }
.article-meta-item svg { color: var(--gold); }
.article-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; max-width: 860px; margin: 0 auto 20px; }
.article-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 680px; margin: 0 auto; line-height: 1.75; }
.article-featured-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius-lg); margin: 40px 0; display: block; }
.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin: 40px 0 16px; padding-left: 16px; border-left: 3px solid var(--gold); }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin: 28px 0 12px; }
.article-body p { font-size: 1rem; color: rgba(255,255,255,0.78); line-height: 1.85; margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 20px; }
.article-body li { font-size: 1rem; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 8px; }
.article-body strong { color: var(--white); font-weight: 600; }
.article-body .highlight-box { background: var(--black-card); border: 1px solid rgba(212,175,55,0.25); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 20px 24px; margin: 28px 0; }
.article-body .highlight-box p { margin: 0; color: rgba(255,255,255,0.85); }
.article-cta { background: var(--black-card); border: 1px solid rgba(212,175,55,0.2); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin-top: 60px; }
.article-cta h3 { font-size: 1.5rem; margin-bottom: 12px; }
.article-cta p { color: var(--gray); margin-bottom: 28px; }
.article-cta .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }

/* ── UNICRATS CREDIT ── */
.unicrats-credit { background: var(--black); border-top: 1px solid var(--black-border); padding: 18px 0; text-align: center; }
.unicrats-credit p { font-size: 0.82rem; color: var(--gray); }
.unicrats-credit a { color: var(--gold); font-weight: 600; text-decoration: none; }
.unicrats-credit a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}
.footer-top {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray);
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); gap: 10px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray);
}
.contact-icon {
  width: 36px; height: 36px;
  background: rgba(212,175,55,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  flex-shrink: 0;
  color: var(--gold);
}
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--black-border);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
}
.footer-bottom a { color: var(--gold); }
.footer-cities {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-cities a {
  font-size: 0.78rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer-cities a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   STICKY BUTTONS
═══════════════════════════════════════════════════════════ */
.sticky-btns {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.sticky-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: var(--transition);
  position: relative;
}
.sticky-btn:hover { transform: scale(1.1); }
.sticky-btn-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.sticky-btn:hover .sticky-btn-tooltip { opacity: 1; }
.sticky-wa { background: #25D366; color: var(--white); }
.sticky-call { background: var(--gold); color: var(--black); }
.sticky-book { background: var(--red); color: var(--white); }


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
═══════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo {
  height: 260px;
  background: linear-gradient(135deg, var(--black-border), #222);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 24px; }
.team-info h4 { color: var(--white); margin-bottom: 4px; }
.team-info span { font-size: 0.8rem; color: var(--gold); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
}
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 12px;
  margin-bottom: 14px;
  color: var(--gold);
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.value-card p { font-size: 0.82rem; color: var(--gray); }

/* ═══════════════════════════════════════════════════════════
   CITY PAGE SPECIFIC
═══════════════════════════════════════════════════════════ */
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.city-service-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: var(--transition);
}
.city-service-item:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateX(4px);
}
.city-service-icon {
  width: 44px; height: 44px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.city-service-icon svg { width: 22px; height: 22px; }
.city-service-item h4 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.city-service-item p { font-size: 0.85rem; color: var(--gray); }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════════════════════════
   INNER PAGE HERO (breadcrumb pages)
═══════════════════════════════════════════════════════════ */
.inner-hero {
  padding: 160px 0 80px;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.inner-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0,
    var(--gold) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 30px 30px;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   MEDIA QUERIES
═══════════════════════════════════════════════════════════ */
/* ── Tablet ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav .nav-link { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--black-border); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-card { min-width: 50%; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .city-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Base */
  html { font-size: 15px; }
  body { overflow-x: hidden; }
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }

  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.2rem; }
  .section-title { font-size: 1.65rem; }

  /* Header */
  .header-inner { padding: 0 20px; }
  .logo img { height: 60px; }

  /* Hero */
  .hero-content { padding: 0 20px; text-align: center; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-stats { padding: 12px 6px; gap: 0; }
  .hero-stat-item { padding: 0 14px; }
  .hero-stat-item .stat-num { font-size: 1.5rem; }
  .hero-stat-item .stat-label { font-size: 0.65rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Inner hero (subpages) */
  .inner-hero { padding: 120px 0 60px; }
  .inner-hero h1 { font-size: 1.8rem; }

  /* Article hero (blog) */
  .article-hero { padding: 110px 0 40px; }
  .article-title { font-size: 1.7rem; }
  .article-meta-top { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .article-featured-img { border-radius: var(--radius); }
  .article-body h2 { font-size: 1.2rem; }
  .article-body p { font-size: 0.95rem; }

  /* Grids → single column */
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .city-services-grid { grid-template-columns: 1fr; }
  .city-stats { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .filter-btns { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .filter-btn { font-size: 0.78rem; padding: 7px 14px; }

  /* Testimonials */
  .testimonial-card { min-width: 88%; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Values */
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-cities { flex-wrap: wrap; justify-content: center; gap: 10px; }

  /* Forms */
  .contact-form { padding: 28px 20px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; /* prevent iOS zoom */ }

  /* Sticky buttons */
  .sticky-btns { bottom: 80px; right: 16px; }
  .sticky-btn { width: 50px; height: 50px; }
  .sticky-btn-tooltip { display: none; }

  /* Unicrats bar */
  .unicrats-credit { padding: 14px 0; font-size: 0.8rem; }
}

/* ── Small mobile ──────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero stats hidden — too cramped */
  .hero-stats { display: none; }
  .hero-title { font-size: clamp(1.5rem, 8vw, 2rem); }

  /* Trust strip */
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: 1px solid var(--black-border); padding: 24px 12px; }
  .trust-item:nth-child(even) { border-right: none; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-form { padding: 20px 16px; }

  /* About img */
  .about-img-stack { height: 280px; }

  /* Inner hero */
  .inner-hero { padding: 100px 0 50px; }
  .inner-hero h1 { font-size: 1.5rem; }

  /* Blog article */
  .article-title { font-size: 1.4rem; }
  .article-cta { padding: 24px 16px; }
  .article-cta h3 { font-size: 1.1rem; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 0.9rem; }
  .btn-group { flex-direction: column; gap: 10px; }
  .btn-group .btn { width: 100%; justify-content: center; }

  /* FAQ */
  .faq-question { font-size: 0.9rem; padding: 16px; }

  /* City stats */
  .city-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .city-stat-item { padding: 16px; }
}
