/* ==========================================================================
   DRAIN CLEANING HOUSTON - CSS DESIGN SYSTEM
   Copying the exact UI/UX of plumbingflorida.us (Hello Elementor template style)
   ========================================================================== */

/* --- Core variables --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Color Palette matching the plumbingflorida.us branding */
  --primary-navy: #0c2340;       /* Dark navy representing Hello Elementor headers */
  --primary-dark: #071424;       /* Extra dark navy */
  --accent-blue: #2B98E6;       /* Hello Elementor primary sky blue button */
  --accent-blue-hover: #167fc7;  /* Darker blue hover */
  --accent-red: #E8352B;        /* Highlight red */
  
  --text-dark: #000000;
  --text-muted: #000000;
  --bg-light: #F4F7FA;
  --bg-white: #ffffff;
  
  --border-light: #eaeaea;
  --success-green: #1C8A4B;
  --success-bg: #e9f7ef;

  /* Layout tokens - sharp square corners matching the Elementor setup */
  --container-width: 1200px;
  --border-radius: 0px;          /* Sharp, square corners */
  --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 10px 35px rgba(0, 0, 0, 0.1);
  --transition: all 0.25s ease-in-out;
}

/* --- Global Reset & Basics --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 120px; /* Offset for double-row header */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-navy);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons (Square and styled like Hello Elementor) --- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-blue);
  color: var(--bg-white) !important;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: var(--accent-blue-hover);
  color: var(--bg-white);
}

.cta-button.secondary {
  background-color: var(--primary-navy);
}

.cta-button.secondary:hover {
  background-color: var(--accent-blue);
}

.cta-button.accent {
  background-color: var(--accent-red);
}

.cta-button.accent:hover {
  background-color: #d1271d;
}

/* --- Double-Row Header (To match plumbingflorida.us top helper bar) --- */
.header-top-bar {
  background-color: var(--primary-navy);
  color: #c5d2e0;
  font-size: 0.85rem;
  padding: 10px 0;
  font-family: var(--font-heading);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 1001;
  display: flex;
  align-items: center;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar-left {
  display: flex;
  gap: 25px;
}

.top-bar-item span {
  color: var(--accent-blue);
  margin-right: 5px;
}

.top-bar-right {
  display: flex;
  gap: 15px;
}

.top-bar-right a:hover {
  color: var(--bg-white);
}

/* Main Navigation Header */
.main-header {
  position: fixed;
  top: 40px; /* sit under top bar */
  left: 0;
  right: 0;
  height: 80px;
  background-color: var(--primary-navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.logo-accent {
  color: var(--accent-blue);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  padding: 8px 0;
  text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-family: var(--font-heading);
}

.header-phone .phone-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.header-phone .phone-number {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--bg-white);
  transition: var(--transition);
}

.mobile-only-cta {
  display: none;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.95) 0%, rgba(7, 20, 36, 0.85) 100%), url('/assets/images/hero_plumber.jpg') no-repeat center center / cover;
  padding: 120px 0;
  color: var(--bg-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.6rem;
  color: var(--bg-white);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-checks {
  display: flex;
  gap: 30px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.check-icon {
  color: var(--accent-blue);
  font-size: 1.1rem;
  font-weight: bold;
}

.hero-sidebar {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-card h3 {
  color: var(--bg-white);
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.hero-card-list {
  list-style: none;
  margin-bottom: 30px;
}

.hero-card-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.hero-card-list .check-icon {
  color: var(--accent-blue);
}

/* --- Stats Counter Bar --- */
.stats-section {
  background-color: var(--accent-blue);
  padding: 45px 0;
  color: var(--bg-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h2 {
  font-size: 3.4rem;
  color: var(--bg-white);
  margin-bottom: 2px;
  font-weight: 800;
}

.stat-item p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

/* --- Content Sections General --- */
.section-padding {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

.section-title-wrapper {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--accent-blue);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* --- Two Column Layout --- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.text-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow);
}

/* --- 8 Service Cards Grid (Copying plumbingflorida.us visual style) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--accent-blue);
}

.service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-info {
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}

.service-info h3 {
  font-size: 1.45rem;
  color: var(--primary-navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-info .cta-button {
  padding: 12px 28px;
  font-size: 0.85rem;
  margin-top: auto;
}

/* --- How We Work (Process Section) --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background-color: var(--primary-navy);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.process-card:hover::before {
  background-color: var(--accent-blue);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 20px;
  display: inline-block;
  background-color: var(--bg-light);
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
}

.process-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- Service Areas --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.area-tag {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary-navy);
  transition: var(--transition);
}

.area-tag:hover {
  background-color: var(--accent-blue);
  color: var(--bg-white);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

/* --- Customer Testimonials --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 40px 30px;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

.rating-stars {
  color: #ffb400;
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

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

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  margin-bottom: 12px;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  background-color: #fafbfc;
}

.faq-answer-inner {
  padding: 0 30px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--accent-blue);
  transition: transform 0.25s ease-out;
}

.faq-icon::before {
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 100%;
}

.faq-item.active {
  border-color: var(--accent-blue);
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

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

/* --- Banner CTA Section --- */
.banner-cta {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  color: var(--bg-white);
  text-align: center;
}

.banner-cta-container h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.banner-cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

/* --- COST ESTIMATOR --- */
.estimator-hero {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
  padding: 90px 0;
  color: var(--bg-white);
  text-align: center;
}

.estimator-hero h1 {
  color: var(--bg-white);
  font-size: 3.2rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.estimator-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto;
}

.calculator-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
  max-width: 850px;
  margin: -60px auto 0;
  position: relative;
  z-index: 10;
}

.calc-step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-step-num {
  background-color: var(--accent-blue);
  color: var(--bg-white);
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.calc-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.calc-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--border-light);
  padding: 16px 8px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  height: 100%;
  transition: var(--transition);
}

.calc-option input:checked + label {
  border-color: var(--accent-blue);
  background-color: rgba(43, 152, 230, 0.05);
  color: var(--accent-blue);
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.calc-label {
  display: block;
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 1rem;
  margin-bottom: 15px;
}

.calc-severity-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--border-light);
  padding: 14px 20px;
  cursor: pointer;
  font-size: 0.88rem;
  margin-bottom: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.calc-severity-options label:hover {
  border-color: var(--accent-blue);
}

.calc-severity-options input:checked + span {
  color: var(--accent-blue);
  font-weight: 700;
}

.calc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--border-light);
  padding: 14px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-navy);
  transition: var(--transition);
}

.calc-toggle:hover {
  border-color: var(--accent-blue);
}

.switch-control {
  position: relative;
  width: 44px;
  height: 24px;
}

.switch-control input {
  opacity: 0; width: 0; height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  transition: .3s;
}

.switch-slider::before {
  content: "";
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: .3s;
}

.switch-control input:checked + .switch-slider {
  background-color: var(--accent-blue);
}

.switch-control input:checked + .switch-slider::before {
  transform: translateX(20px);
}

.calc-result-box {
  background-color: var(--success-bg);
  border: 2px solid var(--success-green);
  padding: 35px;
  text-align: center;
}

.calc-result-box .result-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--success-green);
  letter-spacing: 0.05em;
}

.calc-result-box .result-price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 10px 0;
}

.calc-result-box .result-note {
  font-size: 0.95rem;
  color: var(--text-dark);
  max-width: 520px;
  margin: 0 auto 25px;
}

.result-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.result-cta .cta-button {
  padding: 14px 30px;
  font-size: 0.88rem;
}

.calc-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 580px;
  margin: 25px auto 0;
  line-height: 1.45;
}

/* --- Global Footer Section --- */
.site-footer {
  background-color: var(--primary-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 0 30px;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 60px;
  max-width: var(--container-width);
  margin: 0 auto 60px;
  padding: 0 24px;
}

.footer-col h3 {
  color: var(--bg-white);
  font-size: 1.3rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background-color: var(--accent-blue);
}

.brand-info p {
  margin-bottom: 25px;
  line-height: 1.7;
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-details a {
  color: var(--accent-blue);
  font-weight: 700;
}

.contact-details a:hover {
  color: var(--bg-white);
}

.links-col ul {
  list-style: none;
}

.links-col li {
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.footer-bottom-container {
  display: flex;
  justify-content: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  font-size: 0.85rem;
  text-align: center;
}

/* --- Floating Call Bar for Mobile --- */
.floating-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-blue); /* matching plumbingflorida.us blue bar */
  padding: 15px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.floating-call-bar a {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

@media (max-width: 1024px) {
  body {
    padding-top: 110px;
  }

  h1 { font-size: 2.8rem !important; }
  h2 { font-size: 2.1rem !important; }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-checks {
    justify-content: center;
  }
  
  .hero-card {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator-card {
    margin-top: -30px;
    padding: 30px;
  }
  
  .calc-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px; /* Offset for simplified mobile header */
    padding-bottom: 60px; /* Offset for floating call bar */
  }

  .header-top-bar {
    display: none; /* Hide top bar on mobile */
  }

  .main-header {
    top: 0;
    height: 70px;
  }
  
  .header-phone, .header-right .cta-button {
    display: none; /* Hide desktop contact options */
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-link {
    color: var(--primary-navy);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    display: block;
  }
  
  .nav-link:hover, .nav-link.active {
    color: var(--accent-blue);
  }
  
  .mobile-only-cta {
    display: flex;
    border-radius: 0;
    padding: 20px;
    width: 100%;
  }

  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calc-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calc-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .floating-call-bar {
    display: block;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem !important; }
  h2 { font-size: 1.8rem !important; }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .cta-button {
    width: 100%;
  }
  
  .hero-checks {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .calc-service-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Breadcrumbs Style --- */
.breadcrumbs-container {
  background-color: var(--bg-light);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--accent-blue);
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: var(--primary-navy);
}

.breadcrumbs span {
  color: var(--text-dark);
}

/* --- Contact Page Form Styling --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 50px;
}

.contact-info-panel {
  background-color: var(--bg-light);
  padding: 40px;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
}

.contact-info-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.contact-info-list {
  list-style: none;
  margin-bottom: 30px;
}

.contact-info-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1rem;
}

.contact-info-list .icon {
  font-size: 1.25rem;
  color: var(--accent-blue);
  width: 25px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-blue);
}

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

.form-privacy-notice {
  font-size: 0.8rem;
  color: #555555;
  line-height: 1.4;
}

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