/* ============================================================
   EcoFusion Pest Control — Inner Page Styles
   Service pages & Location pages
   ============================================================ */

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: white; }

/* ── INNER HERO ── */
.inner-hero {
  background: linear-gradient(135deg, #0A1223 0%, #1565C0 100%);
  color: white;
  padding: 56px 40px 48px;
}
.inner-hero .container { max-width: 1200px; margin: 0 auto; }
.inner-hero-content { display: flex; align-items: flex-start; gap: 40px; }
.inner-hero-text { flex: 1; }
.inner-hero-icon { font-size: 48px; margin-bottom: 12px; }
.inner-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.inner-hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 24px;
}
.inner-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.inner-hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.inner-hero-trust span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

/* ── CONTENT LAYOUT ── */
.inner-content { padding: 60px 40px; }
.inner-content .container { max-width: 1200px; margin: 0 auto; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.content-main h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  color: #1A1A1A;
  margin: 40px 0 16px;
  line-height: 1.25;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p {
  font-size: 16px;
  line-height: 1.75;
  color: #3A3A3A;
  margin-bottom: 18px;
}

/* ── PROCESS STEPS INNER ── */
.process-steps-inner { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.process-step-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #F0F4F8;
  padding: 20px;
  border-radius: 10px;
}
.step-num {
  min-width: 36px;
  height: 36px;
  background: #1565C0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.process-step-inner h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #0A1223; }
.process-step-inner p { margin: 0; font-size: 14px; color: #3A3A3A; }

/* ── PESTS GRID INNER ── */
.pests-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.pest-card-inner {
  background: #F0F4F8;
  padding: 20px;
  border-radius: 10px;
  border-left: 3px solid #1565C0;
}
.pest-card-inner > span { font-size: 28px; display: block; margin-bottom: 8px; }
.pest-card-inner h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #0A1223; }
.pest-card-inner p { font-size: 13px; color: #3A3A3A; margin-bottom: 10px; line-height: 1.5; }
.pest-card-inner a { font-size: 13px; color: #1565C0; text-decoration: none; font-weight: 600; }
.pest-card-inner a:hover { color: #0D47A1; }

/* ── PREVENTION LIST ── */
.prevention-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.prevention-list li {
  padding: 10px 16px;
  margin-bottom: 8px;
  background: #f0f9ff;
  border-left: 3px solid #42A5F5;
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  color: #1A1A1A;
}
.prevention-list li::before { content: "✓ "; color: #1565C0; font-weight: 700; }

/* ── FAQ ── */
.faq-list { margin: 16px 0; }
.faq-item {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: #0A1223;
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  line-height: 1.4;
  background: #F8F8F8;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #1565C0;
  font-weight: 300;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  padding: 0 20px 16px;
  max-height: 300px;
}
.faq-a p { font-size: 14px; color: #3A3A3A; line-height: 1.65; margin: 0; }

/* ── SERVICE LIST INNER ── */
.service-list-inner {
  list-style: none;
  padding: 0;
  columns: 2;
  gap: 12px;
  margin: 16px 0 28px;
}
.service-list-inner li { margin-bottom: 10px; break-inside: avoid; }
.service-list-inner a { color: #1565C0; text-decoration: none; font-size: 14px; font-weight: 500; }
.service-list-inner a:hover { color: #0D47A1; text-decoration: underline; }
.service-list-inner a::before { content: "→ "; font-size: 11px; }

/* ── RICH CONTENT ── */
.rich-content { margin: 16px 0 28px; }
.rich-content p { font-size: 15px; line-height: 1.75; color: #3A3A3A; margin-bottom: 16px; }
.rich-content strong { color: #0A1223; }

/* ── SIDEBAR ── */
.content-sidebar { position: sticky; top: 110px; }
.sidebar-cta-card {
  background: linear-gradient(135deg, #0A1223, #1565C0);
  color: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
}
.sidebar-cta-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.sidebar-cta-card p { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.sidebar-phone {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #42A5F5;
  text-decoration: none;
  margin-bottom: 12px;
}
.sidebar-phone:hover { color: white; }
.sidebar-btn {
  display: block;
  background: #42A5F5;
  color: #0A1223;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.sidebar-btn:hover { background: #90CAF9; }

.sidebar-card {
  background: #F8F8F8;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 18px;
}
.sidebar-card h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #0A1223; margin-bottom: 14px; }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li { margin-bottom: 8px; }
.sidebar-card ul li a { color: #1565C0; text-decoration: none; font-size: 13px; font-weight: 500; }
.sidebar-card ul li a:hover { color: #0D47A1; }

.sidebar-trust {
  background: #0A1223;
  border-radius: 10px;
  padding: 18px;
}
.trust-item-small {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-item-small:last-child { border-bottom: none; }

/* ── WHY SECTION (inner page version) ── */
.why-ecofusion-section {
  background: #F0F4F8;
  padding: 72px 40px;
}
.why-ecofusion-section .container { max-width: 1200px; margin: 0 auto; }
.why-grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border-top: 3px solid #1565C0;
}
.why-card-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: #0A1223; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #3A3A3A; line-height: 1.65; margin: 0; }

/* ── CONTACT SECTION ── */
.contact-section { padding: 72px 40px; background: white; }
.contact-section .container { max-width: 1200px; margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info p { font-size: 16px; color: #3A3A3A; line-height: 1.7; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item > span { font-size: 22px; line-height: 1; }
.contact-item strong { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #6B6B6B; margin-bottom: 3px; }
.contact-item a, .contact-item span { font-size: 15px; color: #1A1A1A; text-decoration: none; }
.contact-item a:hover { color: #1565C0; }

/* ── INNER FORM ── */
.inner-form {
  background: #F0F4F8;
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.inner-form h3 { font-size: 20px; font-weight: 700; color: #0A1223; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #3A3A3A; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E5E5E5;
  border-radius: 7px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #1565C0; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit-btn {
  width: 100%;
  background: #1565C0;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-family: 'Inter', sans-serif;
  margin-top: 4px;
}
.form-submit-btn:hover { background: #0D47A1; transform: translateY(-1px); }
.form-submit-btn:disabled { background: #6B6B6B; cursor: not-allowed; transform: none; }

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #6B6B6B;
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 28px 0;
}
.form-success .success-icon {
  font-size: 48px;
  color: #2e7d32;
  margin-bottom: 12px;
}
.form-success h4 { font-size: 22px; color: #0A1223; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: #3A3A3A; }

/* ── LOCATIONS SECTION ── */
.locations-section { padding: 60px 40px; background: #F0F4F8; }
.locations-section .container { max-width: 1200px; margin: 0 auto; }
.locations-section p { font-size: 16px; color: #3A3A3A; margin-bottom: 24px; }
.location-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.location-tag {
  background: white;
  border: 1px solid #E5E5E5;
  color: #1565C0;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.location-tag:hover { background: #1565C0; color: white; border-color: #1565C0; }

/* ── FOOTER LOGO FIX ── */
.footer-logo {
  display: block;
  margin-bottom: 14px;
}
.footer-logo img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  /* Remove the brightness invert — show the actual logo */
  filter: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pests-grid-inner { grid-template-columns: 1fr; }
  .service-list-inner { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .inner-hero { padding: 40px 20px; }
  .inner-content { padding: 40px 20px; }
  .why-ecofusion-section { padding: 48px 20px; }
  .contact-section { padding: 48px 20px; }
  .locations-section { padding: 40px 20px; }
}
@media (max-width: 600px) {
  .why-grid-4 { grid-template-columns: 1fr; }
  .inner-hero h1 { font-size: 26px; }
  .inner-form { padding: 24px 18px; }
}

/* ── PAGE HERO IMAGE ── */
.inner-hero-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  max-height: 380px;
  margin-top: 32px;
}
.inner-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ── BLOG PAGE RESPONSIVE FIX ── */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #3A3A3A;
}
.blog-post-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(20px,2.5vw,28px); color: #0A1223; margin: 36px 0 14px; }
.blog-post-content h3 { font-size: clamp(17px,2vw,22px); color: #0A1223; margin: 28px 0 12px; }
.blog-post-content p { margin-bottom: 18px; }
.blog-post-content ul, .blog-post-content ol { margin: 16px 0 20px 24px; }
.blog-post-content li { margin-bottom: 8px; }
.blog-post-content img { width: 100%; border-radius: 10px; margin: 24px 0; }
.blog-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.blog-card { background: #F0F4F8; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.blog-card-img { height: 200px; overflow: hidden; background: #BBDEFB; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #1565C0; }
.blog-card-title { font-size: 18px; font-weight: 700; color: #0A1223; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: #6B6B6B; line-height: 1.6; flex: 1; }
.blog-card-meta { font-size: 12px; color: #6B6B6B; margin-top: auto; }

@media (max-width: 900px) {
  .blog-index-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-hero-image img { height: 260px; }
}
@media (max-width: 600px) {
  .blog-index-grid { grid-template-columns: 1fr; }
  .blog-post-content { padding: 0 4px; }
  .inner-hero-image img { height: 200px; }
  .inner-hero-image { margin-top: 20px; }
}
