 /* Site Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            transition: background 0.3s ease;
			border-bottom: 0.01rem dotted #a9d;
        }

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

        .site-logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .site-logo img {
            width: 200px;
        }

        .site-logo .site-name {
            font-size: 20px;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.02em;
        }

        .site-logo .site-name span {
            color: var(--orange-cta);
        }

        /* Primary Navigation */
        .primary-nav {
            display: flex;
            align-items: center;
        }

        .primary-nav ul {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .primary-nav ul li a {
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .primary-nav ul li a:hover,
        .primary-nav ul li.current-menu-item a {
            color: var(--white);
            background: rgba(255, 255, 255, 0.1);
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--orange-cta), var(--orange-cta-hover));
            color: var(--white) !important;
            font-size: 14px;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(242, 101, 18, 0.35);
            transition: all 0.2s ease;
        }

        .header-cta:hover {
            background: linear-gradient(135deg, var(--orange-cta-hover), var(--orange-cta));
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(242, 101, 18, 0.45);
        }

        .header-cta svg {
            width: 16px;
            height: 16px;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 8px;
            cursor: pointer;
            color: var(--white);
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-toggle svg {
            width: 22px;
            height: 22px;
        }

        /* Skip Link */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: var(--orange-cta);
            color: var(--white);
            padding: 12px 24px;
            z-index: 10000;
            font-weight: 700;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Header Spacer */
        .header-spacer {
            height: 38px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .header-inner { height: 64px; }
            .header-spacer { height: 16px; }

            .primary-nav ul { gap: 4px; }
            .primary-nav ul li a { padding: 8px 12px; font-size: 13px; }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle { display: flex; }

            .primary-nav {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: var(--primary-navy-dark);
                padding: 16px 24px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            }

            .primary-nav.active {
                display: block;
            }

            .primary-nav ul {
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
            }

            .primary-nav ul li a {
                display: block;
                padding: 12px 16px;
                border-radius: 8px;
                font-size: 15px;
            }

            .header-cta {
                display: block;
                text-align: center;
                margin-top: 12px;
                padding: 14px 24px;
            }
        }
		/* ===== MENU BASE ===== */
		.primary-nav ul {
			list-style: none;
			margin: 0;
			padding: 0;
		}

		.primary-nav ul li {
			position: relative;
		}

		/* ===== DROPDOWN ===== */
		.primary-nav ul li ul {
			position: absolute;
			top: 100%;
			left: 0;
			background: #0b1c2c;
			min-width: 220px;
			display: none;
			border-radius: 10px;
			padding: 10px 0;
			z-index: 999;
		}

		/* Show dropdown */
		.primary-nav ul li:hover > ul {
			display: block;
		}

		/* Dropdown links */
		.primary-nav ul li ul li a {
			display: block;
			padding: 10px 16px;
			color: #fff;
			font-size: 14px;
			white-space: nowrap;
		}

		.primary-nav ul li ul li a:hover {
			background: rgba(255,255,255,0.1);
		}

		/* ===== MEGA MENU ===== */
		.primary-nav ul li.mega-menu {
			position: static;
		}

		.primary-nav ul li.mega-menu > ul {
			width: 100%;
			left: 0;
			right: 0;
			background: #0b1c2c;
			padding: 30px;
			border-radius: 0 0 12px 12px;

			display: none;
			grid-template-columns: repeat(3, 1fr);
			gap: 20px;
		}

		/* Show mega */
		.primary-nav ul li.mega-menu:hover > ul {
			display: grid;
		}

		/* Mega items */
		.primary-nav ul li.mega-menu ul li a {
			padding: 12px;
			background: rgba(255,255,255,0.03);
			border-radius: 8px;
			transition: 0.3s;
		}

		.primary-nav ul li.mega-menu ul li a:hover {
			background: rgba(255,255,255,0.1);
		}

		/* ===== MOBILE FIX ===== */
		@media (max-width: 768px) {
			.primary-nav ul li ul,
			.primary-nav ul li.mega-menu > ul {
				position: static;
				display: none;
				grid-template-columns: 1fr;
				padding: 10px;
			}

			.primary-nav ul li.active > ul {
				display: block;
			}
		}

/* ============================================
   WICHITA PLUMBING LANDING PAGE
   Pure HTML + CSS — Zero dependencies
   ============================================ */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange-cta), var(--orange-cta-hover));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(242, 101, 18, 0.35);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(242, 101, 18, 0.45);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue-cta), var(--blue-cta-hover));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* --- Section Header (shared) --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-cta);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   1. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  padding: 60px 0 140px;
  overflow: hidden;
  color: var(--white);
  clip-path: ellipse(130% 100% at 50% 0%);
}

/* Decorative glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow--orange {
  top: -80px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 101, 18, 0.12) 0%, transparent 70%);
}
.hero-glow--blue {
  bottom: 60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-pill {
  display: inline-block;
  background: rgba(242, 101, 18, 0.15);
  color: var(--orange-cta);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(242, 101, 18, 0.25);
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust indicators */
.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange-cta);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

/* Hero Image Side */
.hero-image-side {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Floating checklist card */
.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--card-shadow-lg);
  z-index: 3;
  min-width: 190px;
}
.hero-floating-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.hero-floating-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 8px;
}
.hero-floating-card ul li:last-child {
  margin-bottom: 0;
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--green-check);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   2. SERVICES GRID SECTION
   ============================================ */
.services-grid-section {
  position: relative;
  background: var(--white);
  padding: 90px 0 110px;
  /* no clip-path — white bg, no curve needed */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-lg);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.service-card-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.service-card-icon.icon-orange { background: rgba(242, 101, 18, 0.1); }
.service-card-icon.icon-orange svg { stroke: var(--orange-cta); }
.service-card-icon.icon-blue { background: rgba(37, 99, 235, 0.1); }
.service-card-icon.icon-blue svg { stroke: var(--blue-cta); }
.service-card-icon.icon-green { background: rgba(22, 163, 74, 0.1); }
.service-card-icon.icon-green svg { stroke: var(--green-check); }
.service-card-icon.icon-navy { background: rgba(10, 37, 86, 0.08); }
.service-card-icon.icon-navy svg { stroke: var(--primary-navy); }
.service-card-icon.icon-red { background: rgba(220, 38, 38, 0.08); }
.service-card-icon.icon-red svg { stroke: #dc2626; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.65;
}

/* ============================================
   3. ABOUT / CTA SECTION
   ============================================ */
.about-section {
  position: relative;
  background: var(--light-section-bg);
  padding: var(--section-padding);
  clip-path: polygon(
    0% 40px,
    15% 0%,
    85% 0%,
    100% 40px,
    100% calc(100% - 40px),
    85% 100%,
    15% 100%,
    0% calc(100% - 40px)
  );
}

.about-section .container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.about-content {
  flex: 1;
}
.section-tag-inline {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-cta);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-content > p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 36px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.about-feature-text p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
  margin-bottom: 0;
}

/* About visual — image + form side by side */
.about-visual {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.about-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow-lg);
  flex: 1;
  min-width: 0;
}
.about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* Request form — small card beside image */
.request-form-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--card-shadow-lg);
  align-self: center;
}
.request-form-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.form-group {
  margin-bottom: 12px;
  flex: 1;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-cta);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.request-form-card .btn-orange {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  margin-top: 4px;
}

/* ============================================
   4. HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
  position: relative;
  background: var(--white);
  padding: var(--section-padding);
  /* no clip-path */
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Dashed connector line */
.steps-container::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary-navy) 0,
    var(--primary-navy) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.15;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-cta), var(--orange-cta-hover));
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(242, 101, 18, 0.3);
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================
   5. REVIEWS SECTION
   ============================================ */
.reviews-section {
  background: var(--light-section-bg);
  padding: var(--section-padding);
  position: relative;
  clip-path: polygon(
    0% 40px,
    50% 0%,
    100% 40px,
    100% calc(100% - 40px),
    50% 100%,
    0% calc(100% - 40px)
  );
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid #f1f5f9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-avatar.avatar-1 { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.review-avatar.avatar-2 { background: linear-gradient(135deg, var(--orange-cta), #fb923c); }
.review-avatar.avatar-3 { background: linear-gradient(135deg, #059669, #34d399); }

.review-meta h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}
.review-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--star-yellow);
}
.review-source {
  font-size: 12px;
  color: var(--text-light);
}
.review-text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   6. SERVICE AREAS SECTION
   ============================================ */
.service-areas-section {
  position: relative;
  background: var(--white);
  padding: var(--section-padding);
  /* no clip-path */
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--light-section-bg);
  border-radius: 12px;
  transition: transform 0.2s ease;
}
.area-item:hover {
  transform: translateY(-2px);
}
.area-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange-cta);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.area-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================
   MOBILE TRUST BAR (hidden on desktop)
   ============================================ */
.mobile-trust-bar {
  display: none;
}

.mobile-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  top: -20px;
  max-width: 340px;
  margin: 0 auto;
}
.mobile-trust-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-check);
  fill: var(--green-bg);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.mobile-trust-badge span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

/* ============================================
   7. EMERGENCY CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  padding: 64px 0;
  clip-path: polygon(
    0% 40px,
    50% 0%,
    100% 40px,
    100% 100%,
    0% 100%
  );
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}
.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   8. FOOTER
   ============================================ */
.footer-section {
  position: relative;
  background: var(--footer-bg);
  color: var(--white);
}

.footer-main {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0 48px;
}

/* .footer-main .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
 */
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  display: block;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-col ul li {
  margin-bottom: 8px;
}

.footer-logo img {
  width: 250px;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-phone {
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   RESPONSIVE — Tablet: 992px
   ============================================ */
@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero {
    padding: 50px 0 120px;
    clip-path: ellipse(130% 100% at 50% 0%);
  }
  .hero h1 { font-size: 40px; }
  .hero .container { gap: 40px; }
  .hero-content { max-width: 480px; }
  .hero-image-wrapper { max-width: 400px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .about-content h2 { font-size: 32px; }
  .about-section .container { gap: 40px; }
  .about-image-card img { height: 400px; }

  .steps-container { gap: 20px; }
  .steps-container::before { top: 38px; }
  .step-number { width: 48px; height: 48px; font-size: 20px; }

  .reviews-grid { gap: 20px; }
  .review-card { padding: 24px; }

/*   .footer-main .container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  } */
}

/* ============================================
   RESPONSIVE — Mobile Large: 768px
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  /* --- Hero mobile --- */
  .hero {
    padding: 40px 0 80px;
    clip-path: ellipse(140% 100% at 50% 0%);
  }
  .hero .container {
    flex-direction: column;
    text-align: center;
    padding-bottom: 0;
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 32px; }
  .hero-text { font-size: 15px; margin-bottom: 28px; }
  .hero-buttons { justify-content: center; margin-bottom: 0; }

  /* Hide desktop trust indicators, show mobile trust bar */
  .trust-indicators { display: none; }
  .mobile-trust-bar { display: block; }

  .hero-image-side {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-image-wrapper { max-width: 100%; }
  .hero-floating-card {
    left: 10px;
    bottom: -15px;
    padding: 14px 18px;
  }

  /* --- Services mobile --- */
  .services-grid-section { padding: 70px 0 80px; }
  .section-header { margin-bottom: 40px; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .service-card { padding: 22px 18px; }
  .service-card-icon { width: 52px; height: 52px; border-radius: 14px; }
  .service-card-icon svg { width: 26px; height: 26px; }
  .service-card h3 { font-size: 16px; }
  .service-card p { font-size: 13px; }

  /* --- About mobile --- */
  .about-section {
    clip-path: polygon(
      0% 20px, 10% 0%, 90% 0%, 100% 20px,
      100% calc(100% - 20px), 90% 100%, 10% 100%, 0% calc(100% - 20px)
    );
  }
  .about-section .container { flex-direction: column; }
  .about-content h2 { font-size: 26px; }
  .about-content > p { margin-bottom: 28px; }
  .about-features { grid-template-columns: 1fr; gap: 14px; }
  .about-feature-icon { width: 42px; height: 42px; }
  .about-feature-icon svg { width: 20px; height: 20px; }
  .about-visual {
    flex-direction: column;
    width: 100%;
  }
  .about-image-card img { min-height: 260px; height: 260px; }
  .request-form-card {
    width: 100%;
    align-self: stretch;
    padding: 20px;
  }
  .request-form-card h3 { font-size: 17px; margin-bottom: 14px; }

  /* --- How It Works mobile --- */
  .how-it-works-section { padding: 64px 0; }
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .steps-container::before { display: none; }
  .step-number { width: 48px; height: 48px; font-size: 20px; }
  .step-card h3 { font-size: 15px; }
  .step-card p { font-size: 13px; }

  /* --- Reviews mobile --- */
  .reviews-section {
    clip-path: polygon(
      0% 20px, 50% 0%, 100% 20px,
      100% calc(100% - 20px), 50% 100%, 0% calc(100% - 20px)
    );
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 16px;
  }

  /* --- Service Areas mobile --- */
  .service-areas-section { padding: 64px 0; }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .area-item { padding: 14px 16px; }
  .area-item span { font-size: 14px; }

  /* --- CTA Banner mobile --- */
  .cta-banner {
    clip-path: none;
    padding: 44px 0;
  }
  .cta-banner h2 { font-size: 26px; }
  .cta-banner p { font-size: 15px; margin-bottom: 24px; }

  /* --- Footer mobile --- */
/*   .footer-main .container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  } */
}

/* ============================================
   RESPONSIVE — Mobile Small: 576px
   ============================================ */
@media (max-width: 576px) {
  .container { padding: 0 16px; }

  /* --- Hero small mobile --- */
  .hero {
    padding: 32px 0 70px;
    clip-path: ellipse(150% 100% at 50% 0%);
  }
  .hero h1 { font-size: 26px; }
  .hero-pill { font-size: 12px; padding: 6px 14px; margin-bottom: 18px; }
  .hero-text { font-size: 14px; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; padding: 13px 24px; font-size: 14px; }
  .hero-image-side { max-width: 100%; }
  .hero-image-wrapper { max-width: 100%; }
  .hero-floating-card {
    position: relative;
    bottom: auto; left: auto; right: auto;
    margin-top: 16px;
    width: 100%;
    padding: 14px 16px;
  }
  .hero-floating-card h4 { font-size: 14px; margin-bottom: 10px; }
  .hero-floating-card ul li { font-size: 12px; }

  /* --- Mobile trust bar small --- */
  .mobile-trust-badge {
    padding: 10px 16px;
    top: -16px;
    max-width: 300px;
    border-radius: 0 0 12px 12px;
  }
  .mobile-trust-badge svg { width: 20px; height: 20px; }
  .mobile-trust-badge span { font-size: 11px; }

  /* --- Services small mobile --- */
  .services-grid-section { padding: 54px 0 64px; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 24px; }
  .section-header p { font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 20px 18px; }

  /* --- About small mobile --- */
  .about-section { clip-path: none; padding: 56px 0; }
  .about-content h2 { font-size: 22px; }
  .about-content > p { font-size: 14px; margin-bottom: 24px; }
  .about-feature-text h4 { font-size: 14px; }
  .about-feature-text p { font-size: 13px; }
  .about-image-card img { min-height: 200px; height: 200px; }
  .request-form-card { padding: 18px; }
  .request-form-card h3 { font-size: 16px; margin-bottom: 12px; }
  .form-group { margin-bottom: 10px; }
  .form-group input,
  .form-group select {
    padding: 10px 12px;
    font-size: 13px;
  }
  .request-form-card .btn-orange { padding: 11px; font-size: 14px; }

  /* --- How It Works small mobile --- */
  .how-it-works-section { padding: 56px 0; }
  .steps-container { grid-template-columns: 1fr; gap: 20px; }
  .step-card p { max-width: 260px; }

  /* --- Reviews small mobile --- */
  .reviews-section { clip-path: none; padding: 56px 0; }
  .reviews-section .section-header h2 { font-size: 22px; }
  .review-card { padding: 20px; }

  /* --- Service Areas small mobile --- */
  .service-areas-section { padding: 56px 0; }
  .areas-grid { grid-template-columns: 1fr; gap: 10px; }
  .area-item { padding: 12px 14px; gap: 10px; }
  .area-item svg { width: 18px; height: 18px; }
  .area-item span { font-size: 13px; }

  /* --- CTA Banner small mobile --- */
  .cta-banner { padding: 36px 0; }
  .cta-banner h2 { font-size: 21px; }
  .cta-banner p { font-size: 14px; margin-bottom: 20px; }
  .cta-banner-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cta-banner-buttons .btn { width: 100%; padding: 13px 24px; font-size: 14px; }

  /* --- Footer small mobile --- */
  .footer-main .container { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { padding: 36px 0 28px; }
  .footer-bottom p { font-size: 12px; }
}

/* contact form */

.contact-page {
    padding: 80px 0;
    background: #f4f7fb;
}

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

.contact-header h1 {
    font-size: 42px;
    color: #0a2556;
}

.contact-header p {
    color: #555;
    margin-top: 10px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    background: #0a2556;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
}

.contact-info h3 {
    margin-bottom: 15px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
}

.contact-hours {
    margin-top: 25px;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* CF7 Styling */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0a2556;
    outline: none;
}

.contact-form input[type="submit"] {
    background: #0a2556;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form input[type="submit"]:hover {
    background: #123a8f;
}

/* Responsive */
@media(max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}
