/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a6fa8;
  --primary-dark: #135a8a;
  --primary-light: #4a9fd4;
  --accent: #00b4d8;
  --bg: #f0f7ff;
  --white: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(26,111,168,0.10);
  --radius: 14px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,111,168,0.07);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.nav-links a:hover { background: var(--bg); color: var(--primary); }

.nav-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(26, 111, 168, 0.08);
  border: 1px solid rgba(26, 111, 168, 0.2);
  transition: all 0.2s;
  white-space: nowrap;
}

.tool-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.tool-btn span {
  font-size: 1rem;
}

.nav-calc-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
}

.nav-calc-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone .btn {
  padding: 7px 12px;
  font-size: 0.8rem;
}

.nav-phone .btn span {
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-whatsapp {
  background: #25d366;
  color: white;
}
.btn-whatsapp:hover { background: #1eb855; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0f3a5c 0%, #1a6fa8 50%, #00b4d8 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.88;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-buttons .btn {
  padding: 14px 28px;
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-value {
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
section { padding: 80px 0; }

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

.section-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: 0 12px 40px rgba(26,111,168,0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-details {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-details li {
  background: var(--bg);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ===== BRANDS ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  justify-items: center;
}

.brand-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  transition: var(--transition);
  cursor: default;
  min-height: 100px;
}

.brand-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px rgba(26,111,168,0.12);
  transform: translateY(-3px);
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(30%) brightness(0.95);
  opacity: 0.82;
  transition: var(--transition);
}

.brand-card:hover .brand-logo {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.brand-logo-fallback {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.brand-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}

/* ===== WHY US ===== */
.why-us { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-card:hover { transform: translateY(-4px); }

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== HOURS ===== */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.hours-table {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
}

.hours-table h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; }
.hours-row .time { color: var(--primary); font-weight: 600; }
.hours-row .closed { color: #ef4444; font-weight: 600; }

.emergency-box {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.emergency-box h3 { font-size: 1.1rem; font-weight: 700; }
.emergency-box p { opacity: 0.88; font-size: 0.9rem; line-height: 1.6; }

/* ===== SERVICE AREA ===== */
.area-section { background: var(--bg); }

.villages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.village-tag {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* ===== DISTRICT CARDS ===== */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.district-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}

.district-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,111,168,0.15);
}

.district-icon { font-size: 2rem; }

.district-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.district-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.district-link {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}

/* ===== HERO QUICK FORM ===== */
.hero-quick-form {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 28px auto 0;
  max-width: 640px;
  position: relative;
  overflow: hidden;
}

.hqf-step { display: none; }
.hqf-step.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.hqf-label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
  text-align: center;
}

.hqf-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hqf-opt {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 9px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.hqf-opt:hover, .hqf-opt.selected {
  background: white;
  color: var(--primary);
  border-color: white;
}

.hqf-phone-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hqf-input {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  outline: none;
  border: 2px solid transparent;
  transition: var(--transition);
}

.hqf-input:focus { border-color: var(--accent); }

.hqf-submit {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.hqf-submit:hover { background: #1ebe5c; transform: translateY(-2px); }

.hqf-success {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #bbf7d0;
  padding: 8px 0;
}

.hqf-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.hqf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.hqf-dot.active { background: white; transform: scale(1.3); }
.hqf-dot.done { background: #bbf7d0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
}

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; }

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-service {
  font-size: 0.78rem;
  color: var(--primary);
  background: rgba(26,111,168,0.08);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ===== FAQ ===== */
.faq { background: var(--bg); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 22px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--radius);
}

.contact-item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.contact-item a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-buttons .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.contact-map {
  background: var(--bg);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
footer {
  background: #0f1e2e;
  color: rgba(255,255,255,0.75);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand .logo { color: white; margin-bottom: 12px; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a {
  font-size: 0.87rem;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.float-btn:hover { transform: scale(1.1); }

.float-wp { background: #25d366; }
.float-phone { background: var(--primary); }

/* ===== REVIEWS PAGINATION ===== */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.reviews-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-filter-btn {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.review-filter-btn.active,
.review-filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.reviews-summary {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 8px;
}

/* ===== SERVIS FORMU ===== */
.contact-form-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.service-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  background: white;
  transition: border-color 0.2s;
  color: var(--text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}

.form-field textarea { resize: vertical; min-height: 90px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.form-check input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

.form-result {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-result.success { background: #dcfce7; color: #16a34a; display: block; }
.form-result.error   { background: #fef2f2; color: #dc2626; display: block; }

/* ===== BLOG KARTI ===== */
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(26,111,168,0.13); }

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.blog-category {
  display: inline-block;
  background: var(--bg);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text);
}

.blog-card-body p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
}

.blog-read-more:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-phone, .nav-tools { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-links.open .tool-btn {
    display: flex;
    margin-top: 8px;
    justify-content: center;
  }

  .hero { padding: 60px 0 50px; }
  .hero-stats { gap: 24px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }

  .hours-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .service-form { padding: 20px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== STATISTICS SECTION (Animated Counters) ===== */
.statistics-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
}
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat-counter-card {
  background: white;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26,111,168,0.08);
  border: 1px solid rgba(26,111,168,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-counter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,111,168,0.15);
}
.counter-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.counter-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.counter-label {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 600;
}

/* ===== VILLAGE TAGS ===== */
.village-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.village-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.village-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0f7ff;
}

/* ===== WHY US CARD (larger) ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.why-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(26,111,168,0.1);
  transform: translateY(-3px);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== FAQ ACCORDION IMPROVED ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(26,111,168,0.08);
}
.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  gap: 12px;
}
.faq-question:hover { background: var(--bg); }
.faq-arrow {
  font-size: 0.75rem;
  transition: transform 0.25s;
  flex-shrink: 0;
  color: var(--primary);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--bg);
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}

/* ===== TESTIMONIAL CARDS IMPROVED ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: white;
  border-radius: 14px;
  padding: 30px;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(26,111,168,0.1);
}
.testimonial-card .stars { color: #fbbf24; font-size: 1rem; margin-bottom: 10px; }
.testimonial-card p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.testimonial-service {
  font-size: 0.78rem;
  color: var(--primary);
  background: var(--bg);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== PAGE BTN ===== */
.page-btn {
  padding: 7px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-tools { display: none; }
}
@media (max-width: 768px) {
  .stats-counter-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .counter-number { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .stats-counter-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== HAMBURGER ANIMATION ===== */
.hamburger { position: relative; width: 28px; height: 20px; cursor: pointer; }
.hamburger span {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 100%;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

/* ===== BETTER MOBILE ===== */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  
  .navbar .container { height: 60px; }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 12px; font-size: 1rem; }
  .nav-links .tool-btn { margin: 8px auto; width: 100%; justify-content: center; }
  
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 1.8rem !important; line-height: 1.3; }
  .hero p { font-size: 0.95rem !important; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-item { min-width: 80px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  
  .section-title { font-size: 1.5rem !important; }
  .section-subtitle { font-size: 0.9rem; }
  
  .services-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .service-card { padding: 20px; }
  
  .stats-counter-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-counter-card { padding: 20px 12px; }
  .counter-number { font-size: 1.6rem; }
  .counter-label { font-size: 0.8rem; }
  
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card { padding: 16px; }
  .why-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .why-card h3 { font-size: 0.9rem; }
  .why-card p { font-size: 0.8rem; }
  
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  
  .brands-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 12px; }
  .brand-item { padding: 12px; font-size: 0.75rem; }
  
  .faq-question { padding: 14px 16px; font-size: 0.88rem; }
  .faq-answer { font-size: 0.85rem; }
  
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .hours-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-section h4 { font-size: 1rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  
  .page-header { padding: 40px 0 30px; }
  .page-header h1 { font-size: 1.6rem; }
  
  .blog-card { padding: 16px; }
  .blog-card h3 { font-size: 1rem; }
  .blog-card p { font-size: 0.85rem; }
  
  .form-group { margin-bottom: 12px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 12px; }
  
  .btn { padding: 10px 16px; font-size: 0.88rem; }
  
  .float-buttons { bottom: 16px; right: 16px; gap: 10px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.2rem; }
  
  .village-tags { padding: 0 16px; }
  .village-tag { font-size: 0.78rem; padding: 5px 12px; }
  
  #lang-toggle-container { margin-left: auto; margin-right: 8px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem !important; }
  .hero-stats { justify-content: center; }
  .stats-counter-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .counter-number { font-size: 1.4rem; }
}

/* ===== FIXED MOBILE NAVBAR ===== */
@media (max-width: 768px) {
  .navbar { position: relative;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 12px;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  /* Hamburger - right side */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    border-radius: 8px;
    background: rgba(0,0,0,0.05);
  }
  
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
  }
  
  /* Hide phone and tools on mobile - they go in the menu */
  .nav-phone, .nav-tools {
    display: none !important;
  }
  
  /* Mobile menu - full screen overlay style */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: 90vh;
    background: white;
    padding: 30px;
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 999;
    overflow-y: auto;
    border-radius: 0 0 20px 20px;
  }
  
  .nav-links.open {
    display: flex !important;
  }
  
  .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  
  .nav-links li a {
    font-size: 1.3rem !important;
    padding: 18px 0 !important;
    font-weight: 600 !important;
  }
  
  .nav-links .tool-btn, .nav-links .btn {
    font-size: 1.1rem !important;
    padding: 16px 20px !important;
    margin: 10px 0 !important;
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
  }
  
  /* Tools in mobile menu */
  .nav-links .mobile-tools {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--border);
  }
  
  .nav-links .mobile-tools .tool-btn {
    display: flex;
    justify-content: center;
    padding: 12px;
    font-size: 0.95rem;
  }
  
  /* Phone button in mobile menu */
  .nav-links .mobile-phone {
    margin-top: 16px;
  }
  
  .nav-links .mobile-phone .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
  }
  
  /* Lang toggle in mobile menu */
  .nav-links .mobile-lang {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
  
  /* Hero section mobile */
  .hero {
    padding: 40px 0 50px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 1.6rem !important;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .hero p {
    font-size: 0.9rem !important;
    margin-bottom: 20px;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 16px;
  }
  
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .stat-item {
    background: rgba(255,255,255,0.15);
    padding: 10px 16px;
    border-radius: 10px;
    min-width: 70px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.4rem !important; }
  .navbar .container { padding: 0 8px; }
  .logo span { display: none; }
}

/* ===== DESKTOP NAVBAR FIXES ===== */
@media (min-width: 769px) {
  .nav-tools {
    display: flex !important;
    align-items: center;
    gap: 6px;
  }
  
  .nav-phone {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }
  
  .nav-phone .btn {
    padding: 6px 10px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
  }
  
  .nav-phone .btn span {
    font-size: 0.85rem !important;
  }
  
  .nav-tools .tool-btn {
    padding: 6px 10px !important;
    font-size: 0.78rem !important;
  }
  
  .nav-tools .tool-btn span {
    font-size: 0.9rem !important;
  }
  
  #mobile-menu-items { display: none !important; }
}

/* ===== MOBILE MENU ITEMS ===== */
@media (max-width: 768px) {
  #mobile-menu-items {
    display: none !important;
  }
  
  .nav-links li.mobile-tools,
  .nav-links li.mobile-phone,
  .nav-links li.mobile-lang {
    display: flex;
  }
  
  .nav-links li.mobile-tools {
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-links li.mobile-phone {
    padding: 12px 0;
  }
  
  .nav-links li.mobile-lang {
    padding: 12px 0;
    justify-content: center;
  }
  
  .nav-links li.mobile-tools .tool-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    margin: 4px 0;
  }
  
  .nav-links li.mobile-phone .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
}

/* ===== MOBILE ONLY ITEMS ===== */
@media (min-width: 769px) {
  .mobile-only { display: none !important; }
}

@media (max-width: 768px) {
  .mobile-only { display: block; }
  .mobile-only .tool-btn,
  .mobile-only .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin: 4px 0;
    font-size: 1rem;
  }
  .mobile-only #lang-toggle-container-mobile {
    display: flex;
    justify-content: center;
    padding: 8px 0;
  }
}

/* ===== MOBILE NAVBAR - CLEAN ===== */
@media (max-width: 768px) {
  .navbar { position: sticky; top: 0; z-index: 1000; }
  
  .navbar .container {
    height: 56px;
    padding: 0 12px;
  }
  
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    background: rgba(0,0,0,0.05);
    border: none;
  }
  
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
  }
  
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(6px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-6px); }
  
  .nav-links, .nav-phone, .nav-tools { display: none !important; }
  
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 20px;
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a { display: block; padding: 14px 0; font-size: 1rem; }
  .nav-links.open .tool-btn, .nav-links.open .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    margin: 8px 0;
  }
  .nav-links.open .mobile-only { display: block !important; }
}

/* ===== OVERRIDE MOBILE MENU - FORCE FULL SCREEN ===== */
@media (max-width: 768px) {
  .nav-links.open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    max-height: 95vh !important;
    width: 100% !important;
    z-index: 9999 !important;
  }
}

/* ===== MOBILE VISIBLE TOOLS ===== */
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  .nav-tools { display: flex !important; gap: 8px; }
  .nav-tools .tool-btn { padding: 8px 12px !important; font-size: 0.85rem !important; }
  .nav-phone { display: none !important; }
}

/* ===== BRANDS SLIDER ===== */
.brands-slider {
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
  border-radius: 16px;
  padding: 20px 0;
  margin-top: 24px;
}

.brands-track {
  display: flex;
  gap: 24px;
  animation: slide 30s linear infinite;
  width: max-content;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,111,168,0.08);
  border: 1.5px solid rgba(26,111,168,0.1);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.3s;
  min-width: 120px;
}

.brand-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,111,168,0.15);
}

.brand-item img {
  max-height: 28px;
  width: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .brand-item {
    padding: 12px 20px;
    font-size: 0.85rem;
    min-width: 100px;
  }
  .brands-slider { padding: 16px 0; }
}
