/* ============================================
   EVOLUTION PEST CONTROL - STYLES.CSS v2
   Visual Depth Update: Compact inner headers,
   dark mid-sections, card accents, timeline
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2D2D2D;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

.hidden-field {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: #7A8C3C;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #6B7D33;
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1A1A1A;
}

.btn-urgent {
  background-color: #C0392B;
  color: #FFFFFF;
}

.btn-urgent:hover {
  background-color: #A93226;
}

.btn-phone {
  background-color: #7A8C3C;
  color: #FFFFFF;
  font-size: 1.3rem;
  padding: 16px 40px;
  letter-spacing: 1px;
}

.btn-phone:hover {
  background-color: #6B7D33;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #1A1A1A;
  padding: 12px 0;
  transition: transform 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.header-logo img {
  height: 40px;
  width: auto;
}

.header-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7A8C3C;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: #7A8C3C;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFFFFF;
  transition: opacity 0.25s ease;
  letter-spacing: 0.3px;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.nav-menu a.active {
  color: #7A8C3C;
}

/* === MOBILE NAV === */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 8px 0;
  }

  .header-phone-desktop {
    display: none;
  }
}

@media (min-width: 769px) {
  .header-phone-mobile {
    display: none;
  }
}

/* === HOMEPAGE HERO (Full dramatic - only for index.html) === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background-color: #1A1A1A;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.hero .subheadline {
  color: #CCCCCC;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 600px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

/* === COMPACT INNER PAGE HEADER (About, Services, Contact) === */
.page-header-compact {
  background-color: #1A1A1A;
  padding: 120px 20px 50px;
  text-align: center;
  border-bottom: 4px solid #7A8C3C;
}

.page-header-compact h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-header-compact .subheadline {
  color: #AAAAAA;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === MEDIUM HERO (Dedicated service pages) === */
.hero-medium {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2a3a1a 100%);
  overflow: hidden;
}

.hero-medium .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-medium h1 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.hero-medium .subheadline {
  color: #CCCCCC;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* === TRUST BAR === */
.trust-bar {
  background-color: #F5F5F0;
  padding: 30px 20px;
  border-bottom: 3px solid #7A8C3C;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-item strong {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1A1A1A;
}

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

.section-dark {
  background-color: #1A1A1A;
  color: #FFFFFF;
  position: relative;
}

/* Subtle dot pattern overlay on dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(122, 140, 60, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.section-dark h2,
.section-dark h3 {
  color: #FFFFFF;
}

.section-dark p {
  color: #CCCCCC;
}

.section-light {
  background-color: #F5F5F0;
}

.section-white {
  background-color: #FFFFFF;
}

.section-accent {
  background-color: #2a3a1a;
  color: #FFFFFF;
}

.section-accent h2,
.section-accent h3 {
  color: #FFFFFF;
}

.section-accent p {
  color: #CCCCCC;
}

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

.section-header h2 {
  color: #1A1A1A;
}

.section-dark .section-header h2,
.section-accent .section-header h2 {
  color: #FFFFFF;
}

.section-header p {
  max-width: 600px;
  margin: 0.5rem auto 0;
  color: #666;
}

.section-dark .section-header p,
.section-accent .section-header p {
  color: #AAAAAA;
}

/* === SECTION DIVIDER === */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, #7A8C3C, transparent);
  border: none;
  margin: 0;
}

/* === SERVICE CARDS (with accent top border) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-top: 4px solid #7A8C3C;
  border-radius: 0 0 8px 8px;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  color: #1A1A1A;
  margin-bottom: 8px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.service-card a {
  color: #7A8C3C;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.25s ease;
}

.service-card a:hover {
  opacity: 0.7;
}

/* === WHY CHOOSE US (dark background, accent highlights) === */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.reason-card {
  padding: 28px;
  border-left: 4px solid #7A8C3C;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 0 8px 8px 0;
}

.reason-card h3 {
  color: #7A8C3C;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.reason-card p {
  color: #CCCCCC;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === RESULTS / PROOF === */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.results-grid img {
  border-radius: 8px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 2px solid #333;
}

.results-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #AAAAAA;
  font-style: italic;
  margin-top: 12px;
}

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background-color: #FFFFFF;
  border-left: 4px solid #7A8C3C;
  border-radius: 0 8px 8px 0;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.review-card .stars {
  color: #F4A623;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.review-card blockquote {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}

.review-card .reviewer {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 0.9rem;
}

/* === PLACEHOLDER STYLES === */
.placeholder-photo {
  background-color: #2a2a2a;
  border: 2px dashed #555;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  font-style: italic;
  min-height: 250px;
}

.placeholder-review {
  background-color: #F9F9F9;
  border-left: 4px solid #CCCCCC;
  border-radius: 0 8px 8px 0;
  padding: 30px;
  text-align: center;
  color: #888;
  font-style: italic;
}

/* === CTA SECTION === */
.cta-section {
  background-color: #1A1A1A;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(122, 140, 60, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  color: #CCCCCC;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  position: relative;
}

.cta-section .btn {
  position: relative;
}

/* === CONTACT FORM === */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #2D2D2D;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 2px solid #D0D0D0;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #2D2D2D;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7A8C3C;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.form-group .radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
}

.form-group .radio-group input[type="radio"] {
  width: auto;
  padding: 0;
}

/* === PROCESS STEPS (dark background with timeline) === */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

/* Vertical connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background-color: #7A8C3C;
  opacity: 0.4;
}

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step .step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #7A8C3C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #1A1A1A;
}

.process-step .step-content h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.process-step .step-content p {
  color: #BBBBBB;
  font-size: 0.95rem;
}

/* Light background variant for process steps */
.section-light .process-steps::before {
  background-color: #7A8C3C;
  opacity: 0.3;
}

.section-light .process-step .step-number {
  box-shadow: 0 0 0 4px #F5F5F0;
}

.section-light .process-step .step-content h3 {
  color: #1A1A1A;
}

.section-light .process-step .step-content p {
  color: #555;
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #D0D0D0;
  padding: 20px 0;
}

.faq-question {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #7A8C3C;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-top: 12px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === SERVICE AREA (dark background) === */
.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-area-list span {
  background-color: #7A8C3C;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === CONTACT SPLIT LAYOUT (Info + Form side by side) === */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-split-form {
    order: -1;
  }
}

.contact-split-info {
  /* Sticky only on desktop */
}

@media (min-width: 769px) {
  .contact-split-info {
    position: sticky;
    top: 100px;
  }
}

.contact-split-form {
  /* Form column */
}

.contact-split-form .contact-form {
  max-width: 100%;
}

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

/* === CONTACT INFO ITEMS === */
.contact-info-item {
  text-align: center;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(122, 140, 60, 0.3);
}

.contact-info-item h3 {
  color: #7A8C3C;
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-info-item p {
  color: #FFFFFF;
  font-size: 1rem;
}

.contact-info-item a {
  color: #7A8C3C;
  font-weight: 600;
}

/* === FOOTER === */
.site-footer {
  background-color: #111111;
  color: #AAAAAA;
  padding: 50px 20px 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  color: #FFFFFF;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: #AAAAAA;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #7A8C3C;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #777;
}

/* === MOBILE CALL BUTTON === */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #7A8C3C;
  color: #FFFFFF;
  text-align: center;
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: block;
  }

  body {
    padding-bottom: 56px;
  }
}

/* === ABOUT PAGE === */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
  }
}

.about-story-text h3 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.about-story-text p {
  color: #CCCCCC;
  line-height: 1.8;
}

/* === LOCAL BEATS CHAINS (on dark background) === */
.local-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.local-reason {
  padding: 28px;
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 4px solid #7A8C3C;
  border-radius: 0 8px 8px 0;
}

.local-reason h3 {
  color: #7A8C3C;
  margin-bottom: 8px;
  font-size: 1rem;
}

.local-reason p {
  color: #CCCCCC;
  font-size: 0.95rem;
}

/* === FULL SERVICE LIST === */
.service-list-full {
  max-width: 1000px;
  margin: 0 auto;
}

.service-list-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

@media (max-width: 600px) {
  .service-list-item {
    grid-template-columns: 1fr;
  }
}

.service-list-item h3 {
  color: #7A8C3C;
  font-size: 1.1rem;
}

.service-list-item p {
  color: #CCCCCC;
  font-size: 0.95rem;
}

.service-list-item a {
  color: #7A8C3C;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Light variant for service list */
.section-white .service-list-item {
  border-bottom-color: #E0E0E0;
}

.section-white .service-list-item h3 {
  color: #1A1A1A;
}

.section-white .service-list-item p {
  color: #555;
}

/* Service CTA link */
.service-cta {
  display: inline-block;
  margin-top: 8px;
  color: #7A8C3C;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.25s ease;
}

.service-cta:hover {
  opacity: 0.7;
}

/* === SERVICE ROWS (Zigzag full-width layout) === */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-row-dark {
  background-color: #1A1A1A;
}

.service-row-dark .service-row-content h3 {
  color: #FFFFFF;
}

.service-row-dark .service-row-content p {
  color: #CCCCCC;
}

.service-row-featured {
  min-height: 560px;
  background-color: #1A1A1A;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-row-featured .service-row-content h2 {
  color: #FFFFFF;
}

.service-row-featured .service-row-content p {
  color: #CCCCCC;
}

.service-row-reverse {
  direction: rtl;
}

.service-row-reverse > * {
  direction: ltr;
}

.service-row-image {
  overflow: hidden;
}

.service-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-row-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 70px;
}

.service-row-content h2 {
  margin-bottom: 1rem;
}

.service-row-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1A1A1A;
}

.service-row-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-row-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-tag {
  display: inline-block;
  background-color: #7A8C3C;
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 12px;
  width: fit-content;
}

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-row-reverse {
    direction: ltr;
  }

  .service-row-image {
    height: 250px;
  }

  .service-row-content {
    padding: 30px 24px;
  }

  .service-row-featured {
    min-height: auto;
  }
}

/* === SERVICE PHOTO CARD GRID (2-column) === */
.service-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 600px) {
  .service-card-grid {
    grid-template-columns: 1fr;
  }
}

.service-photo-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E0E0E0;
  border-top: 4px solid #7A8C3C;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.service-photo-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-photo-card:hover .service-photo-card-img img {
  transform: scale(1.04);
}

.service-photo-card-body {
  padding: 20px 24px 24px;
}

.service-photo-card-body h3 {
  color: #1A1A1A;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-photo-card-body p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* === REASON CARDS (Why Choose Us) === */
.reason-card {
  border-left: 4px solid #7A8C3C;
  padding-left: 20px;
}

.reason-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(122, 140, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* Form labels on dark background */
.section-dark .form-group label {
  color: #CCCCCC;
}

.section-dark .form-group .radio-group label {
  color: #CCCCCC;
}

/* === 404 & THANK YOU === */
.page-message {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.page-message h1 {
  margin-bottom: 1rem;
}

.page-message p {
  color: #CCCCCC;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
