/*
Theme Name: Mr Sprinkler Repair
Theme URI: https://mrsprinklerrepairhouston.com
Author: Mr Sprinkler Repair
Author URI: https://mrsprinklerrepairhouston.com
Description: Professional WordPress theme for Mr Sprinkler Repair Houston - featuring sprinkler repair, drainage, and landscape lighting services. Includes SEO optimization, customizable business info, responsive design with slide-out menu, and mobile click-to-call functionality.
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mr-sprinkler
Tags: custom-logo, custom-menu, featured-images, theme-options, responsive-layout, one-column, two-columns

Mr Sprinkler Repair Theme - Houston's Trusted Sprinkler Repair Company
*/

/* ============================================
   CSS Variables (Design Tokens)
   ============================================ */
:root {
    /* Colors */
    --color-background: #ffffff;
    --color-foreground: #0f172a;
    --color-primary: #f97316;
    --color-primary-hover: #ea580c;
    --color-primary-foreground: #ffffff;
    --color-secondary: #1e3a5f;
    --color-muted: #f1f5f9;
    --color-muted-foreground: #64748b;
    --color-navy: #0a1e5e;
    --color-navy-light: #1e3a5f;
    --color-light-blue: #f0f6ff;
    --color-gold-star: #fbbf24;
    --color-cream: #FFF8F0;
    --color-border: #e2e8f0;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-script: 'Dancing Script', cursive;
    
    /* Spacing */
    --container-max-width: 1400px;
    --container-padding: 1.5rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-foreground);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.font-heading {
    font-family: var(--font-heading);
}

.font-body {
    font-family: var(--font-body);
}

.font-script {
    font-family: var(--font-script);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-navy { color: var(--color-navy); }
.text-muted { color: var(--color-muted-foreground); }
.text-white { color: #ffffff; }

.bg-primary { background-color: var(--color-primary); }
.bg-navy { background-color: var(--color-navy); }
.bg-light-blue { background-color: var(--color-light-blue); }
.bg-cream { background-color: var(--color-cream); }
.bg-white { background-color: #ffffff; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 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;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-primary-foreground);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-border);
}

.btn-outline:hover {
    background-color: var(--color-navy);
    color: #ffffff;
    border-color: var(--color-navy);
}

.btn-outline-light {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--color-navy);
    border-color: #ffffff;
}

.btn-white {
    background-color: #ffffff;
    color: var(--color-navy);
}

.btn-white:hover {
    background-color: #f8fafc;
}

.btn-navy {
    background-color: var(--color-navy);
    color: #ffffff;
}

.btn-navy:hover {
    background-color: var(--color-navy-light);
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-cream);
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
}

.site-logo img {
    height: 96px;
    width: auto;
}

.main-nav {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-navy);
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 0.5rem;
    display: none;
    z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-content {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    padding: 0.5rem 0;
    min-width: 200px;
}

.nav-dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.nav-dropdown-content a:hover {
    background-color: var(--color-muted);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-navy);
}

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

.header-cta {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-navy);
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 200;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-navy);
}

.mobile-nav {
    padding: 1rem 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-navy);
}

.mobile-nav-menu a:hover {
    color: var(--color-primary);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0.5rem 0;
}

.mobile-nav-label {
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted-foreground);
}

/* Responsive Navigation */
@media (min-width: 768px) {
    .main-nav {
        display: block;
    }
    
    .header-phone {
        display: flex;
    }
    
    .header-cta {
        display: inline-flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    background-color: var(--color-navy);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-size: 600px;
    background-repeat: repeat;
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 3rem 1.5rem;
}

.hero-grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    color: #ffffff;
}

.hero-tagline {
    font-family: var(--font-script);
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--color-primary);
}

.hero-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-rating-icon {
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stars {
    display: flex;
    gap: 2px;
}

.hero-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--color-gold-star);
    color: var(--color-gold-star);
}

.hero-rating-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: 256px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transform: rotate(12deg);
    z-index: 20;
}

.hero-badge-small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge-large {
    font-size: 1rem;
    line-height: 1;
}

/* Hero Easy Section */
.hero-easy {
    position: relative;
    z-index: 10;
    padding-bottom: 2.5rem;
}

.hero-easy-title {
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero-easy-title span {
    font-family: var(--font-script);
    font-size: 1.875rem;
}

.hero-easy-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-easy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.hero-easy-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.hero-easy-icon svg {
    width: 24px;
    height: 24px;
}

.hero-easy-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.hero-easy-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 300px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 4rem 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        margin: 0 0 1.5rem;
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
    
    .hero-image img {
        height: 320px;
    }
    
    .hero-easy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
    background-color: var(--color-navy);
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-breadcrumb {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-breadcrumb a:hover {
    color: #ffffff;
}

.page-hero-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.page-hero-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 1.5rem;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid-section {
    padding: 4rem 1.5rem;
    background-color: var(--color-light-blue);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card-description {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 4rem 1.5rem;
    background-color: var(--color-light-blue);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-images {
    position: relative;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.about-images-grid img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #0284c7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    border: 4px solid #ffffff;
    z-index: 10;
}

.about-badge-number {
    font-size: 1.5rem;
    line-height: 1;
}

.about-badge-text {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content {
    
}

.about-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-text strong {
    color: var(--color-foreground);
}

.about-text a {
    color: var(--color-primary);
    font-weight: 600;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
    margin: 1.5rem 0;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-highlight svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-highlight span {
    font-size: 0.75rem;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.about-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-navy);
}

.about-phone svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-light-blue);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.testimonial-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--color-gold-star);
    color: var(--color-gold-star);
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
}

.testimonial-location {
    font-weight: 400;
    color: var(--color-muted-foreground);
}

.testimonial-service {
    font-size: 10px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-primary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 4rem 1.5rem;
    background-color: var(--color-cream);
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-xl);
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-foreground);
    padding-right: 1rem;
}

.faq-question-icon {
    width: 20px;
    height: 20px;
    color: var(--color-muted-foreground);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
}

/* ============================================
   Licensed Section
   ============================================ */
.licensed-section {
    padding: 4rem 1.5rem;
    background-color: var(--color-light-blue);
}

.licensed-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.licensed-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.licensed-text {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.7;
}

.licensed-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.licensed-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.licensed-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.licensed-feature span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .licensed-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .licensed-title {
        font-size: 2rem;
    }
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    padding: 3rem 1.5rem;
    background-color: var(--color-primary);
    text-align: center;
}

.cta-banner-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.cta-banner-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cta-banner-title {
        font-size: 2rem;
    }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background-color: var(--color-navy);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-bottom: 4rem;
}

.footer-content {
    padding: 3.5rem 1.5rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-primary);
    display: block;
    margin-bottom: 1rem;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-phone:hover {
    color: var(--color-primary);
}

.footer-phone svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-email:hover {
    color: var(--color-primary);
}

.footer-email svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-license {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.75rem;
}

.footer-column {
    
}

.footer-column-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-hours {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-hours p {
    margin-bottom: 0.25rem;
}

.footer-hours svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-location {
    margin-top: 1.5rem;
}

.footer-location-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-location-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-links svg {
    width: 12px;
    height: 12px;
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .site-footer {
        padding-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   Mobile Click-to-Call Bar
   ============================================ */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.mobile-call-bar svg {
    width: 20px;
    height: 20px;
}

.mobile-call-bar:hover {
    background-color: var(--color-primary-hover);
    color: #ffffff;
}

@media (min-width: 768px) {
    .mobile-call-bar {
        display: none;
    }
}

/* ============================================
   Content Sections
   ============================================ */
.content-section {
    padding: 4rem 1.5rem;
}

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

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

.content-section.bg-navy {
    background-color: var(--color-navy);
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.bg-navy .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   Cards & Features
   ============================================ */
.feature-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.feature-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.feature-card-title {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-card-text {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Check List
   ============================================ */
.check-list {
    display: grid;
    gap: 0.75rem;
}

.check-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-list-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.check-list-item span {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .check-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .check-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Service Areas
   ============================================ */
.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-area-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #ffffff;
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--color-foreground);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.service-area-link:hover {
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
}

.service-area-link svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

/* ============================================
   Process Steps
   ============================================ */
.process-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.process-step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
}

.process-step-title {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.process-step-text {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   Contact Info
   ============================================ */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.contact-info-content {
    
}

.contact-info-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-info-text {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin: 0;
}

/* ============================================
   WordPress Specific
   ============================================ */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    text-align: center;
    margin-top: 0.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ============================================
   Page Templates
   ============================================ */
.page-content {
    padding: 4rem 1.5rem;
}

.page-content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* ============================================
   Service Page Intro Grid Responsive
   ============================================ */
@media (max-width: 767px) {
    .content-section .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .content-section .container > div[style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .content-section .container > div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    .content-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .site-header,
    .mobile-call-bar,
    .mobile-menu {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}
