/* ============================================
   SERVİS ARIZA BİRİMİ - ANA CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Raleway:wght@400;500;600;700;800&display=swap');

:root {
  --blue-dark:    #0d47a1;
  --blue-main:    #1565c0;
  --blue-mid:     #1976d2;
  --blue-light:   #42a5f5;
  --blue-pale:    #e3f2fd;
  --blue-xpale:   #f0f7ff;
  --gray-dark:    #263238;
  --gray-mid:     #455a64;
  --gray-light:   #90a4ae;
  --gray-xlight:  #eceff1;
  --white:        #ffffff;
  --green-cta:    #2e7d32;
  --green-light:  #43a047;
  --shadow-sm:    0 2px 8px rgba(13,71,161,0.10);
  --shadow-md:    0 4px 20px rgba(13,71,161,0.15);
  --shadow-lg:    0 8px 40px rgba(13,71,161,0.18);
  --radius:       10px;
  --radius-lg:    18px;
  --font-head:    'Raleway', sans-serif;
  --font-body:    'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

/* ── TOPBAR ── */
.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 2px solid var(--blue-light);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { opacity: .85; }
.topbar-phone a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  transition: opacity .2s;
}
.topbar-phone a:hover { opacity: .8; }
.topbar-phone .cta-text {
  font-size: 12px;
  font-weight: 600;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 4px;
}

/* ── HEADER / NAV ── */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--blue-dark);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--blue-light); }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--blue-main);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { fill: white; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--gray-dark);
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
  background: var(--blue-pale);
  color: var(--blue-main);
}
.main-nav > li > a .arrow {
  font-size: 10px;
  transition: transform .2s;
}
.main-nav > li:hover > a .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-pale);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  z-index: 999;
}
.dropdown.sub-dropdown {
  left: 100%;
  top: -8px;
}
.dropdown li { position: relative; }
.dropdown li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-dark);
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.dropdown li a:hover {
  background: var(--blue-xpale);
  color: var(--blue-main);
}
.main-nav > li:hover > .dropdown,
.dropdown li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-cta-btn {
  background: var(--blue-main);
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-cta-btn:hover { background: var(--blue-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
  color: white;
  padding: 90px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::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='%23ffffff' fill-opacity='0.04'%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");
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--blue-light); }
.hero p {
  font-size: 17px;
  opacity: .9;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-phone-btn {
  display: flex; align-items: center; gap: 10px;
  background: white;
  color: var(--blue-dark);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.hero-phone-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.hero-phone-btn .phone-icon { font-size: 22px; }
.hero-phone-small {
  font-size: 12px;
  font-weight: 600;
  opacity: .85;
  display: block;
  letter-spacing: .5px;
}
.hero-number { font-size: 19px; font-weight: 900; }
.hero-secondary-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.6);
  color: white;
  padding: 13px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s, border-color .2s;
}
.hero-secondary-btn:hover { background: rgba(255,255,255,.15); border-color: white; }

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: 14px;
}
.hero-image .placeholder-img .icon { font-size: 60px; }

.hero-stats {
  display: flex; gap: 24px; margin-top: 32px;
}
.hero-stat {
  text-align: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 12px 20px;
  border-radius: 10px;
  flex: 1;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  display: block;
}
.hero-stat .lbl { font-size: 12px; opacity: .8; }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--blue-xpale);
  border-bottom: 1px solid var(--blue-pale);
  padding: 10px 24px;
}
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-mid);
}
.breadcrumb a { color: var(--blue-main); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--gray-light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: white;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.page-hero::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='%23ffffff' fill-opacity='0.04'%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");
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero p { font-size: 16px; opacity: .9; max-width: 560px; }
.page-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,.1);
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── SECTION ── */
.section {
  padding: 80px 24px;
}
.section-alt { background: var(--blue-xpale); }
.section-dark { background: var(--gray-dark); color: white; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-dark .section-title { color: white; }
.section-sub {
  font-size: 16px;
  color: var(--gray-mid);
  margin-bottom: 48px;
  max-width: 620px;
}
.section-dark .section-sub { color: rgba(255,255,255,.7); }
.section-header { margin-bottom: 48px; }
.section-header .line {
  width: 52px; height: 4px;
  background: var(--blue-light);
  border-radius: 2px;
  margin-bottom: 14px;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--gray-xlight);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--blue-pale);
  position: relative;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-img .placeholder-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  color: var(--blue-main);
  opacity: .4;
}
.card-body { padding: 22px 24px; }
.card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.card-text { font-size: 14px; color: var(--gray-mid); line-height: 1.7; margin-bottom: 16px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue-main);
  font-weight: 700;
  font-size: 14px;
  transition: gap .2s;
}
.card-link:hover { gap: 10px; }

/* ── FEATURES / ICON BOXES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.feature-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-xlight);
  transition: transform .25s, box-shadow .25s;
}
.feature-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.feature-text { font-size: 14px; color: var(--gray-mid); }

/* ── SERVICE DETAIL PAGE ── */
.service-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.service-body h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-dark);
  margin: 32px 0 12px;
}
.service-body h2:first-child { margin-top: 0; }
.service-body p { margin-bottom: 16px; color: var(--gray-mid); }
.service-body ul {
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-mid);
}
.service-body ul li::before {
  content: '✓';
  color: var(--blue-main);
  font-weight: 800;
  margin-top: 1px;
  flex-shrink: 0;
}

.service-sidebar {
  position: sticky;
  top: 90px;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 24px;
  text-align: center;
}
.sidebar-cta h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.sidebar-cta p { font-size: 14px; opacity: .85; margin-bottom: 20px; }
.sidebar-phone-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: white;
  color: var(--blue-dark);
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 17px;
  transition: transform .2s;
}
.sidebar-phone-btn:hover { transform: scale(1.03); }

.sidebar-links {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-xlight);
  overflow: hidden;
}
.sidebar-links h4 {
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 20px;
}
.sidebar-links ul { padding: 8px 0; }
.sidebar-links ul li a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-dark);
  transition: background .15s, color .15s;
}
.sidebar-links ul li a:hover, .sidebar-links ul li a.active {
  background: var(--blue-xpale);
  color: var(--blue-main);
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-xlight);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-dark);
  text-align: left;
  transition: background .2s;
}
.faq-q:hover { background: var(--blue-xpale); }
.faq-q.open { background: var(--blue-pale); color: var(--blue-dark); }
.faq-icon {
  font-size: 20px;
  color: var(--blue-main);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 20px;
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.8;
}
.faq-a.open { max-height: 400px; padding: 14px 20px 18px; }

/* ── CITIES GRID ── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.city-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--gray-xlight);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: default;
}
.city-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.city-card .city-icon { font-size: 32px; margin-bottom: 8px; }
.city-card .city-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--blue-dark);
}
.city-card .city-sub { font-size: 12px; color: var(--gray-light); margin-top: 4px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-xlight);
}
.contact-item-icon {
  width: 46px; height: 46px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item-body h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.contact-item-body p { font-size: 15px; font-weight: 600; color: var(--gray-dark); }
.contact-item-body a { color: var(--blue-main); }

.contact-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-xlight);
}
.contact-form-box h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--gray-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-xlight);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-dark);
  transition: border-color .2s;
  background: var(--blue-xpale);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-main);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit-btn {
  width: 100%;
  background: var(--blue-main);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .2s;
  margin-top: 8px;
}
.form-submit-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── DISCLAIMER ── */
.disclaimer-box {
  background: #fff8e1;
  border: 1.5px solid #ffe082;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: #5d4037;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.7;
}
.disclaimer-box .disc-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

/* ── FOOTER ── */
.footer {
  background: var(--gray-dark);
  color: rgba(255,255,255,.85);
  padding: 60px 24px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand .logo span { color: var(--blue-light); }
.footer-brand p { font-size: 14px; opacity: .75; line-height: 1.7; margin-bottom: 18px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: white;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-main);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13.5px;
  opacity: .75;
  transition: opacity .2s, color .2s;
}
.footer-col ul li a:hover { opacity: 1; color: var(--blue-light); }
.footer-phone {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  color: white;
  transition: background .2s;
}
.footer-phone:hover { background: rgba(255,255,255,.14); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: .6;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── MOBILE FIXED PHONE BUTTON ── */
.mobile-phone-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green-cta);
  color: white;
  z-index: 9999;
  padding: 13px 20px;
}
.mobile-phone-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-weight: 800;
  font-size: 17px;
}
.mobile-phone-bar .pulse-ring {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  animation: pulse-green 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
  50%  { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.mobile-phone-bar .cta-label { font-size: 11px; font-weight: 600; opacity: .85; }
.mobile-phone-bar .num { font-size: 19px; }

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.about-text p { color: var(--gray-mid); margin-bottom: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-stat {
  background: var(--blue-xpale);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.about-stat .num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-dark);
  display: block;
}
.about-stat .lbl { font-size: 12px; color: var(--gray-mid); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: white;
  padding: 60px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-band p { font-size: 16px; opacity: .85; margin-bottom: 28px; }
.cta-band-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  color: var(--blue-dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s;
}
.cta-band-btn:hover { transform: scale(1.04); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-xlight);
}
.testimonial-stars { color: #f9a825; font-size: 18px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--gray-mid); font-style: italic; margin-bottom: 16px; line-height: 1.8; }
.testimonial-author { font-weight: 800; font-size: 14px; color: var(--blue-dark); }
.testimonial-city { font-size: 12px; color: var(--gray-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-content { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav > li { width: 100%; }
  .main-nav > li > a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-xlight);
    border-radius: 0;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    display: none;
  }
  .dropdown.mobile-open { display: block; }
  .mobile-close-btn {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-dark);
  }
  .mobile-phone-bar { display: block; }
  body { padding-bottom: 65px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .topbar-left { display: none; }
}

/* ── MOBILE NAV HEADER (logo + close) ── */
.mobile-nav-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 2px solid var(--blue-pale);
  margin-bottom: 8px;
  width: 100%;
}
.mobile-nav-logo {
  font-size: 18px !important;
}
.mobile-nav-phone-item {
  display: none;
  padding: 14px 16px 0;
  width: 100%;
}
.mobile-nav-phone-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: var(--green-cta) !important;
  color: white !important;
  padding: 14px 20px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-align: center !important;
  transition: background .2s !important;
  border-bottom: none !important;
}
.mobile-nav-phone-btn:hover {
  background: #1b5e20 !important;
}
@media (max-width: 768px) {
  .mobile-nav-header { display: flex; }
  .mobile-nav-phone-item { display: block; }
  /* Override old close button position since it's now in header */
  .mobile-close-btn {
    position: static !important;
    font-size: 22px !important;
    background: var(--blue-xpale) !important;
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--blue-dark);
    flex-shrink: 0;
  }
}
