/*
Theme Name: OC House Cleaners
Theme URI: https://ochousecleaners.com
Author: OC House Cleaners
Description: Custom WordPress theme for OC House Cleaners — Orange County residential cleaning services.
Version: 1.0
*/

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
}

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

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Visible focus ring for keyboard navigation */
:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
  border-radius: 3px;
}

/* =====================
   TOPBAR
   ===================== */
.topbar {
  background: #1a237e;
  color: #90caf9;
  font-size: 11px;
  padding: 7px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left { display: flex; flex-wrap: wrap; gap: 4px; }
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 16px;
}
.topbar-left span i { color: #f97316; font-size: 13px; }
.topbar-right { display: flex; gap: 12px; align-items: center; }
.topbar-right a { color: #90caf9; font-size: 16px; transition: color 0.2s; }
.topbar-right a:hover { color: #f97316; }

/* =====================
   HEADER / NAV
   ===================== */
.site-header {
  background: #fff;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 #e8eaf6;
  position: sticky;
  top: 0;
  z-index: 100;
  /* needed so .main-nav.open can use position:absolute relative to the header */
  isolation: isolate;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo i { color: #f97316; font-size: 28px; }
.logo-text { line-height: 1.1; }
.logo-text strong { font-size: 20px; font-weight: 800; color: #1a237e; }
.logo-text strong em { font-style: normal; color: #f97316; }
.logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav { display: flex; gap: 24px; align-items: center; }
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.current { color: #1a237e; }

.header-ctas { display: flex; gap: 10px; align-items: center; }

.btn-outline {
  border: 1.5px solid #1a237e;
  color: #1a237e;
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { background: #1a237e; color: #fff; }

.btn-primary {
  background: #f97316;
  color: #fff;
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #ea580c; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #1a237e;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  line-height: 1;
}

/* =====================
   PAGE HERO BANNER
   ===================== */
.page-hero {
  background: linear-gradient(120deg, #0d1b6e 55%, #1565c0 100%);
  padding: 44px 40px 60px;
  position: relative;
  overflow: hidden;
  /* ensure page title text doesn't collide with the wave SVG at the bottom */
  padding-bottom: 72px;
}
.page-hero .breadcrumb {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb a:hover { color: #f97316; }
.page-hero .breadcrumb span { color: #f97316; }
.page-hero h1 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  max-width: 640px;
}
.page-hero p { font-size: 13px; color: #90caf9; }
.page-hero-wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; z-index: 1;
}

/* =====================
   SECTIONS
   ===================== */
.section { padding: 60px 40px; }
.section-sm { padding: 40px 40px; }
.section-light { background: #f5f7ff; }
.section-dark { background: linear-gradient(135deg, #1a237e, #283593 60%, #1565c0); }
.section-black { background: linear-gradient(135deg, #1a1a1a, #2d1a0a 60%, #431d04); }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  color: #f97316;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #1a237e;
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-h2-white { color: #fff; }
.section-sub {
  font-size: 14px;
  color: #888;
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* =====================
   WAVE DIVIDERS
   ===================== */
.wave-down-light {
  display: block; width: 100%;
  background: #fff;
  margin-bottom: -2px;
}
.wave-up-dark {
  display: block; width: 100%;
  background: #f5f7ff;
  margin-top: -2px;
}

/* =====================
   HERO (HOMEPAGE)
   ===================== */
.hero {
  background: linear-gradient(120deg, #0d1b6e 55%, #1565c0 100%);
  display: flex;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: 240px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(249,115,22,0.06);
}
.hero-left {
  flex: 1.2;
  padding: 64px 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag {
  font-size: 11px;
  font-weight: 700;
  color: #f97316;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}
.hero-h1 strong { font-weight: 800; }
.hero-h1 em { font-style: normal; color: #64b5f6; }
.hero-btn {
  display: inline-block;
  background: #f97316;
  color: #fff;
  padding: 14px 30px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.hero-btn:hover { background: #ea580c; }
.hero-right {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px 32px 0;
  z-index: 2;
}
.hero-wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; z-index: 1;
}

/* Hero booking form */
.hero-form {
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 28px 24px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.hero-form-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-form-title i { color: #f97316; }
.hero-form input {
  width: 100%;
  border: 1.5px solid #e3e8f0;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
  transition: border-color 0.2s;
  font-family: inherit;
}
.hero-form input:focus { outline: none; border-color: #1a237e; box-shadow: 0 0 0 3px rgba(26,35,126,0.12); }
.hero-form .btn-submit {
  width: 100%;
  background: #f97316;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
  font-family: inherit;
}
.hero-form .btn-submit:hover { background: #ea580c; }

/* =====================
   STICKY SERVICE NAV
   ===================== */
.service-nav {
  background: #1a237e;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.service-nav-title { font-size: 18px; font-weight: 800; color: #fff; }
.service-nav-sub {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.service-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.service-nav-phone i { color: #f97316; font-size: 20px; }

/* =====================
   SERVICE CARDS
   ===================== */
.services-section { padding: 56px 40px 20px; background: #fff; }
.services-section > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 16px;
  max-width: 1200px;
}
.service-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(13,27,110,0.18);
}
.service-card-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-img.img-1 { background: linear-gradient(135deg, #bbdefb, #90caf9); }
.service-card-img.img-2 { background: linear-gradient(135deg, #c5cae9, #9fa8da); }
.service-card-img.img-3 { background: linear-gradient(135deg, #b3e5fc, #81d4fa); }
.service-card-img i { font-size: 80px; opacity: 0.22; color: #0d47a1; }
.service-card-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(13,27,110,0.92) 0%, transparent 100%);
  padding: 22px 18px 18px;
}
.service-card-name { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.service-card-desc { color: rgba(255,255,255,0.7); font-size: 12px; }
.service-card-btn {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.service-card-btn:hover { background: #ea580c; }
.services-footnote {
  text-align: center;
  font-size: 12px;
  color: #888;
  padding: 12px 0 36px;
}
.services-footnote a { color: #1a237e; font-weight: 700; }
.services-footnote a:hover { color: #f97316; }

/* =====================
   WHY CHOOSE US
   ===================== */
.why-section {
  background: #f5f7ff;
  display: flex;
  flex-wrap: wrap;
}
.why-image {
  flex: 0.9;
  min-width: 280px;
  min-height: 380px;
  background: linear-gradient(135deg, #c5cae9, #9fa8da);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.why-image i.bg-icon {
  font-size: 180px;
  color: #283593;
  opacity: 0.08;
  position: absolute;
  bottom: -20px;
}
.why-image i.fg-icon {
  font-size: 72px;
  color: #283593;
  opacity: 0.22;
  position: relative;
  z-index: 2;
}
/* If a real photo is used */
.why-image img { width: 100%; height: 100%; object-fit: cover; }

.why-content {
  flex: 1;
  min-width: 300px;
  padding: 56px 48px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: #e8eaf6;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon i { font-size: 22px; color: #1a237e; }
.why-item-title { font-size: 13px; font-weight: 700; color: #1a237e; margin-bottom: 5px; }
.why-item-desc { font-size: 12px; color: #888; line-height: 1.65; }
.why-link { font-size: 12px; color: #f97316; font-weight: 700; display: inline-block; margin-top: 6px; }
.why-link:hover { text-decoration: underline; }

/* =====================
   HOW IT WORKS
   ===================== */
.how-section {
  background: linear-gradient(135deg, #1a237e, #283593 60%, #1565c0);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.how-section > div { max-width: 1100px; margin-left: auto; margin-right: auto; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.how-step { text-align: center; position: relative; z-index: 2; }
.how-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.how-circle i { font-size: 26px; color: #f97316; }
.how-step-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.how-step-desc { font-size: 12px; color: #90caf9; line-height: 1.65; }

/* =====================
   CTA BANNER
   ===================== */
.cta-banner { background: #fff; display: flex; flex-wrap: wrap; }
.cta-banner-img {
  flex: 0.65;
  min-width: 200px;
  min-height: 230px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.cta-banner-img i.bg { font-size: 140px; color: #1565c0; opacity: 0.09; position: absolute; bottom: -14px; }
.cta-banner-img i.fg { font-size: 52px; color: #1565c0; opacity: 0.2; position: relative; z-index: 2; }
.cta-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-content {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(120deg, #1a237e, #283593);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-banner-tag {
  font-size: 11px; font-weight: 700;
  color: #f97316; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px;
}
.cta-banner-h3 {
  font-size: 26px; font-weight: 800;
  color: #fff; line-height: 1.3; margin-bottom: 28px;
}
.cta-banner-h3 em { font-style: normal; color: #f97316; text-decoration: underline; }
.cta-banner-btns { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-phone {
  display: flex; align-items: center; gap: 9px;
  color: #fff; font-size: 14px; font-weight: 700;
}
.cta-phone i { color: #f97316; font-size: 18px; }
.cta-phone-label { font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }

/* =====================
   ABOUT
   ===================== */
.about-section { padding: 64px 40px; display: flex; gap: 52px; align-items: center; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 300px; }
.about-body { font-size: 14px; color: #666; line-height: 1.8; margin-top: 12px; }
.about-quote {
  font-size: 13px;
  color: #555;
  line-height: 1.85;
  font-style: italic;
  border-left: 3px solid #f97316;
  margin: 22px 0;
  background: #f5f7ff;
  padding: 16px 16px 16px 20px;
  border-radius: 0 10px 10px 0;
}
.about-founder { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.founder-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #1a237e, #283593);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.founder-name { font-weight: 700; color: #1a237e; font-size: 14px; }
.founder-role { font-size: 12px; color: #999; }
.about-images {
  flex: 0.75;
  min-width: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-img-block {
  border-radius: 12px;
  overflow: hidden;
  min-height: 130px;
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
  display: flex; align-items: center; justify-content: center;
}
.about-img-block img { width: 100%; height: 100%; object-fit: cover; }
.about-img-block i { font-size: 40px; color: #1a237e; opacity: 0.18; }
.about-img-block.tall { grid-row: span 2; }

/* =====================
   TESTIMONIALS
   ===================== */
.testi-section { background: #f5f7ff; padding: 60px 40px; text-align: center; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.testi-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 2px 16px rgba(26,35,126,0.06);
  border: 1px solid rgba(26,35,126,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testi-card:hover {
  box-shadow: 0 6px 24px rgba(26,35,126,0.1);
  transform: translateY(-2px);
}
.testi-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #1a237e, #283593);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testi-name { font-weight: 700; color: #1a237e; font-size: 14px; }
.testi-location { font-size: 11px; color: #aaa; }
.testi-stars { color: #f97316; font-size: 14px; margin-left: auto; }
.testi-text { font-size: 13px; color: #555; line-height: 1.8; font-style: italic; }

/* =====================
   CONTACT FORM SECTION
   ===================== */
.contact-section {
  background: #1a237e;
  padding: 60px 40px;
  text-align: center;
}
.contact-section .section-tag { color: #f97316; }
.contact-section .section-h2 { color: #fff; margin-bottom: 8px; }
.contact-section p { font-size: 13px; color: #90caf9; margin-bottom: 36px; }
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input {
  width: 100%;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  font-family: inherit;
  transition: border-color 0.2s;
}
.contact-form input::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus { outline: none; border-color: #f97316; box-shadow: 0 0 0 3px rgba(249,115,22,0.18); }
.contact-form .btn-submit {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
  font-family: inherit;
  letter-spacing: 0.5px;
}
.contact-form .btn-submit:hover { background: #ea580c; }

/* When contact-form sits inside the white hero-form card, restore light-bg input styles */
.hero-form .contact-form input {
  color: #333;
  background: #fff;
  border-color: #e3e8f0;
}
.hero-form .contact-form input::placeholder { color: #aaa; }
.hero-form .contact-form input:focus { border-color: #1a237e; box-shadow: 0 0 0 3px rgba(26,35,126,0.12); }

/* =====================
   BLOG SECTION (homepage)
   ===================== */
.blog-section { background: #f5f7ff; padding: 60px 40px; }
.blog-section-inner { max-width: 1200px; margin: 0 auto; }
.blog-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,35,126,0.1); }
.blog-card-thumb {
  height: 136px;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-thumb.color-1 { background: linear-gradient(135deg, #bbdefb, #90caf9); }
.blog-card-thumb.color-2 { background: linear-gradient(135deg, #c5cae9, #9fa8da); }
.blog-card-thumb.color-3 { background: linear-gradient(135deg, #b3e5fc, #81d4fa); }
.blog-card-thumb i { font-size: 44px; opacity: 0.25; color: #0d47a1; }
.blog-card-body { padding: 18px; background: #fff; }
.blog-card-cat {
  font-size: 10px; font-weight: 700;
  color: #f97316; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 8px;
}
.blog-card-title {
  font-size: 14px; font-weight: 700;
  color: #1a237e; line-height: 1.45;
  margin-bottom: 10px;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: #f97316; }
.blog-card-meta { font-size: 11px; color: #bbb; }

/* =====================
   SUBSCRIBE
   ===================== */
.subscribe-section {
  background: linear-gradient(120deg, #1a237e, #283593 50%, #1565c0);
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.subscribe-text .sub-tag {
  font-size: 11px; font-weight: 700;
  color: #f97316; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 10px;
}
.subscribe-text h3 {
  font-size: 22px; font-weight: 800;
  color: #fff; line-height: 1.3;
  max-width: 400px;
}
.subscribe-text h3 em { font-style: normal; color: #f97316; }
.subscribe-form {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 30px;
  overflow: hidden;
  padding: 4px;
  gap: 4px;
}
.subscribe-form input {
  background: transparent;
  border: none;
  padding: 11px 20px;
  font-size: 13px;
  color: #fff;
  min-width: 220px;
  font-family: inherit;
  border-radius: 24px;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.5); }
.subscribe-form input:focus {
  outline: 2px solid rgba(249,115,22,0.7);
  outline-offset: -2px;
}
.subscribe-form button {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.subscribe-form button:hover { background: #ea580c; }

/* =====================
   FOOTER
   ===================== */
.site-footer { background: #0d1b6e; padding: 52px 40px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-about-logo {
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px;
}
.footer-about-logo em { font-style: normal; color: #f97316; }
.footer-about-desc { font-size: 12px; color: #7986cb; line-height: 1.8; margin-bottom: 14px; }
.footer-contact-info { font-size: 12px; color: #7986cb; line-height: 1.9; }
.footer-contact-info a { color: #7986cb; }
.footer-contact-info a:hover { color: #f97316; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: #fff;
  margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 12px; color: #7986cb; transition: color 0.2s; }
.footer-col ul li a:hover { color: #f97316; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  font-size: 11px; color: #7986cb; text-align: center;
}

/* =====================
   BLOG LIST (archive.php)
   ===================== */
.blog-list-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding: 48px 40px;
  background: #f5f7ff;
}
.post-list-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 30px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
  transition: box-shadow 0.2s;
}
.post-list-card:hover { box-shadow: 0 4px 20px rgba(26,35,126,0.1); }
.post-list-cat {
  display: inline-block;
  background: #fff7ed;
  color: #f97316;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 13px;
}
.post-list-title {
  font-size: 19px; font-weight: 800;
  color: #1a237e; line-height: 1.35; margin-bottom: 11px;
}
.post-list-title a { color: inherit; }
.post-list-title a:hover { color: #f97316; }
.post-list-excerpt { font-size: 13px; color: #666; line-height: 1.75; margin-bottom: 18px; }
.post-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f5;
  flex-wrap: wrap;
  gap: 10px;
}
.post-list-meta {
  display: flex; align-items: center;
  gap: 16px; font-size: 11px; color: #bbb;
  flex-wrap: wrap;
}
.post-list-meta span { display: flex; align-items: center; gap: 5px; }
.post-list-meta i { font-size: 13px; color: #c5cae9; }
.read-more-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: #1a237e;
  white-space: nowrap; transition: color 0.2s;
}
.read-more-link:hover { color: #f97316; }
.read-more-link i { font-size: 14px; }

/* Pagination */
.pagination-wrap { display: flex; gap: 6px; align-items: center; margin-top: 8px; }
.page-number {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  border: 1.5px solid #e3e8f0;
  background: #fff; color: #1a237e; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
}
.page-number:hover { border-color: #1a237e; }
.page-number.current { background: #1a237e; color: #fff; border-color: #1a237e; }
.page-number.next {
  background: #f97316; color: #fff;
  border-color: #f97316; padding: 0 14px; width: auto;
}
.page-number.next:hover { background: #ea580c; }

/* =====================
   SIDEBAR
   ===================== */
.sidebar-widget {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
}
.sidebar-cta-widget {
  background: linear-gradient(135deg, #1a237e, #283593);
  border-radius: 14px;
  padding: 26px 22px;
  margin-bottom: 22px;
  text-align: center;
}
.sidebar-cta-widget h4 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 9px; }
.sidebar-cta-widget p { font-size: 12px; color: #90caf9; margin-bottom: 18px; line-height: 1.65; }
.sidebar-cta-widget .btn-primary { width: 100%; text-align: center; display: block; border-radius: 8px; padding: 12px; }
.widget-title {
  font-size: 13px; font-weight: 800; color: #1a237e;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid #f5f7ff;
}
.widget-cat-item {
  display: flex; justify-content: space-between;
  align-items: center; padding: 9px 0;
  border-bottom: 0.5px solid #f0f0f5;
  font-size: 12px; color: #555; cursor: pointer;
  transition: color 0.2s;
}
.widget-cat-item:last-child { border-bottom: none; }
.widget-cat-item:hover { color: #f97316; }
.widget-cat-item a { color: inherit; }
.cat-badge {
  background: #e8eaf6; color: #1a237e;
  font-size: 10px; font-weight: 700;
  padding: 2px 9px; border-radius: 10px;
}
.widget-recent-post {
  display: flex; gap: 12px;
  padding: 9px 0; border-bottom: 0.5px solid #f0f0f5;
}
.widget-recent-post:last-child { border-bottom: none; }
.widget-recent-thumb {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: 8px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.widget-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-recent-thumb.c1 { background: linear-gradient(135deg, #bbdefb, #90caf9); }
.widget-recent-thumb.c2 { background: linear-gradient(135deg, #c5cae9, #9fa8da); }
.widget-recent-thumb.c3 { background: linear-gradient(135deg, #b3e5fc, #81d4fa); }
.widget-recent-thumb i { font-size: 18px; color: #0d47a1; opacity: 0.3; }
.widget-recent-title {
  font-size: 12px; font-weight: 700; color: #1a237e;
  line-height: 1.45; cursor: pointer;
}
.widget-recent-title a { color: inherit; }
.widget-recent-title a:hover { color: #f97316; }
.widget-recent-date { font-size: 10px; color: #bbb; margin-top: 4px; }

/* =====================
   SINGLE POST
   ===================== */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding: 48px 40px;
  background: #f5f7ff;
}
.single-post-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
}
.single-featured-img {
  height: 260px;
  background: linear-gradient(135deg, #bbdefb, #90caf9);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.single-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.single-featured-img i { font-size: 90px; color: #0d47a1; opacity: 0.15; }
.single-post-content { padding: 36px; }
.single-cat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff7ed; color: #f97316;
  padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; margin-bottom: 18px;
}
.single-post-title {
  font-size: 26px; font-weight: 800; color: #1a237e;
  line-height: 1.3; margin-bottom: 14px;
}
.single-post-meta {
  display: flex; align-items: center; gap: 18px;
  font-size: 11px; color: #bbb;
  margin-bottom: 28px; padding-bottom: 22px;
  border-bottom: 1px solid #f0f0f5; flex-wrap: wrap;
}
.single-post-meta span { display: flex; align-items: center; gap: 5px; }
.single-post-meta i { font-size: 13px; color: #c5cae9; }

/* Post body typography */
.post-content { font-size: 15px; color: #444; line-height: 1.85; }
.post-content p { margin-bottom: 18px; }
.post-content h2 { font-size: 20px; font-weight: 800; color: #1a237e; margin: 32px 0 14px; }
.post-content h3 { font-size: 17px; font-weight: 700; color: #1a237e; margin: 24px 0 12px; }
.post-content ul, .post-content ol { margin: 0 0 18px 22px; }
.post-content ul li, .post-content ol li { margin-bottom: 6px; }
.post-content strong { font-weight: 700; color: #1a237e; }
.post-content a { color: #f97316; font-weight: 600; }
.post-content a:hover { text-decoration: underline; }
.post-content blockquote {
  background: #f5f7ff;
  border-left: 3px solid #f97316;
  padding: 18px 20px 18px 24px;
  border-radius: 0 10px 10px 0;
  margin: 28px 0;
  font-size: 15px; font-style: italic; color: #555; line-height: 1.75;
}

/* Post tags */
.post-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 22px;
  border-top: 1px solid #f0f0f5;
}
.post-tag {
  background: #e8eaf6; color: #1a237e;
  font-size: 11px; font-weight: 600;
  padding: 5px 13px; border-radius: 20px;
  cursor: pointer; transition: all 0.2s;
}
.post-tag:hover { background: #1a237e; color: #fff; }
.post-tag a { color: inherit; }

/* Author box */
.author-box {
  margin: 0 36px 28px;
  background: #f5f7ff;
  border-radius: 12px;
  padding: 22px;
  display: flex; gap: 18px; align-items: flex-start;
}
.author-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #1a237e, #283593);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 800; color: #1a237e; margin-bottom: 5px; }
.author-bio { font-size: 12px; color: #888; line-height: 1.65; }

/* Related posts */
.related-posts { padding: 0 36px 36px; }
.related-posts h3 { font-size: 17px; font-weight: 800; color: #1a237e; margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card {
  background: #fff;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,35,126,0.05);
  cursor: pointer; transition: transform 0.2s;
}
.related-card:hover { transform: translateY(-2px); }
.related-thumb {
  height: 82px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-thumb.c1 { background: linear-gradient(135deg, #c5cae9, #9fa8da); }
.related-thumb.c2 { background: linear-gradient(135deg, #b3e5fc, #81d4fa); }
.related-thumb.c3 { background: linear-gradient(135deg, #dcedc8, #aed581); }
.related-thumb i { font-size: 28px; opacity: 0.22; color: #0d47a1; }
.related-card-body { padding: 11px 13px; }
.related-card-title { font-size: 11px; font-weight: 700; color: #1a237e; line-height: 1.4; }
.related-card-title a { color: inherit; }
.related-card-title a:hover { color: #f97316; }
.related-card-date { font-size: 10px; color: #bbb; margin-top: 4px; }

/* =====================
   GENERIC PAGE (page.php)
   ===================== */
.page-content-wrap { max-width: 820px; margin: 0 auto; padding: 56px 40px; }
.page-content-title { font-size: 28px; font-weight: 800; color: #1a237e; margin-bottom: 24px; }
.page-content { font-size: 15px; color: #444; line-height: 1.85; }
.page-content p { margin-bottom: 18px; }
.page-content h2 { font-size: 22px; font-weight: 800; color: #1a237e; margin: 32px 0 14px; }
.page-content h3 { font-size: 18px; font-weight: 700; color: #1a237e; margin: 24px 0 12px; }
.page-content ul, .page-content ol { margin: 0 0 18px 22px; }
.page-content ul li, .page-content ol li { margin-bottom: 6px; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-page-wrap {
  max-width: 600px; margin: 0 auto;
  padding: 56px 40px; text-align: center;
}
.contact-page-wrap .section-tag { margin-bottom: 8px; }
.contact-page-form {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 36px; text-align: left;
}
.contact-page-form input {
  width: 100%;
  border: 1.5px solid #e3e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px; color: #333;
  font-family: inherit;
  transition: border-color 0.2s;
}
.contact-page-form input:focus { outline: none; border-color: #1a237e; box-shadow: 0 0 0 3px rgba(26,35,126,0.1); }
.contact-page-form textarea {
  width: 100%;
  border: 1.5px solid #e3e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px; color: #333;
  font-family: inherit;
  min-height: 130px; resize: vertical;
  transition: border-color 0.2s;
}
.contact-page-form textarea:focus { outline: none; border-color: #1a237e; box-shadow: 0 0 0 3px rgba(26,35,126,0.1); }
.contact-page-form .btn-submit {
  background: #f97316; color: #fff;
  border: none; padding: 15px;
  border-radius: 8px; font-weight: 700;
  font-size: 15px; cursor: pointer;
  font-family: inherit; transition: background 0.2s;
  letter-spacing: 0.5px;
}
.contact-page-form .btn-submit:hover { background: #ea580c; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  .hero { flex-direction: column; }
  .hero-left { padding: 48px 32px 24px; }
  .hero-right { padding: 0 32px 48px; }
  .hero-form { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-section { flex-direction: column; }
  .why-image { min-height: 220px; }
  .why-content { padding: 40px 32px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
  .cta-banner { flex-direction: column; }
  .cta-banner-img { min-height: 160px; width: 100%; }
  .about-section { flex-direction: column; padding: 48px 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-list-layout { grid-template-columns: 1fr; }
  .single-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-cards-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 40px 32px 72px; }
  .hero-h1 { font-size: 32px; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .site-header { padding: 12px 20px; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 99;
    gap: 4px;
  }
  .main-nav.open a {
    padding: 10px 4px;
    border-bottom: 1px solid #f0f0f5;
    font-size: 14px;
  }
  .main-nav.open a:last-child { border-bottom: none; }
  .header-ctas { display: none; }
  .section, .section-sm { padding: 40px 20px; }
  .page-hero { padding: 32px 20px 68px; }
  .how-section { padding: 48px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .blog-cards-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-section { padding: 32px 20px; }
  .services-section > * { margin-left: 0; margin-right: 0; }
  .blog-list-layout, .single-layout { padding: 24px 16px; }
  .subscribe-section { flex-direction: column; padding: 40px 20px; }
  .subscribe-form { width: 100%; }
  .subscribe-form input { min-width: 0; flex: 1; }
  .blog-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contact-section { padding: 48px 20px; }
  .cta-banner-content { padding: 36px 24px; }
  .hero-h1 { font-size: 30px; }
  .section-h2 { font-size: 24px; }
  .single-post-content { padding: 24px; }
  .author-box { margin: 0 16px 22px; }
  .related-posts { padding: 0 16px 24px; }
  .about-section { padding: 40px 20px; }
  .testi-section { padding: 48px 20px; }
}
