/* ========================================
   DWLG Website Styles
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --secondary-color: #ffffff;
    --accent-green: #059669;
    --accent-orange: #ea580c;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--secondary-color);
}

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

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
    background: var(--secondary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    flex-direction: column;
    color: var(--primary-color);
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Desktop Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

.main-nav .cta-link {
    background: var(--accent-green);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}

.main-nav .cta-link:hover {
    background: #047857;
    color: var(--secondary-color);
}

/* ========================================
   HERO (Homepage & Generic)
   ======================================== */
.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: #0f172a; /* fallback */
    background-image: url('Assets/images/heroes/hero-home.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

/* Centering variant */
.hero.hero--center { justify-content: center; text-align: center; }
.hero.hero--center .hero-content { margin: 0 auto; }
.hero.hero--center .hero-cta { justify-content: center; }

/* ========================================
   SERVICE HERO (all service pages)
   ======================================== */
.service-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}
.service-hero .hero-overlay { position: absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.25) 100%); }
.service-hero .hero-content { position: relative; z-index:1; max-width:800px; margin:0 auto; }
.service-hero h1 { font-size:2.1rem; line-height:1.2; margin-bottom:1rem; text-shadow:0 2px 8px rgba(0,0,0,0.4); }
.service-hero p { color:#e5e7eb; }
@media (max-width: 900px) { .service-hero { min-height:300px; padding:2.25rem 0; } .service-hero h1 { font-size:1.7rem; } }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.25) 100%);
}

.hero .container { position: relative; z-index: 1; }

.hero-content {
    max-width: 800px;
    padding: 3rem 0;
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.hero-subtitle {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn { display: inline-block; padding: 0.75rem 1.25rem; border-radius: 6px; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--accent-green); color: #fff; }
.btn-primary:hover { background: #047857; }
.btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 900px) {
    .hero { min-height: 360px; }
    .hero h1 { font-size: 1.8rem; }
}

/* ========================================
   FORMS
   ======================================== */
.form {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.form h2 { margin-bottom: 1rem; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.form-row { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row.full { grid-column: 1 / -1; }

.form-row label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-row input,
.form-row select,
.form-row textarea {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.65rem 0.75rem;
    font-size: 1rem;
    background: #fff;
    outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

.form-row .error-msg {
    color: #b91c1c;
    font-size: 0.85rem;
}

.form-row.invalid input,
.form-row.invalid select,
.form-row.invalid textarea {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-help {
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.badge {
    display: inline-block;
    font-size: 0.8rem;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
}

.card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
}

/* Image Thumbnails */
.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.thumbnail-item {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: #f9fafb;
}

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

.thumbnail-item .remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-item .remove-btn:hover {
    background: #b91c1c;
}

.thumbnail-item .name {
    font-size: 0.7rem;
    padding: 0.25rem;
    text-align: center;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-color);
    z-index: 1001;
}

.hamburger svg {
    display: block;
}

.hamburger-line {
    transition: all 0.3s ease;
}

/* Hamburger Active State */
.hamburger.active .line-1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line-2 {
    opacity: 0;
}

.hamburger.active .line-3 {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary-color);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding-top: 80px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav .cta-link {
        border-radius: 0;
        margin: 1rem 2rem;
        text-align: center;
    }
    
    .hamburger {
        display: block;
    }
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 30%, rgba(30, 64, 175, 0.3) 100%), url('Assets/images/heroes/hero-main.jpg') center/cover no-repeat;
    color: var(--secondary-color);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Service Hero (smaller) */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 100%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    padding: 6rem 0;
    text-align: center;
    position: relative;
}



/* Specific hero image for Bifolding Door Repairs */
.service-hero.bifolding-hero {
    background: linear-gradient(135deg, rgba(30,58,138,0.3) 30%, rgba(30,64,175,0.3) 100%), url('Assets/images/heroes/hero-bifolding-door-repairs.png') center/cover no-repeat;
}

.service-hero.bifolding-hero .btn {
    margin-top: 1.5rem;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem; /* Change from 1rem to 2rem or higher */
    font-weight: 700;
    line-height: 1.2;
}

/* Page Hero (simple) */
.page-hero {
    background: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

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

.page-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact page hero - split layout */
.contact-hero {
    padding: 3rem 0;
}

.contact-hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 50vh;
}

.contact-hero .hero-image {
    display: flex;
    justify-content: center;
}

.contact-hero .hero-image img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

@media (max-width: 900px) {
    .contact-hero .hero-grid {
        grid-template-columns: 1fr;
        min-height: 40vh;
    }
    .contact-hero .hero-image img {
        height: 40vh;
        object-fit: cover;
        object-position: top center;
    }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin: 0;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    
}

.btn-primary {
    background: var(--accent-green);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: #047857;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-light {
    background: var(--secondary-color);
    color: var(--primary-color);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-light:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-green);
}

/* ========================================
   SECTIONS
   ======================================== */

.section-padding {
    padding: 4rem 0;
}

.bg-light {
    background: var(--bg-light);
}

.bg-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bg-primary .section-header h2 {
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.bg-primary .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   GRIDS & CARDS
   ======================================== */

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
}

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

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

.bg-primary .feature h3 {
    color: var(--secondary-color);
}

.feature p {
    color: var(--text-light);
}

.bg-primary .feature p {
    color: rgba(255, 255, 255, 0.9);
}

/* Brand Cards */
.brand-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

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

.brand-logo-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light) center/contain no-repeat;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Image-based brand logos */
.brand-logo {
    aspect-ratio: 1 / 2; /* 400x800 ratio (width:height) */
    width: 50%; /* Reduce width by 50%; height follows via aspect-ratio */
    margin: 0 auto; /* Center the logo box within the card */
    display: grid;
    place-items: center;
    background: var(--bg-light);
    border-radius: 5px;
    margin-bottom: 1rem;
    padding: 10px;
    overflow: hidden;
}
.brand-logo picture {
    display: contents;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 5px;
    display: block;
}

    /* Fine-tune specific brand image alignment */
    .brand-logo img[alt*="Smart Systems"] {
        object-position: center top;
    }

.brand-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.brand-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Repair Cards */
.repairs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.repair-card {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.repair-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.repair-card p {
    color: var(--text-light);
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.service-content,
.about-content,
.service-area-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content h2,
.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p,
.about-content p,
.service-area-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.service-list {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Service Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detailed.reverse {
    direction: rtl;
}

.service-detailed.reverse > * {
    direction: ltr;
}

.service-image-placeholder {
    background: var(--bg-light) center/cover no-repeat;
    border-radius: 10px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 5rem;
    opacity: 0.3;
    display: none;
}

.service-info h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-info p {
    margin-bottom: 1rem;
}

.service-info ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-info li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .service-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-detailed.reverse {
        direction: ltr;
    }
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

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

.step p {
    color: var(--text-light);
}

/* Areas List */
.areas-intro {
    text-align: center;
    margin-bottom: 2rem;
}

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

.areas-list ul {
    list-style: none;
}

.areas-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.areas-list li:before {
    content: "✓ ";
    color: var(--accent-green);
    font-weight: 700;
}

.areas-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

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

.testimonial-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.trust-item p {
    color: var(--text-light);
}

/* ========================================
   FAQ
   ======================================== */

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

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.faq-item {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

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

.faq-cta p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* ========================================
   CONTACT
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-info > p {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

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

.detail-content p {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.quick-contact-content {
    text-align: center;
}

.phone-number-large {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.phone-number-large:hover {
    color: var(--accent-green);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ========================================
   CTA SECTIONS
   ======================================== */

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

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

.emergency-note {
    color: var(--accent-green);
    font-weight: 600;
    margin-top: 0.5rem;
}

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

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid,
    .brand-cards,
    .repairs-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-number-large {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ========================================
   SERVICE AREAS / LOCATION LINKS
   ======================================== */

.service-areas {
    background: var(--bg-light);
}

.location-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.location-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.location-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.service-locations a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.service-locations a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .location-links {
        flex-direction: column;
    }
    
    .location-link {
        width: 100%;
    }
}

