/* Global Styles - Professional Design */
:root {
    --primary-color: #2d3436;
    --secondary-color: #1a1a1a;
    --accent-color: #000000;
    --text-color: #2d3436;
    --text-light: #636e72;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --border-color: #dfe6e9;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    -webkit-overflow-scrolling: touch;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Header Container */
header {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xs) var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    gap: var(--spacing-md);
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 220px;
    height: auto;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo:hover {
    transform: scale(1.03);
}

/* Navigation Styles */
nav {
    padding: 0;
    position: relative;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav li {
    position: relative;
}

nav a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    display: block;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    header {
        position: relative;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .logo-container {
        order: 1;
        flex: 1;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
    }

    .logo {
        max-width: 200px;
    }

    nav {
        position: static;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 0;
        z-index: 1000;
    }

    nav ul.show {
        display: flex;
    }

    nav li {
        width: 100%;
        text-align: center;
        background-color: var(--primary-color);
    }

    nav li a {
        background-color: var(--primary-color);
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .dropdown-content {
        display: none;
        position: static;
        background-color: var(--primary-color);
        box-shadow: none;
        width: 100%;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: var(--white);
        padding: 0.75rem 1rem;
        border-bottom: none;
        background-color: rgba(255,255,255,0.1);
    }

    .dropdown-content a:hover {
        background-color: rgba(255,255,255,0.2);
        color: var(--white);
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 2rem;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero/hero.jpg');
}

/* Service pages - no hero background image */
.service-page .hero {
    background-image: none;
    background-color: var(--primary-color);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero * {
    position: relative;
    z-index: 2;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .primary-button,
.cta-buttons .secondary-button {
    padding: 0.9rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-buttons .primary-button:hover,
.cta-buttons .secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .primary-button,
    .cta-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Services Grid */
.services {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
}

@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
    text-align: center;
    display: block;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card img {
    width: 140px;
    height: 140px;
    margin-bottom: var(--spacing-md);
    object-fit: cover;
    border-radius: 4px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Service Items - Homepage */
.service-item {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.service-item .service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    margin: var(--spacing-md) var(--spacing-md) var(--spacing-xs);
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 var(--spacing-md);
    flex-grow: 1;
}

.service-item .learn-more {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    margin: var(--spacing-md);
    font-size: 0.95rem;
}

.service-item .learn-more:hover {
    text-decoration: underline;
}

/* Services Grid for About Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Combined About Section (Who We Are + Core Values side by side) */
.about-combined {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Company Intro / Who We Are Section */
.company-intro {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.company-intro h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.intro-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Our Values Section */
.our-values {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.our-values h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.value-item:hover {
    background-color: var(--light-bg);
}

.value-icon {
    font-size: 1.25rem;
    color: var(--secondary-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-text h3 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.value-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

@media (max-width: 900px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature .feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--light-bg);
    padding: var(--spacing-2xl) var(--spacing-lg);
    margin: 0;
}

.why-choose-us h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.why-choose-content {
    max-width: 1100px;
    margin: 0 auto;
}

.why-choose-us h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    text-align: center;
}

.why-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-card-content {
    text-align: left;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: var(--spacing-sm) var(--spacing-md);
    display: inline-block;
    margin-top: var(--spacing-sm);
}

.trust-badge p {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Service Area Section - Professional Layout */
.service-area-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--white);
}

.service-area-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 900px) {
    .service-area-wrapper {
        grid-template-columns: 1fr;
    }
}

.service-area-info {
    padding: var(--spacing-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.service-area-info h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    text-align: left;
}

.area-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.area-list-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.area-list-item:last-child {
    border-bottom: none;
}

.area-check {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
}

.area-list-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.area-list-item a:hover {
    color: var(--secondary-color);
}

.area-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: auto;
}

.area-tag.primary {
    background: var(--secondary-color);
    color: var(--white);
}

.area-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

.area-note a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.area-note a:hover {
    text-decoration: underline;
}

/* Map Container */
.service-area-map {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 400px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
}

.service-area-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    text-align: right;
}

.map-link {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
}

.map-link:hover {
    opacity: 0.8;
}

@media (max-width: 900px) {
    .service-area-map {
        min-height: 300px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    padding: var(--spacing-2xl) var(--spacing-lg);
    text-align: center;
}

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

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.cta-section > .cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    min-width: 200px;
}

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

.cta-btn-primary:hover {
    background: #a05f28;
    border-color: #a05f28;
}

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

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

.cta-btn-icon {
    font-size: 1.5rem;
}

.cta-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.cta-btn-text strong {
    font-weight: 600;
}

.cta-btn-text small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 600px) {
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Section Headers */
section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Floating Contact Badge */
.floating-badge {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 4px 0 0 4px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.floating-badge:hover {
    padding-right: var(--spacing-lg);
    background: #333333;
}

.badge-icon {
    font-size: 1.2rem;
    transform: rotate(90deg);
}

.badge-text {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Contact Panel Overlay */
.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.panel-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Slide-out Contact Panel */
.contact-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contact-panel.open {
    right: 0;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--primary-color);
    color: var(--white);
}

.panel-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.panel-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.panel-close:hover {
    opacity: 1;
}

.panel-content {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-lg);
}

.panel-content > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.quote-form .form-group {
    margin-bottom: var(--spacing-md);
}

.quote-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 6px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.panel-submit {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.panel-submit:hover {
    background: #333333;
}

.panel-contact {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.panel-contact p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.panel-phone {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.panel-phone:hover {
    color: var(--secondary-color);
}

@media (max-width: 450px) {
    .contact-panel {
        width: 100%;
        right: -100%;
    }
}

/* Service Page Specific */
.service-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.service-overview {
    margin: 3rem 0;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.design-grid,
.problem-grid,
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.design-item,
.problem,
.application {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.design-item h3,
.problem h3,
.application h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.design-item ul,
.problem ul,
.application ul {
    list-style: none;
    padding: 0;
}

.design-item li,
.problem li,
.application li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.design-item li:before,
.problem li:before,
.application li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .design-grid,
    .problem-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }
}

.why-choose ul, 
.maintenance-tips ul {
    list-style: none;
    padding: 1rem 2rem;
}

.why-choose li, 
.maintenance-tips li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.why-choose li:before, 
.maintenance-tips li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.process ol {
    list-style: none;
    counter-reset: process-counter;
    padding: 1rem 2rem;
}

.process li {
    counter-increment: process-counter;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.process li:before {
    content: counter(process-counter);
    color: var(--white);
    background-color: var(--secondary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    text-align: center;
    line-height: 24px;
    font-size: 0.9rem;
}

/* Contact Form Styles */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.contact-hero h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 250px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p a {
    color: var(--text-color);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-item p a:hover {
    color: var(--primary-color);
}

.availability, .response-time {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Full-width Contact Form Section */
.contact-form-section {
    width: 100%;
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

.privacy-note {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    color: #777;
}

.privacy-note a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Trust Signals */
.trust-signals {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.trust-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.trust-items {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-item {
    background-color: var(--white);
    padding: 1.2rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.trust-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.testimonial-highlight {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-top: 1.5rem;
}

.testimonial-highlight blockquote {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-highlight blockquote::before {
    content: '\201C';
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -0.5rem;
    color: var(--primary-color);
}

.testimonial-highlight cite {
    display: block;
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
}

/* Service Areas */
.service-areas {
    text-align: center;
    margin: 2rem 0;
}

.area-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.area-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--light-bg);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.gallery-caption p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Location Images */
.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Project Showcase Images */
.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Service Feature Images */
.service-feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Section Intro Paragraphs */
.service-intro, .section-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: var(--light-bg);
    margin: 3rem -2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: bold;
}

/* Project Locations Section */
.project-locations {
    background: var(--light-bg);
    padding: var(--spacing-2xl) var(--spacing-lg);
    margin: 0;
}

.project-locations h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

/* Location Grid */
.location-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.location {
    text-align: center;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.location:hover h3,
.location:hover p {
    color: var(--white);
}

.location h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.location p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 4rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--white);
}

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

.footer-hours h5 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Legacy footer support */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-content h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-content a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Projects Page Styles */
.projects-page {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.projects-page .hero {
    width: 100%;
}

.projects-page .project-categories {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-page .project-categories h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.projects-page .testimonials {
    width: 100%;
    padding: 4rem 2rem;
    margin: 0;
}

.projects-page .project-locations {
    width: 100%;
}

.projects-page .cta {
    width: 100%;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: none;
    color: var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.project-item {
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* Thank You Page Styles */
.thank-you-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.thank-you-container {
    text-align: center;
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark {
    width: 40px;
    height: 20px;
    border-bottom: 5px solid white;
    border-right: 5px solid white;
    transform: rotate(45deg) translate(-5px, -10px);
}

.thank-you-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.response-time {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 2rem;
}

.next-steps {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.8rem;
    color: var(--text-color);
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.secondary-button {
    background-color: var(--light-bg);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.primary-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.secondary-button:hover {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    transform: translateY(-3px);
}

.other-resources {
    margin-bottom: 3rem;
    text-align: center;
}

.other-resources h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-link {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.resource-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.resource-link h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resource-link p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .service-grid,
    .area-grid,
    .features {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Design for Projects Page */
@media (max-width: 768px) {
    .category-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Image Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img,
    .project-image,
    .location-image,
    .service-feature-image {
        height: 200px;
    }

    .gallery-caption {
        transform: translateY(0);
        position: relative;
        background: var(--primary-color);
    }
}

@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .trust-signals {
        order: -1;
    }
}

@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Contact/Free Estimate Button */
.contact-button {
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: var(--white) !important;
}

/* Phone Button */
.phone-button {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.phone-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .contact-button,
    .phone-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Location Map Section */
.location-map {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--light-bg);
    text-align: center;
}

.location-map h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}

.map-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: var(--spacing-md);
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* ============================================
   STATS COUNTER IN HERO
   ============================================ */
.stats-counter {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: inline;
}

.stat-plus,
.stat-percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-counter {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-plus,
    .stat-percent {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* ============================================
   TRUST BADGES SECTION
   ============================================ */
.trust-badges {
    background: var(--primary-color);
    padding: 1.5rem 0;
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .badges-grid {
        gap: 1.5rem;
    }
    
    .badge-item {
        flex: 0 0 45%;
        justify-content: center;
    }
    
    .badge-text {
        font-size: 0.85rem;
    }
}

/* ============================================
   BEFORE/AFTER SLIDER
   ============================================ */
.before-after-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.before-after-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.before-after-section .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

.before-after-container {
    max-width: 800px;
    margin: 0 auto;
}

.before-after-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    cursor: ew-resize;
}

.before-after-slider img {
    display: block;
    width: 100%;
    height: auto;
}

.before-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.before-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    max-width: none;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slider-handle::after {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
    white-space: nowrap;
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
}

.slider-label.before {
    left: 20px;
}

.slider-label.after {
    right: 20px;
}

/* ============================================
   ENHANCED PROJECT GALLERY
   ============================================ */
.project-item {
    position: relative;
    overflow: hidden;
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 1.5rem;
    background: var(--white);
    transition: background 0.3s ease;
}

.project-item:hover .project-info {
    background: var(--primary-color);
}

.project-item:hover .project-info h3,
.project-item:hover .project-info p {
    color: var(--white);
}

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
}

.testimonial-slide blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-slide .stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-slide cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-page .hero {
    padding: 6rem 2rem;
}

.privacy-content {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-content p,
.privacy-content li {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content .last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* ============================================
   LOCATION PAGE STYLES
   ============================================ */

/* Location Intro Section */
.location-page .location-intro {
    padding: 4rem 2rem;
    background: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.location-page .location-intro h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.location-page .location-intro p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Services Section */
.location-page .services {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.location-page .services h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.location-page .service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-page .service-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    flex: 0 1 180px;
    max-width: 180px;
}

.location-page .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.location-page .service-item .service-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.location-page .service-item h3 {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.75rem 0.5rem;
    text-align: center;
}

.location-page .service-item p,
.location-page .service-item .learn-more {
    display: none;
}

/* Why Choose Section */
.location-page .why-choose {
    padding: 4rem 2rem;
    background: var(--white);
}

.location-page .why-choose h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.location-page .why-choose .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.location-page .why-choose .feature {
    background: var(--light-bg);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-page .why-choose .feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.location-page .why-choose .feature h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.location-page .why-choose .feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.location-page .testimonials {
    padding: 4rem 2rem;
    background: var(--primary-color);
    margin: 0;
}

.location-page .testimonials h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 2.5rem;
}

.location-page .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.location-page .testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.location-page .testimonial blockquote {
    font-style: italic;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.location-page .testimonial blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.location-page .testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

/* FAQ Section */
.location-page .faq {
    padding: 4rem 2rem;
    background: var(--white);
}

.location-page .faq h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.location-page .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.location-page .faq-item {
    background: var(--light-bg);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.location-page .faq-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.location-page .faq-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* Service Areas Links */
.location-page .service-areas {
    padding: 3rem 2rem;
    background: var(--light-bg);
    text-align: center;
    margin: 0;
}

.location-page .service-areas h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-page .service-areas > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.location-page .area-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.location-page .area-links a {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.location-page .area-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* CTA Section */
.location-page .cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    text-align: center;
}

.location-page .cta h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.location-page .cta > p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .location-page .why-choose .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-page .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .location-page .service-item {
        flex: 0 1 140px;
        max-width: 150px;
    }
    
    .location-page .service-item .service-img {
        height: 100px;
    }
    
    .location-page .service-item h3 {
        font-size: 0.85rem;
        margin: 0.5rem 0.4rem;
    }
    
    .location-page .why-choose .features {
        grid-template-columns: 1fr;
    }
    
    .location-page .cta h2 {
        font-size: 1.75rem;
    }
}

/* ============================================
   SERVICE IMAGE SECTION
   ============================================ */
.service-image-section {
    padding: 3rem 2rem;
    background: var(--light-bg);
}

.service-image-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.service-hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .service-image-section {
        padding: 2rem 1rem;
    }
    
    .service-hero-img {
        border-radius: 8px;
    }
}
