/* ============================================================
   TRUECRAFT BUILDERS LLC — styles.css
   Color Scheme: Gold, Black, White
   Font: Bebas Neue (display) + Outfit (body) — Bold/Trade feel
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand Colors */
  --brand-primary:       #C9A84C;   /* Gold */
  --brand-secondary:     #A8893A;   /* Gold darkened 15% */
  --brand-accent:        #1A1A1A;   /* Near-black */
  --brand-accent-hover:  #2E2E2E;

  /* Gold Shades */
  --primary-50:   rgba(201, 168, 76, 0.12); /* Muted overlay gold */
  --primary-100:  rgba(201, 168, 76, 0.22);
  --primary-300:  #E2C47A;
  --primary-500:  #C9A84C;
  --primary-700:  #A8893A;
  --primary-900:  #4E3E17;   /* Darkened gold */

  /* Neutrals (Dark Theme Shift) */
  --color-dark:        #F3F3F3;   /* Light grey/white main text color */
  --color-mid:         #A5A5A5;   /* Muted text */
  --color-light:       #161618;   /* Alternate dark background */
  --color-white:       #1E1E20;   /* Base dark card/panel background */
  --color-border:      #2E2E31;   /* Subtle dark border */
  --color-pure-white:  #FFFFFF;   /* True white for overlays/headers */

  /* Layout */
  --section-padding:  100px;
  --container-max:    1200px;
  --radius-card:      14px;
  --radius-btn:       8px;

  /* Shadows */
  --shadow-card:       0 4px 24px rgba(0,0,0,0.16);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.35);

  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: #121213;
  /* Dark concrete wall texture — layered approach matching logo background */
  background-image: 
    radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201,168,76,0.02) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeBlend in='SourceGraphic' mode='multiply'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='0.28'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-x: hidden;
}

body.loaded { opacity: 1; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-family: var(--font-heading); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; line-height: 1.05; letter-spacing: 0.02em; }
h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.1; letter-spacing: 0.02em; }
h3 { font-family: var(--font-heading); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 400; letter-spacing: 0.03em; }
p  { font-size: 1rem; line-height: 1.78; }

/* ── Layout Utilities ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: var(--section-padding) 0; }

.bg-white  { background: var(--color-white); }
.bg-light  { background: var(--color-light); }
.bg-mid    { background: #1F1E22; }
.bg-dark   { background: #0E0E0F; }

.text-center { text-align: center; }
.text-white  { color: var(--color-pure-white); }

/* ── Section Label / Eyebrow ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--brand-primary);
}

.section-heading {
  color: var(--color-dark);
  margin-bottom: 16px;
}

.section-heading.white { color: var(--color-pure-white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--color-mid);
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-sub.white { color: rgba(255,255,255,0.8); }

/* ── Buttons — Gradient Glow Style ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #121213;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.55);
  filter: brightness(1.06);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(255,255,255,0.75);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  color: var(--color-pure-white);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-pure-white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--brand-primary);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  color: var(--brand-primary);
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--brand-primary);
  color: #121213;
}

/* ── Cards — Floating Shadow Style ── */
.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.25);
}

/* ── Animations ── */
.anim-target {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease calc(var(--i, 0) * 0.1s),
              transform 0.65s ease calc(var(--i, 0) * 0.1s);
}
.anim-target.animate-in { opacity: 1; transform: none; }

.fade-in-block { animation: fadeInSection 0.9s ease 0.2s both; }

@keyframes kenburns     { from { transform:scale(1) translateX(0); } to { transform:scale(1.08) translateX(-1%); } }
@keyframes slideDown    { from { transform:translateY(-40px); opacity:0; } to { transform:none; opacity:1; } }
@keyframes trustScroll  { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes fadeInSection{ from { opacity:0; } to { opacity:1; } }
@keyframes heroFadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes statBounce   { 0%{transform:scale(0.88);opacity:0;} 70%{transform:scale(1.04);} 100%{transform:scale(1);opacity:1;} }
@keyframes pulse        { 0%,100%{transform:scale(1);} 50%{transform:scale(1.04);} }
@keyframes shimmer      { 0%{background-position:-200% 0;} 100%{background-position:200% 0;} }
@keyframes floatBadge   { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }

/* ── TOP BAR ── */
.top-bar {
  background: #0E0E0F;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  font-family: var(--font-body);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--brand-primary); transition: color 0.2s; }
.top-bar a:hover { color: var(--color-pure-white); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 0;
}

main {
  margin-top: -96px;
}
.site-header.scrolled {
  background: rgba(30, 30, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: 72px;
  width: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12), 0 4px 16px rgba(0,0,0,0.4);
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}
.logo-img:hover {
  box-shadow: 0 0 0 4px rgba(201,168,76,0.3), 0 6px 20px rgba(0,0,0,0.5);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 2.0rem;
  letter-spacing: 0.06em;
  color: var(--color-pure-white);
  line-height: 1;
  transition: color 0.3s ease;
}
.logo-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-weight: 600;
}
.site-header.scrolled .logo-name { color: var(--color-dark); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-pure-white);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--brand-primary); }
.site-header.scrolled .nav-link { color: var(--color-dark); }
.site-header.scrolled .nav-link:hover { color: var(--brand-primary); }
.nav-link.active { color: var(--brand-primary); }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--color-pure-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.site-header.scrolled .hamburger span { background: var(--color-dark); }
.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 {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.open { visibility: visible; pointer-events: all; }
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--color-white);
  padding: 88px 28px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--brand-primary); }
.mobile-nav-cta { margin-top: 28px; width: 100%; text-align: center; }
.mobile-nav-contact { margin-top: 24px; }
.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-mid);
  font-size: 0.9rem;
  padding: 8px 0;
  transition: color 0.2s;
}
.mobile-nav-contact a:hover { color: var(--brand-primary); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--brand-primary);
  color: #121213;
  padding: 12px 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 0;
  animation: trustScroll 30s linear infinite;
  width: max-content;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #121213;
  opacity: 0.4;
}

/* ── HERO (Swiper slideshow) ── */
.hero-swiper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 12s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-inner {
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-primary);
  color: #121213;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
  animation: heroFadeUp 0.8s ease 0.05s both;
}
.hero-title {
  color: var(--color-pure-white);
  margin-bottom: 20px;
  animation: heroFadeUp 0.8s ease 0.1s both;
}
.hero-title span { color: var(--brand-primary); }
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 36px;
  max-width: 560px;
  animation: heroFadeUp 0.8s ease 0.3s both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: heroFadeUp 0.8s ease 0.5s both;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: heroFadeUp 0.8s ease 0.7s both;
}
.hero-trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-pure-white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}
.hero-trust-pill i { color: var(--brand-primary); font-size: 0.85rem; }
.hero-swiper .swiper-pagination-bullet { background: var(--color-pure-white); opacity: 0.5; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--brand-primary); opacity: 1; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-white);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.25);
}
.service-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--brand-primary);
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--color-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.about-img-main {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.about-img-badge {
  position: absolute;
  bottom: 24px; right: -24px;
  background: var(--brand-primary);
  color: var(--color-dark);
  text-align: center;
  padding: 20px 24px;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  animation: floatBadge 3.5s ease-in-out infinite;
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
}
.about-img-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-text { }
.about-checklist { margin: 24px 0; }
.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-dark);
}
.about-check-item i { color: var(--brand-primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ── STATS BAND ── */
.stats-band {
  background: #0E0E0F;
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.stat-item {
  text-align: center;
  color: var(--color-pure-white);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--brand-primary);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-suffix { font-size: 0.6em; }
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-item {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: 3px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.15);
  border-bottom-color: var(--brand-primary);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #121213;
  margin-bottom: 18px;
}
.why-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.why-desc { font-size: 0.9rem; color: var(--color-mid); line-height: 1.65; }

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), transparent);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 28px 20px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #121213;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.step-desc { font-size: 0.87rem; color: var(--color-mid); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: var(--section-padding) 0; background: #0E0E0F; }
.testimonials-section .section-label::before { background: var(--brand-primary); }
.swiper-slide.testimonial-slide {
  height: auto;
  display: flex;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: var(--brand-primary); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  letter-spacing: 0.04em;
}
.testimonial-author-source {
  font-size: 0.78rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-top: 4px;
}
#testimonialsPagination {
  margin-top: 32px;
  text-align: center;
}
#testimonialsPagination .swiper-pagination-bullet { background: rgba(255,255,255,0.4); }
#testimonialsPagination .swiper-pagination-bullet-active { background: var(--brand-primary); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 60%, var(--primary-900) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #121213;
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(0,0,0,0.7); margin-bottom: 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  background: #121213;
  color: var(--color-pure-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-dark:hover { background: #222; transform: translateY(-2px); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--brand-primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-primary);
  font-size: 0.9rem;
  transition: transform 0.3s, border-color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--brand-primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 0 20px; font-size: 0.93rem; color: var(--color-mid); line-height: 1.75; }

/* ── CONTACT SECTION ── */
.contact-section { padding: var(--section-padding) 0; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-map-side { display: flex; flex-direction: column; gap: 24px; }
.contact-map iframe {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-card);
  border: none;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}
.contact-info-card:hover { transform: translateX(4px); }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-mid); }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--color-dark); }

/* Multi-step Form */
.contact-form-side {}
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover);
  padding: 36px 32px;
}
.form-steps-nav {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.form-step-tab {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mid);
  background: transparent;
  border: none;
  border-right: 1px solid var(--color-border);
  cursor: default;
  transition: background 0.2s, color 0.2s;
}
.form-step-tab:last-child { border-right: none; }
.form-step-tab.active { background: var(--brand-primary); color: #121213; }
.form-step-tab.done { background: var(--primary-100); color: var(--brand-secondary); }

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

/* Step 1 — Service selection */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.service-select-btn {
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-white);
}
.service-select-btn i { display: block; font-size: 1.3rem; color: var(--brand-primary); margin-bottom: 6px; }
.service-select-btn.selected,
.service-select-btn:hover { border-color: var(--brand-primary); background: var(--primary-50); }

/* Step 2 — Budget/timeline */
.radio-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.radio-pill {
  label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--color-dark);
    transition: border-color 0.2s, background 0.2s;
  }
}
.radio-pill input[type="radio"] { display: none; }
.radio-pill input[type="radio"]:checked + label,
.radio-pill label:hover {
  border-color: var(--brand-primary);
  background: var(--primary-50);
  color: var(--brand-secondary);
}
.form-label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--color-mid); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.form-group { margin-bottom: 18px; }

/* Step 3 — Details */
.form-textarea {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-dark);
  resize: vertical;
  min-height: 120px;
  outline: none;
  transition: border-color 0.2s;
}
.form-textarea:focus { border-color: var(--brand-primary); }

/* Step 4 — Contact info */
.form-input {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-dark);
  outline: none;
  transition: border-color 0.2s;
  background: var(--color-white);
}
.form-input:focus { border-color: var(--brand-primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-nav-btns { display: flex; gap: 12px; justify-content: space-between; margin-top: 24px; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 4rem; color: var(--brand-primary); margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-dark); margin-bottom: 10px; }
.form-success p { color: var(--color-mid); }

/* ── FOOTER ── */
.site-footer {
  background: #0D0D0D;
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.65);
}
.footer-logo-img { height: 52px; width: 52px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(201,168,76,0.4); }
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-pure-white);
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social-link:hover { background: var(--brand-primary); color: #121213; }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-pure-white);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--brand-primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--brand-primary); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--brand-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom-link:hover { color: var(--brand-primary); }

/* ── FOOTER CREDIT CTA ── */
.footer-credit-cta { display: flex; justify-content: center; }
.sed-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sed-credit-link:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.1));
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
}
.sed-credit-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.sed-credit-brand {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.sed-credit-icon {
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: #121213;
  flex-shrink: 0;
}
.sed-credit-cta-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #121213;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sed-credit-link:hover .sed-credit-cta-badge {
  opacity: 1;
  transform: translateX(0);
}

/* ── MOBILE STICKY CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--color-dark);
  padding: 12px 16px;
  gap: 12px;
  border-top: 2px solid var(--brand-primary);
}
.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: filter 0.2s;
}
.mobile-cta a:hover { filter: brightness(1.1); }
.mobile-cta-call { background: var(--brand-primary); color: var(--color-dark); }
.mobile-cta-email { background: rgba(255,255,255,0.08); color: var(--color-white); border: 1px solid rgba(255,255,255,0.2); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 800;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #121213;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── INNER PAGE HERO ── */
.inner-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 16s ease-in-out infinite alternate;
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.inner-hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: var(--brand-primary); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--color-pure-white); }
.breadcrumb-sep { opacity: 0.5; }

/* ── GALLERY ── */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 40px;
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--color-dark);
}
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 2rem; color: var(--color-pure-white); }

/* ── SECTION DIVIDERS ── */
.svg-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.svg-divider svg { display: block; width: 100%; }
.section-tilted {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 80px;
}

/* ── GOOGLE RATING BADGE ── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border-radius: 40px;
  padding: 10px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.google-badge-stars { color: #FBBC04; font-size: 0.85rem; }
.google-badge-text { font-size: 0.82rem; font-weight: 700; color: var(--color-dark); }
.google-badge-sub { font-size: 0.7rem; color: var(--color-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  :root { --section-padding: 72px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 560px; }
  .about-img-badge { right: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-map-side { order: 2; }
  .contact-form-side { order: 1; }
}

@media (max-width: 768px) {
  :root { --section-padding: 56px; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .top-bar-left { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .service-select-grid { grid-template-columns: repeat(2, 1fr); }
  body { padding-bottom: 0; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-map iframe { height: 240px; }
  .form-card { padding: 24px 18px; }
}

/* ── HERO QUICK FORM & TWO COLUMN LAYOUT ── */
.hero-columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-left {
  max-width: 100%;
}
.hero-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.hero-quick-form-card {
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55);
  color: var(--color-pure-white);
  animation: heroFadeUp 0.8s ease 0.4s both;
  text-align: left;
}
.hero-quick-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--brand-primary);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.hero-quick-form-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  line-height: 1.4;
}
.hero-quick-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form-group {
  position: relative;
}
.hero-form-group input,
.hero-quick-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-pure-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.hero-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.hero-quick-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 36px;
}
.hero-quick-form select option {
  background: #121213;
  color: var(--color-pure-white);
}
.hero-form-group input:focus,
.hero-quick-form select:focus {
  border-color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.16);
}
.hero-form-success {
  text-align: center;
  padding: 24px 0;
}
.hero-form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--brand-primary);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.hero-form-success p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* ── BIG PHONE CTA SECTION ── */
.phone-cta-section {
  padding: 56px 0;
  background: #0E0E0F;
  border-bottom: 3px solid var(--brand-primary);
  position: relative;
  z-index: 10;
}
.phone-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.phone-cta-label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.phone-cta-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  color: var(--brand-primary);
  line-height: 1;
  letter-spacing: 0.03em;
  transition: color 0.3s ease, transform 0.3s ease;
}
.phone-cta-number:hover {
  color: var(--color-pure-white);
  transform: scale(1.02);
}
.phone-cta-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    justify-content: center;
  }
  .hero-swiper {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 60px;
  }
  .hero-content {
    position: relative;
    inset: auto;
    padding: 0;
  }
}

