/* =========================================
   GELAGLE MOVERS — MAIN STYLESHEET
   SEO-Optimized Moving Company | Addis Ababa
   ========================================= */

:root {
  --primary:       #1B3A6B;
  --primary-dark:  #0d2444;
  --primary-light: #2a5298;
  --secondary:     #FF6B35;
  --secondary-dark:#e55a24;
  --text-dark:     #1a1a2e;
  --text-medium:   #4a5568;
  --text-light:    #718096;
  --bg-light:      #f7fafc;
  --bg-white:      #ffffff;
  --border:        #e2e8f0;
  --shadow:        0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg:     0 12px 30px rgba(0,0,0,0.12);
  --transition:    all 0.3s ease;
  --radius:        12px;
  --radius-lg:     20px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--secondary);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 600px;
}
.section-header { margin-bottom: 64px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-dark {
  background: var(--primary);
  color: #fff;
}
.btn-dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27,58,107,0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  transition: color 0.3s;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}
.navbar.scrolled .logo-name   { color: var(--primary); }
.navbar.scrolled .logo-tagline { color: var(--text-light); }

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.navbar.scrolled .nav-link { color: var(--text-medium); }
.navbar.scrolled .nav-link:hover { color: var(--primary); }

.nav-cta {
  background: var(--secondary) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--secondary-dark) !important;
  box-shadow: 0 4px 15px rgba(255,107,53,0.4);
  transform: translateY(-2px);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,36,68,0.93) 0%, rgba(27,58,107,0.80) 60%, rgba(13,36,68,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.35);
  color: #ffb899;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  color: #fff;
  font-weight: 800;
  max-width: 820px;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 span { color: var(--secondary); }
.hero-description {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-trust-item svg {
  width: 16px; height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--primary); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* ===== SERVICES ===== */
.services { background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
}
.service-icon svg { width: 30px; height: 30px; color: #fff; }
.service-card h3 { font-size: 19px; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-medium); line-height: 1.75; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 16px;
  transition: var(--transition);
}
.service-link:hover { color: var(--secondary); gap: 10px; }
.service-link svg { width: 14px; height: 14px; }

/* ===== WHY CHOOSE US ===== */
.why-us { background: #fff; }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-us-image { position: relative; }
.why-us-image img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-us-badge {
  position: absolute;
  bottom: 28px; right: -24px;
  background: var(--primary);
  color: #fff;
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}
.why-us-badge .badge-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  line-height: 1;
}
.why-us-badge .badge-text {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.4;
  margin-top: 4px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  background: var(--secondary);
}
.feature-item:hover .feature-icon svg { color: #fff; }
.feature-icon svg { width: 24px; height: 24px; color: var(--primary); transition: color 0.3s; }
.feature-content h4 { font-size: 16px; margin-bottom: 5px; }
.feature-content p { font-size: 14px; color: var(--text-medium); line-height: 1.65; }

/* ===== ABOUT ===== */
.about { background: var(--bg-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.highlight-item {
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
  box-shadow: var(--shadow);
}
.highlight-item h5 { font-size: 14px; color: var(--text-dark); margin-bottom: 4px; }
.highlight-item p { font-size: 12px; color: var(--text-medium); margin: 0; }
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img:hover img { transform: scale(1.05); }
.about-img.tall { grid-row: span 2; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-size: 500px;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonials .section-title { color: #fff; }
.testimonials .section-subtitle { color: rgba(255,255,255,0.7); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars span { color: var(--secondary); font-size: 17px; }
.testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: #fff; font-size: 14px; }
.testimonial-location { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ===== FAQ ===== */
.faq { background: var(--bg-light); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active { border-color: var(--primary); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  gap: 12px;
  user-select: none;
}
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  transition: var(--transition);
  line-height: 1;
}
.faq-item.active .faq-icon {
  background: var(--secondary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.8;
}
.faq-answer-inner { padding: 0 24px 20px; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ===== QUOTE FORM ===== */
.quote {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.quote .section-label { color: var(--secondary); }
.quote .section-title { color: #fff; }
.quote .section-subtitle { color: rgba(255,255,255,0.75); }
.quote-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  max-width: 840px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.3s, background 0.3s;
  background: var(--bg-light);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit-area { text-align: center; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* ===== CONTACT ===== */
.contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon-wrap {
  width: 52px; height: 52px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap svg { width: 22px; height: 22px; color: var(--primary); }
.contact-item h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-item a,
.contact-item p {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-item a:hover { color: var(--secondary); }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-lg);
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: #0f1824;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo-name  { color: #fff; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.45); }
.footer-tagline {
  font-size: 14px;
  line-height: 1.75;
  margin: 18px 0 24px;
  max-width: 280px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}
.social-link:hover { background: var(--secondary); color: #fff; }
.social-link svg { width: 17px; height: 17px; }
.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 900;
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
}
.whatsapp-btn svg { width: 30px; height: 30px; color: #fff; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0);   }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0);   }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== ACTIVE NAV UNDERLINE ===== */
.nav-link.active::after { width: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-us-badge { right: 0; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav */
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 20px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-link {
    color: var(--text-dark) !important;
    padding: 14px 24px;
    display: block;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .nav-link::after { display: none; }
  .nav-cta {
    border-radius: 0 !important;
    text-align: center;
    padding: 16px 24px !important;
    border-bottom: none !important;
  }

  /* Hero */
  .hero-ctas { flex-direction: column; max-width: 300px; }
  .btn { justify-content: center; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.1); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* 2-col → 1-col layouts */
  .why-us-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .why-us-image img { height: 320px; }
  .why-us-badge { position: relative; right: auto; bottom: auto; margin-top: 16px; display: inline-block; }

  .about-images {
    grid-template-rows: 200px 200px;
  }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Quote form */
  .quote-form { grid-template-columns: 1fr; }
  .quote-form-wrapper { padding: 32px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* About highlights */
  .about-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(30px, 8vw, 42px); }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .about-images { grid-template-columns: 1fr; grid-template-rows: auto; }
  .about-img.tall { grid-row: auto; }
  .about-img img, .about-img.tall img { height: 220px; }
}

/* =========================================
   INTERIOR PAGES — Additional Styles
   ========================================= */

/* ===== SOLID NAVBAR (non-hero pages) ===== */
.navbar.solid,
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
}
.navbar.solid .logo-name,
.navbar.solid .nav-link   { color: var(--text-medium); }
.navbar.solid .nav-link:hover { color: var(--primary); }
.navbar.solid .hamburger span { background: var(--text-dark); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,107,53,0.07);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 50px);
  color: #fff;
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  line-height: 1.75;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
}
.breadcrumbs a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumbs a:hover { color: var(--secondary); }
.breadcrumbs .sep { color: rgba(255,255,255,0.35); }
.breadcrumbs .current { color: rgba(255,255,255,0.9); font-weight: 500; }

/* ===== CONTENT LAYOUT (main + sidebar) ===== */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}
.content-main > h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text-dark);
  margin: 40px 0 14px;
}
.content-main > h2:first-child { margin-top: 0; }
.content-main > h3 {
  font-size: 19px;
  color: var(--text-dark);
  margin: 28px 0 10px;
}
.content-main p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 16px;
}
.content-main ul,
.content-main ol {
  margin: 12px 0 20px 22px;
}
.content-main li {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 8px;
}
.content-main ul li::marker { color: var(--secondary); }
.content-main ol li::marker { color: var(--secondary); font-weight: 700; }

/* Steps */
.steps-list { list-style: none !important; margin: 0 !important; display: flex; flex-direction: column; gap: 20px; }
.step-item  { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  width: 42px; height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.step-body h4 { font-size: 15px; margin-bottom: 5px; }
.step-body p  { font-size: 14px; color: var(--text-medium); margin: 0; line-height: 1.65; }

/* Info boxes */
.info-box {
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}
.info-box.orange { background: rgba(255,107,53,0.07); border-left: 4px solid var(--secondary); }
.info-box.blue   { background: rgba(27,58,107,0.06);  border-left: 4px solid var(--primary); }
.info-box p { margin: 0; }

/* ===== SIDEBAR ===== */
.sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card.cta-card { background: var(--primary); }
.sidebar-card.cta-card h4,
.sidebar-card.cta-card p { color: rgba(255,255,255,0.9); }
.sidebar-card.cta-card .btn { width: 100%; justify-content: center; }
.sidebar-card h4 { font-size: 17px; color: var(--text-dark); margin-bottom: 10px; }
.sidebar-card p  { font-size: 13px; color: var(--text-medium); line-height: 1.7; margin-bottom: 14px; }
.sidebar-card .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: 10px;
}
.sidebar-card .phone-link svg { width: 16px; height: 16px; }
.sidebar-card .phone-link:hover { color: var(--secondary); }
.nav-services-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.nav-services-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-medium);
  text-decoration: none;
  transition: var(--transition);
}
.nav-services-list a:hover,
.nav-services-list a.active {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
}
.nav-services-list a.active { border-left: 3px solid var(--secondary); padding-left: 9px; }
.nav-services-list svg { width: 13px; height: 13px; color: var(--secondary); flex-shrink: 0; }

/* ===== SERVICES DETAIL LIST (services.html) ===== */
.service-detail-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-detail-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.service-detail-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-detail-icon svg { width: 34px; height: 34px; color: #fff; }
.service-detail-body h3 { font-size: 20px; margin-bottom: 10px; }
.service-detail-body p  { font-size: 14px; color: var(--text-medium); line-height: 1.75; margin-bottom: 12px; }

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-thumb {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-thumb svg { width: 52px; height: 52px; color: rgba(255,255,255,0.3); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255,107,53,0.1);
  color: var(--secondary);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.blog-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.blog-card h3 { font-size: 17px; line-height: 1.4; margin-bottom: 10px; }
.blog-card h3 a { color: var(--text-dark); text-decoration: none; transition: color 0.3s; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 14px; color: var(--text-medium); line-height: 1.7; flex: 1; }
.read-more {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  text-decoration: none; margin-top: 14px;
  transition: var(--transition);
}
.read-more:hover { color: var(--secondary); gap: 8px; }
.read-more svg { width: 13px; height: 13px; }

/* ===== BLOG POST ===== */
.post-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
.post-meta span { display: flex; align-items: center; gap: 5px; }
.post-meta svg { width: 13px; height: 13px; }
.post-cover { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); margin-bottom: 36px; }
.post-cover-placeholder {
  width: 100%; height: 380px; border-radius: var(--radius); margin-bottom: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.post-cover-placeholder svg { width: 80px; height: 80px; color: rgba(255,255,255,0.25); }
.post-content { font-size: 16px; line-height: 1.9; color: var(--text-medium); }
.post-content h2 { font-size: clamp(20px,2.5vw,26px); color: var(--text-dark); margin: 36px 0 14px; }
.post-content h3 { font-size: 19px; color: var(--text-dark); margin: 28px 0 10px; }
.post-content p  { margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 12px 0 20px 22px; }
.post-content li { margin-bottom: 8px; line-height: 1.75; }
.post-content ul li::marker { color: var(--secondary); }
.post-content strong { color: var(--text-dark); }
.post-cta {
  background: var(--bg-light);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
  margin: 32px 0;
}
.post-cta p { font-size: 15px; margin-bottom: 12px; }

/* ===== ABOUT PAGE ===== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.team-card h4 { font-size: 16px; margin-bottom: 4px; }
.team-card p  { font-size: 13px; color: var(--text-medium); }

/* Areas served grid */
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 24px; }
.area-tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  transition: var(--transition);
}
.area-tag:hover { border-color: var(--secondary); color: var(--secondary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .service-detail-card { grid-template-columns: 1fr; }
  .post-cover, .post-cover-placeholder { height: 220px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
