/* ===================================
   Wood River Plumbing Pros - Main Stylesheet
   Professional Plumbing Website Design
   =================================== */

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

:root {
    /* Primary Colors - Plumbing Industry */
    --primary-blue: #0A2463;
    --primary-light-blue: #1E3A8A;
    --accent-blue: #2563EB;
    --secondary-orange: #F59E0B;
    --secondary-red: #DC2626;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F3F4F6;
    --gray: #6B7280;
    --dark-gray: #374151;
    --black: #111827;

    /* Success & Info */
    --success-green: #10B981;
    --info-blue: #3B82F6;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 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);
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

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;
    color: var(--dark-gray);
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-light-blue));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-cta {
    background: linear-gradient(135deg, var(--secondary-orange), #EA580C);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    font-size: 1.125rem;
    padding: 16px 32px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #EA580C, #C2410C);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-call {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--secondary-orange));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   HEADER
   =================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    font-size: 2rem;
    color: var(--accent-blue);
}

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

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

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 15px;
    /* Reduced from 30px to prevent wrapping */
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    /* Reverted to dark gray for cleaner look */
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
    /* Prevent text wrapping */
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

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

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.95), rgba(37, 99, 235, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230A2463" width="1200" height="600"/><path fill="%231E3A8A" opacity="0.3" d="M0 300L50 283.3C100 266.7 200 233.3 300 216.7C400 200 500 200 600 216.7C700 233.3 800 266.7 900 283.3C1000 300 1100 300 1150 300L1200 300L1200 601L1150 601C1100 601 1000 601 900 601C800 601 700 601 600 601C500 601 400 601 300 601C200 601 100 601 50 601L0 601Z"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.2), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--secondary-orange);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--secondary-orange);
    text-decoration: underline;
    text-decoration-color: rgba(245, 158, 11, 0.5);
    text-underline-offset: 8px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    color: var(--secondary-orange);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: var(--success-green);
    font-size: 1.5rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 8px;
}

.about-certifications {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-top: 30px;
}

.about-certifications h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.certification-list {
    list-style: none;
}

.certification-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.certification-list li:last-child {
    border-bottom: none;
}

.certification-list i {
    color: var(--success-green);
    font-size: 1.25rem;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 10px;
    padding: 60px 30px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.about-highlights {
    display: grid;
    gap: 20px;
}

.highlight-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.highlight-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.highlight-box i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.highlight-box h4 {
    margin-bottom: 10px;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 35px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--secondary-orange));
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-light-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-description {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray);
}

.service-features i {
    color: var(--success-green);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-weight: 600;
    transition: var(--transition-fast);
}

.service-cta:hover {
    color: var(--primary-blue);
    gap: 12px;
}

.service-cta::after {
    content: '→';
    font-size: 1.25rem;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    color: var(--white);
}

.services-cta h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    text-align: center;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-fast);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.why-card p {
    margin-bottom: 0;
    color: var(--gray);
    line-height: 1.7;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 35px;
    position: relative;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

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

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--secondary-orange);
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.125rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.testimonials-footer {
    margin-top: 50px;
    text-align: center;
}

.review-summary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    padding: 40px;
    border-radius: 12px;
    color: var(--white);
}

.summary-rating {
    margin-bottom: 20px;
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.rating-stars {
    display: inline-flex;
    gap: 5px;
    margin: 10px 0;
}

.rating-stars i {
    color: var(--secondary-orange);
    font-size: 1.5rem;
}

.rating-count {
    display: block;
    font-size: 1.125rem;
    margin-top: 10px;
}

.review-summary p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ===================================
   AREAS WE SERVE SECTION
   =================================== */
.areas {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.areas-text h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.areas-text p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.cities-served {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.cities-served h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.cities-list {
    list-style: none;
}

.cities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.cities-list li:last-child {
    border-bottom: none;
}

.cities-list i {
    color: var(--accent-blue);
    font-size: 1.125rem;
}

.cities-list strong {
    color: var(--primary-blue);
}

.service-area-info {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.service-area-info h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.coverage-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coverage-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.coverage-item i {
    color: var(--success-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.coverage-item h5 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.coverage-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.areas-cta {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-light-blue));
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.areas-cta h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.areas-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.areas-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-info {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.map-info h4 {
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.map-info h4 i {
    color: var(--accent-blue);
}

.map-info p {
    margin-bottom: 10px;
}

.map-info strong {
    color: var(--primary-blue);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-question i {
    color: var(--accent-blue);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 12px;
}

.faq-footer h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.faq-footer p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 25px;
}

.cta-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-features i {
    color: var(--success-green);
    font-size: 1.125rem;
}

.cta-action {
    text-align: center;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    font-size: 0.9rem;
}

.cta-rating {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-rating .stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.cta-rating i {
    color: var(--secondary-orange);
    font-size: 1.25rem;
}

.cta-rating span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--primary-blue);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-logo i {
    color: var(--secondary-orange);
    font-size: 2rem;
}

.footer-description {
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--accent-blue);
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a:hover {
    color: var(--secondary-orange);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-orange);
    padding-left: 5px;
}

.business-hours p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.business-hours strong {
    color: var(--white);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
}

.badge i {
    color: var(--secondary-orange);
    font-size: 1.25rem;
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets and below (max-width: 1024px) */
@media (max-width: 1024px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-list {
        gap: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .areas-content {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-features {
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Header Mobile */
    .header-content {
        padding: 8px 0;
        gap: 10px;
    }

    .logo {
        flex: 1;
        /* Allow logo to take available space but respect others */
        min-width: 0;
        /* Enable flex shrinking */
    }

    .logo a {
        font-size: 1.1rem;
        /* Slightly larger */
        gap: 8px;
    }

    .logo i {
        font-size: 1.5rem;
        /* Slightly larger */
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 0.95rem;
        /* Slightly larger */
        line-height: 1.1;
        display: flex;
        flex-direction: column;
    }

    .logo-text strong {
        display: block;
    }

    /* Compact Call Button for Mobile */
    .header-cta .btn-call {
        padding: 8px 12px;
        /* Slightly larger padding */
        font-size: 1.2rem;
        /* Larger icon */
    }

    .header-cta .btn-call span {
        display: none;
        /* Hide phone number text on mobile to save space */
    }

    .header-cta {
        gap: 10px;
    }

    .mobile-menu-toggle {
        margin-left: 0;
        position: relative;
        z-index: 1001;
        /* Ensure above mobile menu */
    }

    .nav {
        position: fixed;
        top: 0;
        /* Cover full screen including header area */
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px 30px;
        /* Top padding to account for close button/header */
        transition: var(--transition-fast);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        display: flex;
        /* Flex to center content if needed, or just block */
        flex-direction: column;
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--light-gray);
        font-size: 1.2rem;
        /* Larger link text */
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background-color: var(--primary-blue);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: var(--primary-blue);
    }

    /* Hero Mobile */
    .hero {
        padding: 80px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 20px;
    }

    /* About Mobile */
    .about-stats {
        grid-template-columns: 1fr;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Why Choose Mobile */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* CTA Mobile */
    .cta-text h2 {
        font-size: 1.75rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .service-card,
    .why-card,
    .testimonial-card {
        padding: 25px;
    }

    .rating-number {
        font-size: 3rem;
    }
}

/* High resolution (min-width: 1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Print styles */
@media print {

    .header,
    .hero,
    .cta-banner,
    .mobile-menu-toggle,
    .btn {
        display: none;
    }
}