/* =============================================
   GARAGEFIX – Main Stylesheet
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: #0d1117; overflow-x: hidden; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #1f2937;
  line-height: 1.65;
  background: #f9f9f9;
  overflow-x: hidden;
}
/* Prevent white gaps between dark sections */
.contact + .footer,
.footer { display: block; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --blue:       #1a56db;
  --blue-dark:  #1040b0;
  --blue-light: #e8f0fe;
  --orange:     #f59e0b;
  --red:        #dc2626;
  --green:      #16a34a;
  --purple:     #7c3aed;
  --teal:       #0891b2;
  --dark:       #111827;
  --dark-2:     #1f2937;
  --gray:       #6b7280;
  --gray-light: #f3f4f6;
  --white:      #ffffff;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
  --transition: .25s ease;
}

.container { max-width: min(85vw, 1400px); margin: 0 auto; padding: 0 24px; }
.section-pad    { padding: 64px 0; }
.section-bg-light { background: var(--gray-light); }
.section-bg-dark  { background: var(--dark); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-eyebrow--light { color: var(--orange); }
.section-eyebrow--red   { color: var(--red); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title--light { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 640px; margin: 0 auto; }
.section-body { font-size: 1rem; color: var(--dark-2); margin-bottom: 16px; line-height: 1.7; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg   { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary { background: #03a9f4; color: var(--white); border-color: #03a9f4; }
.btn-primary:hover { background: #0288d1; border-color: #0288d1; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(3,169,244,.4); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-ghost { background: transparent; color: #03a9f4; border-color: #03a9f4; }
.btn-ghost:hover { background: #03a9f4; color: var(--white); }

.btn-danger { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-danger:hover { background: #b91c1c; transform: translateY(-2px); }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: #2b2c2f;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 5px 0;
  position: relative;
  z-index: 200;
  overflow: hidden;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.topbar-contacts { display: flex; gap: 20px; flex-wrap: nowrap; align-items: center; }
.topbar-link { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.85); transition: color var(--transition); white-space: nowrap; }
.topbar-link:hover { color: var(--orange); }
.topbar-link i { color: #c9d7f5; font-size: 1em; }

/* =============================================
   HEADER – transparent by default
   ============================================= */
.header {
  position: fixed;
  top: 40px; /* sits below topbar (topbar ~40px tall) */
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}
/* When scrolled: white background */
.header.scrolled {
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}
/* When topbar is hidden on mobile */
.header.no-topbar { top: 0; }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 94px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 78px;
  width: auto;
  display: block;
  transition: filter var(--transition);
}

/* Nav links */
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  padding: 8px 14px;
  border-radius: 8px;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.15); }

/* Active page indicator */
.nav-link--active {
  color: var(--white) !important;
  background: rgba(255,255,255,.18);
  border-bottom: 3px solid var(--orange);
}
.header.scrolled .nav-link { color: var(--dark-2); }
.header.scrolled .nav-link:hover { color: var(--blue); background: var(--blue-light); }
.header.scrolled .nav-link--active {
  color: var(--white) !important;
  background: var(--blue);
  border-bottom: 3px solid var(--orange);
}

.nav-link--cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 18px;
  margin-left: 8px;
}
.nav-link--cta:hover { background: var(--blue-dark) !important; background-color: var(--blue-dark) !important; }

/* ── Dropdown submenu ── */
.nav-item { position: relative; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  padding-top: 12px; /* bridge — нет гапа */
  min-width: 260px; z-index: 9999;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease; pointer-events: none;
}
.nav-dropdown-inner {
  background: #111827; border-radius: 14px; padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.nav-dropdown-inner::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #111827;
  border-left: 1px solid rgba(255,255,255,.07); border-top: 1px solid rgba(255,255,255,.07);
}
.nav-dropdown a {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 10px; padding: 13px 14px;
  border-radius: 10px; text-decoration: none; color: rgba(255,255,255,.75);
  font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600;
  transition: background .15s, color .15s;
}
.nav-dropdown a::after { content: ''; display: block; }
.nav-dropdown a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-dropdown a:hover .dd-icon { background: #f59e0b; color: #0a1628; }
.dd-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; transition: background .15s, color .15s;
}
.dd-text { display: flex; flex-direction: column; text-align: center; }
.dd-title { font-size: 1rem; font-weight: 600; color: inherit; line-height: 1.2; }
.dd-sub { display: none; }
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,.07); margin: 4px 8px; }
.nav-link--has-dropdown { display: flex; align-items: center; gap: 5px; }
.nav-link--has-dropdown::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: .58rem; opacity: .6; transition: transform .2s; }
.nav-item:hover .nav-link--has-dropdown::after { transform: rotate(180deg); }

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

/* =============================================
   HERO – full 100vh slider
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Slides */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.05);
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 8s ease-in-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,10,30,.82) 0%, rgba(5,10,30,.55) 60%, rgba(5,10,30,.3) 100%);
  z-index: 1;
}

/* Bottom fade — photo dissolves into section below */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(249,249,249,.15) 30%,
    rgba(249,249,249,.6) 60%,
    rgba(249,249,249,.92) 80%,
    #f9f9f9 100%);
  z-index: 4;
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
}
.hero-left {
  flex: 0 0 62%;
  max-width: 62%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-right { flex: 1; }
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 660;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-actions .btn { padding: 10px 20px; font-size: 1rem; }
.hero-actions .btn i { font-size: 1.7em; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.hero-dot.active { background: var(--white); border-color: var(--white); transform: scale(1.3); }

/* Scroll arrow */
.hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}
.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255,255,255,.85);
  font-size: calc(50px * 1.01);
  bottom: 2px;
  animation: bounce 1.8s ease-in-out infinite;
}
.hero-scroll a i:first-child { opacity: .3; }
.hero-scroll a i:nth-child(2) { opacity: .6; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats { background: var(--blue); padding: 32px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; text-align: center; }

/* =============================================
   ABOUT / TWO-COL
   ============================================= */
/* About intro split */
.about-split {
  display: flex;
  gap: 60px;
  align-items: center;
}
.about-split-img {
  flex: 0 0 56%;
  max-width: 56%;
  min-height: 500px;
}
.about-split-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 600;
}
.about-split-text { flex: 1; }

/* Articles / Blog grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.article-img { flex-shrink: 0; }
.article-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid #e5e7eb;
}
.article-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.article-desc {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.article-link {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: #03a9f4;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.article-link:hover { gap: 10px; }

/* =============================================
   SUB-SERVICE PAGES
   ============================================= */

/* Page banner (replaces slider on sub-pages) */
.page-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0f2a5a 60%, #1a3a7a 100%);
  padding: 160px 0 90px;
  text-align: center;
  margin-top: 0;
}
.page-banner-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.page-banner-sub {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}

/* Large photo gallery column */
.photo-gallery-col {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.photo-gallery-item { text-align: center; }
.photo-gallery-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  display: block;
}
.photo-gallery-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 600;
}

/* Small items grid */
.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.item-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 12px 14px;
  text-align: center;
  box-shadow: var(--shadow);
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark-2);
  border: 1px solid #e5e7eb;
  transition: box-shadow .2s, transform .2s;
}
.item-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.item-card i { display: block; font-size: 1.6rem; color: #03a9f4; margin-bottom: 10px; }
.item-card img { display: block; width: 100%; aspect-ratio: 1/1; object-fit: contain; border-radius: 6px; margin-bottom: 10px; background: #fff; padding: 8px; box-sizing: border-box; }

/* Wide split – content far left & far right, gap in center */
.wide-split {
  display: flex;
  align-items: center;
  gap: 0;
}
.wide-split-left  { flex: 0 0 38%; max-width: 38%; }
.wide-split-right { flex: 0 0 48%; max-width: 48%; margin-left: auto; }

/* Brand logos placeholders */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.brand-placeholder {
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gray);
  background: var(--white);
}

/* Photo stack (overlapping) */
.photo-stack {
  position: relative;
  height: 340px;
}
.photo-stack-back {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  z-index: 1;
}
.photo-stack-front {
  position: absolute;
  bottom: 0; right: 0;
  width: 75%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  z-index: 2;
  box-shadow: -6px -6px 24px rgba(0,0,0,.18);
}

/* Photo collage */
.photo-collage { display: flex; flex-direction: column; gap: 12px; }
.photo-main .photo-placeholder { aspect-ratio: 16/9; }
.photo-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.photo-placeholder {
  width: 100%;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 600;
  padding: 32px 16px;
  aspect-ratio: 16/9;
}
.about-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1.5px solid var(--dark);
  padding: 4px 10px;
  margin-bottom: 18px;
}
.about-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.check-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--dark-2); }
.check-list i { color: var(--green); font-size: .85rem; flex-shrink: 0; }

.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.media-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.media-card--tall { grid-row: span 2; }
.media-card { border-radius: var(--radius); overflow: hidden; }
.media-placeholder {
  width: 100%; height: 100%; min-height: 140px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600;
  text-align: center; padding: 24px;
}
.media-card--tall .media-placeholder { min-height: 300px; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,.05);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.service-icon--blue   { background: rgba(26,86,219,.1);  color: var(--blue); }
.service-icon--orange { background: rgba(245,158,11,.1); color: var(--orange); }
.service-icon--green  { background: rgba(22,163,74,.1);  color: var(--green); }
.service-icon--red    { background: rgba(220,38,38,.1);  color: var(--red); }
.service-icon--purple { background: rgba(124,58,237,.1); color: var(--purple); }
.service-icon--teal   { background: rgba(8,145,178,.1);  color: var(--teal); }

.service-title { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-desc  { font-size: .9rem; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.service-link  { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--blue); transition: gap var(--transition); }
.service-link:hover { gap: 10px; }

/* Circle services grid (competitor style) */
.services-circle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}
.service-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.service-circle-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.service-circle-item:hover .service-circle-img {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.service-circle-img i {
  font-size: 2.8rem;
  color: rgba(255,255,255,.9);
}
.service-circle-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-2);
  text-decoration: none;
  line-height: 1.35;
  transition: color .2s;
}
.service-circle-item:hover .service-circle-title { color: #03a9f4; }

/* =============================================
   URGENCY
   ============================================= */
.urgency-visual { display: flex; flex-direction: column; gap: 24px; }
.urgency-badge {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 20px;
}
.urgency-icon {
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--dark); flex-shrink: 0;
}
.urgency-text { display: flex; flex-direction: column; }
.urgency-text strong { color: rgba(255,255,255,.7); font-size: .85rem; margin-bottom: 4px; }
.urgency-time { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--white); }

.urgency-checklist { display: flex; flex-direction: column; gap: 12px; }
.urgency-check { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--dark-2); }
.urgency-check i { color: var(--green); flex-shrink: 0; }

/* =============================================
   WHY
   ============================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.1); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); margin-bottom: 18px;
}
.why-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p  { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 0; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border: 1px solid #e8ecf0;
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 4px solid #03a9f4;
}
.review-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: #e8f4fd;
  position: absolute;
  top: 14px;
  left: 24px;
  pointer-events: none;
}
.review-card--featured { border-top-color: var(--orange); transform: scale(1.03); }
.review-stars { color: #f59e0b; font-size: .95rem; margin-bottom: 16px; display: flex; gap: 4px; }
.review-text  { font-size: .93rem; color: #374151; line-height: 1.75; font-style: italic; margin-bottom: 24px; position: relative; z-index: 1; flex: 1; }
.review-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid #f0f0f0; padding-top: 18px; margin-top: auto; }
.author-avatar {
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.author-avatar-img {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.author-avatar--google {
  width: 48px; height: 48px;
  background: #9e9e9e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,.15);
  color: #fff; font-size: 1.3rem;
}
.author-avatar--emoji {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,.15);
  font-size: 1.5rem; line-height: 1;
}
.review-author strong { display: block; font-size: .92rem; color: var(--dark); font-family: 'Montserrat', sans-serif; }
.review-author span   { font-size: .78rem; color: var(--gray); }
.review-badge {
  position: absolute; top: 16px; right: 16px;
  background: #fff;
  border: 1px solid #e0e7ff;
  color: #4285f4;
  font-size: .72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.reviews-cta { text-align: center; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 2-column review grid */
.reviews-grid--2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 0; }

/* Full-width review with photo */
.review-card--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,.05);
  overflow: hidden;
  margin-bottom: 0;
}
.review-card--wide .review-photo {
  background: linear-gradient(135deg,#1e3a5f,#2563eb);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,.8);
  font-size: .88rem; font-weight: 600;
  min-height: 320px;
}
.review-card--wide .review-photo img { width:100%; height:100%; object-fit:cover; display:block; min-height:320px; }
.review-card--wide .review-body {
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.review-date { font-size: .75rem; color: var(--gray); margin-top: 14px; }

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 32px; }
.area-group { background: var(--white); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow); border-top: 3px solid var(--blue); }
.area-state { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.area-list  { display: flex; flex-direction: column; gap: 8px; }
.area-list li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--dark-2); }
.area-list i  { color: var(--blue); font-size: .75rem; }

.areas-callout {
  background: var(--blue-light);
  border: 1px solid rgba(26,86,219,.2);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: .92rem; color: var(--dark-2);
}
.areas-callout i { color: var(--blue); font-size: 1.1rem; flex-shrink: 0; }
.areas-callout a { color: var(--blue); font-weight: 700; }
.areas-callout a:hover { text-decoration: underline; }

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--dark); padding: 100px 0; }
.contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.contact-wrap .contact-info {
  text-align: center;
  max-width: 680px;
  width: 100%;
}
.contact-wrap .contact-form-wrap {
  width: 100%;
  max-width: 680px;
}
.contact-intro { color: rgba(255,255,255,.7); margin-bottom: 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail  { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(26,86,219,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: .95rem; flex-shrink: 0;
}
.contact-detail strong { display: block; color: rgba(255,255,255,.6); font-size: .8rem; margin-bottom: 2px; }
.contact-detail a,
.contact-detail span  { color: var(--white); font-size: .95rem; font-weight: 600; }
.contact-detail a:hover { color: var(--orange); }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-lg); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--dark-2); text-transform: uppercase; letter-spacing: .05em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem; color: var(--dark);
  background: var(--white); width: 100%;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.1); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: .78rem; color: var(--gray); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.form-note i { color: var(--green); }

/* ── Premium Contact Form (dark section) ── */
.contact .contact-form-wrap {
  background: linear-gradient(145deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
}
.contact .contact-info { text-align: center; }
.contact .form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #f59e0b;
}
.contact .form-group input,
.contact .form-group select {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  color: #fff;
  padding: 13px 16px;
}
.contact .form-group input::placeholder { color: rgba(255,255,255,.3); }
.contact .form-group input:focus,
.contact .form-group select:focus {
  border-color: #03a9f4;
  background: rgba(255,255,255,.2);
  box-shadow: 0 0 0 3px rgba(3,169,244,.22);
}
.contact .form-group select { color: rgba(255,255,255,.8); }
.contact .form-group select option { background: #0d1f3c; color: #fff; }
.contact .contact-form button[type="submit"] {
  background: linear-gradient(135deg, #b85c00 0%, #d4820a 100%);
  border: none; border-radius: 14px;
  width: 100%; padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 800;
  letter-spacing: .05em; color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(184,92,0,.35);
  transition: transform .25s, box-shadow .25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.contact .contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212,130,10,.5);
}
.contact .form-note { color: #f59e0b; font-size: .9rem; margin-top: 16px; }

/* =============================================
   FOOTER
   ============================================= */
.footer-main { background: #0d1117; padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }

.footer-brand .logo--footer .logo-main { color: var(--white); }
.footer-brand .logo--footer .logo-sub  { color: rgba(255,255,255,.5); }
.footer-tagline { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.7; margin: 16px 0 20px; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--orange); }
.footer-phone:hover { color: #fbbf24; }

.footer-heading { font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.footer-contact-item i { color: var(--blue); width: 16px; }
.footer-contact-item a,
.footer-contact-item span { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom { background: #080c11; padding: 16px 0; }
.footer-bottom p { text-align: center; font-size: .78rem; color: rgba(255,255,255,.35); }

/* =============================================
   FLOAT CALL BUTTON (mobile only)
   ============================================= */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem; font-weight: 700;
  align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(22,163,74,.45);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(22,163,74,.45); }
  50%       { box-shadow: 0 6px 36px rgba(22,163,74,.7); }
}

/* =============================================
   INNER PAGE SLIDER
   ============================================= */
.hero--inner {
  height: 65vh;
}
.hero-content--center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero--inner .hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
