/* =========================================
   GERMICIDAL MAIDS - Main Stylesheet
   ========================================= */

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

:root {
  --primary:       #2a7dc9;
  --primary-dark:  #1a5fa0;
  --primary-light: #e8f3fc;
  --accent:        #f5a623;
  --accent-dark:   #d4891a;
  --green:         #27ae60;
  --dark:          #1a1a2e;
  --text:          #333;
  --text-light:    #666;
  --white:         #ffffff;
  --light-bg:      #f7f9fc;
  --border:        #e0e8f0;
  --shadow:        0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.15);
  --radius:        10px;
  --radius-lg:     18px;
  --transition:    all .3s ease;
  --font:          'Inter', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.25; color: var(--dark); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }

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

.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(245,166,35,.4);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,.5);
}
.btn-blue {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(42,125,201,.3);
}
.btn-blue:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

/* === SECTION LABELS === */
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 40px;
}
.text-center { text-align: center; }

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,.9); }
.top-bar a:hover { color: var(--accent); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item i { font-size: .8rem; color: var(--accent); }

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 8px 14px;
  color: var(--dark);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-link i { font-size: .7rem; margin-left: 4px; }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  border: 1px solid var(--border);
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  color: var(--text);
  font-size: .92rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}
.dropdown-menu a i { color: var(--primary); font-size: .8rem; width: 16px; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: .85rem;
}
.header-phone span { color: var(--text-light); }
.header-phone a { color: var(--primary-dark); font-weight: 700; font-size: 1.1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  background: linear-gradient(135deg, #0d3b6e 0%, var(--primary-dark) 40%, var(--primary) 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&auto=format&fit=crop') center/cover no-repeat;
  opacity: .12;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero-badge i { color: var(--accent); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero-desc { font-size: 1.15rem; opacity: .92; margin-bottom: 30px; max-width: 550px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
}
.trust-item i { color: var(--accent); font-size: 1rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-lg);
}
.hero-form-card h3 { color: var(--dark); margin-bottom: 6px; font-size: 1.4rem; }
.hero-form-card p { color: var(--text-light); font-size: .9rem; margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font);
  transition: var(--transition);
  color: var(--text);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42,125,201,.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-disclaimer {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 10px;
  text-align: center;
}
.form-disclaimer i { color: var(--green); }

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--primary);
  color: var(--white);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.stat-label { font-size: .9rem; opacity: .9; }

/* =========================================
   PROBLEM / SOLUTION SECTION
   ========================================= */
.problem-section { background: var(--light-bg); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-img { position: relative; }
.problem-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.problem-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}
.problem-badge i { font-size: 1.8rem; color: var(--primary); }
.problem-badge strong { font-size: 1.5rem; color: var(--primary); display: block; line-height: 1; }
.problem-badge span { font-size: .8rem; color: var(--text-light); }
.pain-points { margin: 20px 0 30px; }
.pain-point {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.pain-point:last-child { border-bottom: none; }
.pain-icon {
  width: 42px;
  height: 42px;
  background: #fff0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e74c3c;
}
.pain-point h4 { margin-bottom: 4px; font-size: 1rem; }
.pain-point p { margin: 0; font-size: .9rem; color: var(--text-light); }

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 1.3rem;
}
.service-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card-body p { color: var(--text-light); font-size: .92rem; margin-bottom: 18px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: .92rem;
}
.service-card-link i { transition: transform .2s; }
.service-card:hover .service-card-link i { transform: translateX(4px); }

/* =========================================
   HOW IT WORKS / PROCESS
   ========================================= */
.process-section { background: var(--primary); color: var(--white); }
.process-section .section-label { background: rgba(255,255,255,.2); color: var(--white); }
.process-section h2 { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,.8); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: rgba(255,255,255,.3);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(245,166,35,.5);
}
.process-step h3 { color: var(--white); margin-bottom: 10px; }
.process-step p { opacity: .85; font-size: .95rem; }
.step-icon { font-size: 2.5rem; margin-bottom: 16px; color: rgba(255,255,255,.7); }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: var(--transition);
}
.why-feature:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.why-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.why-feature h4 { margin-bottom: 6px; }
.why-feature p { font-size: .88rem; color: var(--text-light); margin: 0; }
.why-img { position: relative; }
.why-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--light-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-size: .95rem; color: var(--text); margin-bottom: 18px; font-style: italic; line-height: 1.7; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .95rem; }
.reviewer-meta { font-size: .8rem; color: var(--text-light); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: .9rem;
  margin-top: 40px;
}
.google-badge img { height: 22px; }

/* =========================================
   OFFER / CTA BANNER
   ========================================= */
.offer-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #e67e22 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.offer-banner h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 10px; }
.offer-price {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin: 10px 0;
}
.offer-price sup { font-size: 2rem; vertical-align: top; margin-top: 12px; display: inline-block; }
.offer-price span { font-size: 1.5rem; }
.offer-banner p { font-size: 1.1rem; opacity: .9; margin-bottom: 28px; }
.offer-banner .btn {
  background: var(--white);
  color: var(--accent-dark);
  font-size: 1.1rem;
  padding: 16px 44px;
}
.offer-banner .btn:hover {
  background: var(--dark);
  color: var(--white);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section { background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background: var(--white);
  transition: var(--transition);
  gap: 12px;
}
.faq-question:hover { background: var(--primary-light); color: var(--primary); }
.faq-question.active { background: var(--primary); color: var(--white); }
.faq-question i { flex-shrink: 0; transition: transform .3s; font-size: .85rem; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  background: var(--light-bg);
  font-size: .95rem;
  color: var(--text);
  line-height: 1.75;
}
.faq-answer.open { max-height: 400px; padding: 18px 22px; }

/* =========================================
   AREAS WE SERVE
   ========================================= */
.areas-section { background: var(--light-bg); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.area-tag {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.area-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}
.area-tag i { color: var(--primary); font-size: .85rem; }

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: .88rem; color: var(--text-light); margin-bottom: 16px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .82rem;
  color: var(--text-light);
}
.blog-meta i { color: var(--primary); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #0d1b2e;
  color: rgba(255,255,255,.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand img { height: 60px; margin-bottom: 18px; filter: brightness(10); opacity: .9; }
.footer-brand p { font-size: .92rem; opacity: .8; margin-bottom: 20px; line-height: 1.7; }
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { color: var(--primary); font-size: .8rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span { font-size: .9rem; line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,.85); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  opacity: .75;
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--accent); }

/* =========================================
   PAGE HERO (Inner pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, #0d3b6e 0%, var(--primary-dark) 60%, var(--primary) 100%);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1200&auto=format&fit=crop') center/cover no-repeat;
  opacity: .1;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 1.15rem; opacity: .9; max-width: 650px; margin: 0 auto 24px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .88rem;
  opacity: .8;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: .6; }

/* =========================================
   SERVICE PAGE CONTENT
   ========================================= */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-intro img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.checklist-section { background: var(--light-bg); }
.checklist-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.checklist-tab {
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
}
.checklist-tab.active, .checklist-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.checklist-content { display: none; }
.checklist-content.active { display: block; }
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  font-size: .92rem;
  border: 1px solid var(--border);
}
.checklist-item i { color: var(--primary); font-size: .9rem; flex-shrink: 0; }

/* Benefits section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.benefits-list { display: flex; flex-direction: column; gap: 18px; }
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.benefit-item:hover { transform: translateX(6px); border-left: 3px solid var(--primary); }
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.benefit-item h4 { margin-bottom: 4px; }
.benefit-item p { margin: 0; font-size: .9rem; color: var(--text-light); }
.benefits-grid img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* =========================================
   TESTIMONIALS ROW
   ========================================= */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card-info h4 { margin-bottom: 4px; }
.contact-card-info p, .contact-card-info a { margin: 0; font-size: .95rem; color: var(--text); }
.contact-card-info a:hover { color: var(--primary); }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { display: block; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card img { width: 100%; height: 240px; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h4 { margin-bottom: 4px; }
.team-card-body span { font-size: .85rem; color: var(--primary); font-weight: 600; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-grid img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.value-card i { font-size: 2.2rem; color: var(--primary); margin-bottom: 14px; display: block; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: .88rem; color: var(--text-light); margin: 0; }

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-header-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-widget h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.sidebar-categories { display: flex; flex-direction: column; gap: 8px; }
.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--text);
  font-size: .9rem;
  transition: var(--transition);
}
.sidebar-categories a:hover { background: var(--primary-light); color: var(--primary); }
.sidebar-categories a span {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  padding: 2px 9px;
  font-size: .8rem;
  font-weight: 700;
}
.recent-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.recent-post:last-child { border-bottom: none; }
.recent-post img { width: 65px; height: 65px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.recent-post h5 { font-size: .88rem; margin-bottom: 4px; line-height: 1.4; }
.recent-post h5 a { color: var(--dark); }
.recent-post h5 a:hover { color: var(--primary); }
.recent-post span { font-size: .78rem; color: var(--text-light); }

/* =========================================
   MISC UTILITIES
   ========================================= */
.bg-light { background: var(--light-bg); }
.bg-white { background: var(--white); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.fw-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Alert / Notice */
.notice-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 12px;
  font-weight: 600;
  font-size: .95rem;
}
.notice-bar a { color: var(--white); text-decoration: underline; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
  font-size: 1.1rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* Cookie Consent */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  font-size: .9rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar a { color: var(--accent); }
.cookie-bar-btns { display: flex; gap: 10px; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }
  .hero { padding: 70px 0 60px; }
  .hero-btns { justify-content: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { gap: 40px; }
  .problem-grid { gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-padding { padding: 55px 0; }
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 290px;
    height: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 30px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    transition: left .3s ease;
    z-index: 999;
  }
  .main-nav.open { left: 0; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
  }
  .nav-overlay.show { display: block; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    display: none;
  }
  .nav-item.open .dropdown-menu { display: block; }
  .header-cta .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { text-align: center; padding: 55px 0; }
  .hero-trust { justify-content: center; }
  .hero-btns { justify-content: center; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-badge { right: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .why-img { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-intro { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-grid img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-grid img { height: 280px; }
  .blog-header-grid { grid-template-columns: 1fr; }
  .top-bar-right { display: none; }
  .offer-price { font-size: 3.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-trust { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
