/*
Theme Name: Mr Sprinkler Repair San Antonio
Theme URI: https://mrsprinklerrepairsanantonio.com
Author: Mr Sprinkler Repair
Author URI: https://mrsprinklerrepairsanantonio.com
Description: Professional WordPress theme for Mr Sprinkler Repair San Antonio - Sprinkler repair, drainage solutions, and landscape lighting services in San Antonio, TX and surrounding areas.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mr-sprinkler-repair-sanantonio
Tags: business, one-column, custom-menu, featured-images, theme-options

Mr Sprinkler Repair San Antonio WordPress Theme
(C) 2024 Mr Sprinkler Repair
*/

/* ===== CSS Variables ===== */
:root {
    --primary: #F97316;
    --primary-hover: #EA580C;
    --navy: #1E3A5F;
    --light-blue: #E8F4FD;
    --gold-star: #FBBF24;
    --foreground: #1a1a1a;
    --muted-foreground: #6b7280;
    --background: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-script: 'Pacifico', cursive;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--foreground);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.font-script {
    font-family: var(--font-script);
}

/* ===== Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy);
    color: #fff;
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--navy);
    color: #fff;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    text-align: center;
}

.top-bar a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.top-bar a:hover {
    color: var(--primary);
}

/* ===== Header / Navbar ===== */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo img {
    height: 48px;
    width: auto;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
}

.site-logo-text span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--navy);
}

.nav-phone svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--navy);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
    background-color: var(--navy);
    color: #fff;
    padding: 3rem 0 0;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('assets/images/wallpaper-blue.jpg');
    background-size: 600px;
    background-repeat: repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
}

.hero-tagline {
    font-family: var(--font-script);
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.hero h1 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero h1 .text-primary {
    color: var(--primary);
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-reviews {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-badge {
    background-color: var(--primary);
    border-radius: 0.25rem;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-badge svg {
    fill: #fff;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    fill: var(--gold-star);
    color: var(--gold-star);
}

.review-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.hero-image-wrapper {
    position: relative;
    max-width: 400px;
    margin-left: auto;
}

.hero-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.same-day-badge {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: rotate(12deg);
    z-index: 20;
}

.badge-small {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-large {
    font-size: 1rem;
    line-height: 1;
}

/* Hero Easy Section */
.hero-easy-section {
    padding: 2.5rem 0;
    position: relative;
    z-index: 10;
}

.easy-title {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.easy-title .font-script {
    font-family: var(--font-script);
    font-size: 1.875rem;
}

.easy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.easy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

.easy-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.easy-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.easy-item h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.easy-item p {
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 280px;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.service-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ===== About Section ===== */
.about-section {
    background-color: var(--light-blue);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ===== Testimonials ===== */
.testimonials {
    background-color: #F0FDF4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.testimonial-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold-star);
    color: var(--gold-star);
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--navy);
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ===== FAQ Section ===== */
.faq-section {
    background-color: #FFF8F0;
}

.faq-item {
    background-color: #fff;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--foreground);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-banner .btn {
    background-color: var(--navy);
    color: #fff;
}

.cta-banner .btn:hover {
    background-color: #152d4a;
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--navy);
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ===== Mobile Call Button ===== */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--primary);
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-call-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* ===== Page Hero ===== */
.page-hero {
    background-color: var(--navy);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* ===== Service Areas Grid ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--light-blue);
    padding: 1rem;
    border-radius: 0.5rem;
    transition: box-shadow 0.3s ease;
}

.area-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.area-card svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.area-card span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--foreground);
}

/* ===== Contact Info ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* ===== Content Grid Layout ===== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.content-main h2 {
    margin-bottom: 1rem;
}

.content-main h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.content-main p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature-item {
    background-color: var(--light-blue);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    margin: 1rem 0;
}

.brand-list li {
    background-color: var(--light-blue);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.services-list {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.service-item {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.service-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.process-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.process-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-cta {
    background-color: var(--navy);
    color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.sidebar-cta h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.sidebar-cta .btn {
    margin-bottom: 0.75rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.sidebar-areas {
    background-color: var(--light-blue);
    padding: 1.5rem;
    border-radius: 1rem;
}

.sidebar-areas h4 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.sidebar-areas ul {
    list-style: none;
}

.sidebar-areas ul li {
    margin-bottom: 0.5rem;
}

.sidebar-areas ul li a {
    font-size: 0.875rem;
    color: var(--foreground);
}

.sidebar-areas ul li a:hover {
    color: var(--primary);
}

/* Service Areas Large Grid */
.areas-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.area-card-large {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.area-card-large:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.area-icon {
    width: 56px;
    height: 56px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.area-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.area-card-large h3 {
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.area-card-large p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.area-link {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

/* About Page */
.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.image-grid img {
    border-radius: 1rem;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.years-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0284c7;
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 4px solid #fff;
    z-index: 10;
}

.years-number {
    font-size: 1.5rem;
    line-height: 1;
}

.years-text {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.875rem;
}

.about-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--navy);
}

.phone-link:hover {
    color: var(--primary);
}

/* Credentials Grid */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.credential-item {
    text-align: center;
    color: #fff;
}

.credential-item svg {
    color: var(--primary);
    margin-bottom: 1rem;
}

.credential-item h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.credential-item p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-blue);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background-color: #dbeafe;
}

.contact-method .contact-icon {
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    color: var(--navy);
    font-family: var(--font-heading);
}

.contact-method span {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.service-areas-list {
    background-color: var(--light-blue);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.service-areas-list h3 {
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.service-areas-list p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Forms */
.contact-form,
.schedule-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Schedule Page */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.schedule-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-info,
.sidebar-guarantee {
    background-color: var(--light-blue);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
}

.sidebar-info h4,
.sidebar-guarantee h4 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.sidebar-info ol {
    padding-left: 1.25rem;
    font-size: 0.875rem;
}

.sidebar-info ol li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.sidebar-guarantee p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--muted-foreground); }
.bg-light-blue { background-color: var(--light-blue); }
.bg-navy { background-color: var(--navy); }
.bg-primary { background-color: var(--primary); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero {
        padding: 2rem 0 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.8125rem;
    }

    .hero-image img {
        height: 220px;
    }

    .same-day-badge {
        width: 4rem;
        height: 4rem;
    }

    .badge-large {
        font-size: 0.875rem;
    }

    .easy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .easy-title {
        font-size: 1.25rem;
    }

    .easy-title .font-script {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    body {
        padding-bottom: 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .areas-grid-large {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-reviews {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
    }

    .areas-grid-large {
        grid-template-columns: 1fr;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-grid img {
        height: 200px;
    }
}

/* ===== Houston-Style Sections ===== */

/* Hero Section - Houston Style */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
    padding: 4rem 0 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-tagline {
    color: var(--primary);
    font-family: var(--font-script);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-rating-icon svg {
    width: 20px;
    height: 20px;
}

.hero-stars {
    display: flex;
    gap: 2px;
}

.hero-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-star, #fbbf24);
    color: var(--gold-star, #fbbf24);
}

.hero-rating-text {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image img {
    border-radius: 1rem;
    max-width: 100%;
    height: auto;
}

.hero-badge {
    position: absolute;
    top: 1rem;
    right: -1rem;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-badge-small {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-badge-large {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
}

/* Hero Easy Section */
.hero-easy {
    background: var(--color-cream, var(--cream, #FFF8F0));
    padding: 3rem 0;
    margin-top: 3rem;
}

.hero-easy-title {
    text-align: center;
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

.hero-easy-title span {
    font-family: var(--font-script);
    color: var(--primary);
}

.hero-easy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hero-easy-item {
    text-align: center;
}

.hero-easy-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.hero-easy-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.hero-easy-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.hero-easy-text {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Services Grid Section */
.services-grid-section {
    padding: 4rem 0;
    background: var(--color-cream, var(--cream, #FFF8F0));
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.service-card-link:hover {
    text-decoration: underline;
}

/* About Section - Houston Style */
.about-section {
    padding: 4rem 0;
    background: var(--light-blue, #f0f6ff);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-images-grid img {
    border-radius: 0.75rem;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--primary);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-badge-number {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
}

.about-title {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.about-text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--navy);
}

.about-highlight svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.about-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.125rem;
}

.about-phone svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--color-cream, var(--cream, #FFF8F0));
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    color: #6b7280;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold-star, #fbbf24);
    color: var(--gold-star, #fbbf24);
}

.testimonial-text {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: #6b7280;
    font-weight: 400;
}

.testimonial-service {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--light-blue, #f0f6ff);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    color: #6b7280;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    text-align: left;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item.is-open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.7;
}

.faq-item.is-open .faq-answer {
    display: block;
}

/* Licensed Section */
.licensed-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
    color: #fff;
}

.licensed-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.licensed-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #fff;
}

.licensed-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.licensed-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.licensed-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.licensed-feature svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Service Areas Grid */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.area-link-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 0.5rem;
    color: var(--navy);
    font-weight: 500;
    transition: all 0.2s;
}

.area-link-item:hover {
    background: var(--primary);
    color: #fff;
}

.area-link-item svg {
    width: 16px;
    height: 16px;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-section.bg-cream {
    background: var(--cream, #FFF8F0);
}

.content-section.bg-white {
    background: var(--color-cream, var(--cream, #FFF8F0));
}

/* Intro Content Section */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-text h2 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.intro-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-features h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-box svg {
    flex-shrink: 0;
    color: var(--primary);
}

.feature-box strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.feature-box p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.problem-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary);
}

.problem-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--navy);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.blog-card-link:hover {
    text-decoration: underline;
}

.blog-placeholder {
    text-align: center;
    padding: 3rem;
    background: var(--light-blue, #f0f6ff);
    border-radius: 1rem;
    color: #666;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
    }
    
    .hero-easy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
}
