/* ========================================
   OTTAWA VALLEY GLASS - MAIN STYLESHEET
   ======================================== */

/* CSS Variables */
:root {
    --ovg-primary: #a93426;
    --ovg-primary-dark: #8a2a1f;
    --ovg-primary-light: #c44536;
    --ovg-dark: #1a1a1a;
    --ovg-light: #f5f5f5;
    --ovg-warm-gray: #e8e4df;
    --ovg-text: #333;
    --ovg-text-light: #666;
    --ovg-white: #fff;
    --ovg-emergency: #b91c1c;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --section-padding: 60px;
    --container-max: 1200px;
    --card-gap: 25px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ovg-text);
    background-color: var(--ovg-white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); }

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Icons */
.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    fill: currentColor;
    stroke: currentColor;
}

.icon-sm { width: 0.875em; height: 0.875em; }
.icon-lg { width: 1.25em; height: 1.25em; }
.icon-2x { width: 2em; height: 2em; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--ovg-primary-dark);
    color: var(--ovg-white);
    transform: translateY(-2px);
}

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

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

.btn-emergency {
    background-color: var(--ovg-emergency);
    color: var(--ovg-white);
}

.btn-emergency:hover {
    background-color: #991b1b;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ovg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Top Bar */
.top-bar {
    background-color: var(--ovg-primary);
    color: var(--ovg-white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: var(--ovg-white);
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar__phone {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.top-bar__hours {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Main Navigation */
.main-nav {
    padding: 15px 0;
    position: relative;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Nav Menu - Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}

.nav-menu > li > a {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ovg-text);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--ovg-primary);
    transition: width 0.3s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--ovg-primary);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 10px;
}

/* Dropdown - Desktop */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--ovg-light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 8px;
    transition: all 0.2s ease;
}

.dropdown-toggle:hover {
    background: var(--ovg-warm-gray);
}

.dropdown-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--ovg-text);
    transition: transform 0.3s ease;
}

.dropdown-toggle.active svg {
    transform: rotate(180deg);
}

.dropdown-toggle.active {
    background: var(--ovg-primary);
}

.dropdown-toggle.active svg {
    color: var(--ovg-white);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--ovg-white);
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--ovg-text);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--ovg-light);
}

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

.dropdown-menu a:hover {
    background: var(--ovg-primary);
    color: var(--ovg-white);
}

.dropdown-menu a::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--ovg-text);
    padding: 8px;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
    background: var(--ovg-warm-gray);
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.breadcrumb__list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.8rem;
    margin: 0;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb__item a {
    color: var(--ovg-text-light);
    transition: color 0.3s;
}

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

.breadcrumb__separator {
    color: #bbb;
    font-size: 0.6rem;
}

.breadcrumb__current {
    color: var(--ovg-text);
    font-weight: 500;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, rgba(169,52,38,0.9), rgba(138,42,31,0.95));
    color: var(--ovg-white);
    padding: 60px 0;
}

.page-hero__tagline {
    display: inline-block;
    background: var(--ovg-dark);
    color: var(--ovg-white);
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.page-hero h1 {
    margin-bottom: 15px;
    color: var(--ovg-white);
}

.page-hero__subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 700px;
    margin-bottom: 25px;
}

.page-hero__ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-hero__ctas .btn-primary {
    background: var(--ovg-white);
    color: var(--ovg-primary);
}

.page-hero__ctas .btn-primary:hover {
    background: var(--ovg-dark);
    color: var(--ovg-white);
}

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

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

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
    padding: var(--section-padding) 0;
}

.content-section--white { background: var(--ovg-white); }
.content-section--light { background: var(--ovg-light); }
.content-section--warm { background: var(--ovg-warm-gray); }
.content-section--dark { 
    background: var(--ovg-dark); 
    color: var(--ovg-white); 
}

.content-section--dark h2,
.content-section--dark h3,
.content-section--dark h4 { 
    color: var(--ovg-white); 
}

.content-section--dark p { 
    color: rgba(255,255,255,0.85);
}

.content-section h2 {
    margin-bottom: 20px;
    color: #9f9f9f;
}

.content-section h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--ovg-primary);
}

.content-section h3:first-child {
    margin-top: 0;
}

.intro-text {
    font-size: 1.1rem;
    max-width: 800px;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.two-col--reverse .two-col__content { order: 2; }
.two-col--reverse .two-col__image { order: 1; }

.two-col__image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: var(--ovg-white);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--ovg-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--ovg-dark);
    margin-top: 0;
}

.service-card ul {
    margin: 0;
    padding: 0;
}

.service-card li {
    padding: 8px 0;
    color: var(--ovg-text-light);
    border-bottom: 1px solid var(--ovg-light);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ovg-primary);
    font-weight: bold;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 25px;
    background: var(--ovg-light);
    border-radius: 8px;
}

.benefit-card__icon {
    width: 50px;
    height: 50px;
    background: var(--ovg-primary);
    color: var(--ovg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card__content h4 {
    margin-bottom: 8px;
}

.benefit-card__content p {
    color: var(--ovg-text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    text-align: center;
    padding: 20px 15px;
}

.process-step__number {
    width: 50px;
    height: 50px;
    background: var(--ovg-primary);
    color: var(--ovg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.process-step p {
    color: var(--ovg-text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Emergency Box */
.emergency-box {
    background: var(--ovg-emergency);
    color: var(--ovg-white);
    padding: 35px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.emergency-box__icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.emergency-box__content h3 {
    color: var(--ovg-white);
    margin: 0 0 10px;
}

.emergency-box__content p {
    margin: 0 0 15px;
    opacity: 0.95;
}

.emergency-box .btn {
    background: var(--ovg-white);
    color: var(--ovg-emergency);
}

.emergency-box .btn:hover {
    background: var(--ovg-dark);
    color: var(--ovg-white);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--ovg-primary-light);
}

.testimonial-card__stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-style: italic;
    color: #666666 !important;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-card__author {
      color: #666666 !important;
    font-weight: 500;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--ovg-primary);
    color: var(--ovg-white);
    padding: 50px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--ovg-white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--ovg-white);
    color: var(--ovg-primary);
}

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

.cta-section .btn-secondary {
    border-color: var(--ovg-white);
    color: var(--ovg-white);
    background: transparent;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--ovg-dark);
    color: var(--ovg-white);
    padding: var(--section-padding) 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__about img {
    height: 45px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer__about p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    color: var(--ovg-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--ovg-white);
}

.footer__contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.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;
    color: var(--ovg-white);
    transition: background 0.3s;
}

.footer__social a:hover {
    background: var(--ovg-primary);
}

.footer__social span {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ovg-white);
}

.footer__about iframe {
    width: 100%;
    border-radius: 8px;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ovg-dark);
    padding: 10px 15px;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.mobile-cta-bar .container {
    display: flex;
    gap: 10px;
}

.mobile-cta-bar .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 15px;
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (992px)
   ======================================== */
@media (max-width: 992px) {
    /* Hide desktop nav, show mobile toggle */
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    /* Mobile Menu - Active State */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ovg-white);
        padding: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-menu.active > li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid var(--ovg-warm-gray);
    }
    
    .nav-menu.active > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active > li > a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        height: auto;
    }
    
    .nav-menu.active > li > a:hover {
        background: var(--ovg-primary);
        color: var(--ovg-white);
    }
    
    .nav-menu.active > li > a::after {
        display: none;
    }
    
    /* Mobile Dropdown */
    .nav-menu.active .nav-dropdown {
        display: flex;
        flex-wrap: wrap;
    }
    
    .nav-menu.active .nav-dropdown > a {
        flex: 1;
    }
    
    .nav-menu.active .dropdown-toggle {
        display: flex;
    }
    
    .nav-menu.active .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        min-width: unset;
        background: var(--ovg-dark);
        padding: 0;
        margin: 0;
    }
    
    .nav-menu.active .dropdown-menu.active {
        display: block;
    }
    
    .nav-menu.active .dropdown-menu a {
        padding: 14px 20px 14px 35px;
        color: rgba(255,255,255,0.85);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 1rem;
    }
    
    .nav-menu.active .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active .dropdown-menu a:hover {
        background: var(--ovg-white);
        color: var(--ovg-dark);
    }
    
    /* Layout adjustments */
    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .two-col--reverse .two-col__content,
    .two-col--reverse .two-col__image {
        order: unset;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (768px)
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 40px;
    }
    
    .top-bar__hours {
        display: none;
    }
    
    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-cta-bar {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .page-hero__ctas {
        flex-direction: column;
    }
    
    .page-hero__ctas .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   SEASONAL/ALERT BANNER
   ======================================== */
.seasonal-banner {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    color: var(--ovg-white);
    padding: 15px 0;
}

.seasonal-banner__content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.seasonal-banner__icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.seasonal-banner__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seasonal-banner__text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seasonal-banner__text span {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .seasonal-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .seasonal-banner__text {
        align-items: center;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 30px auto 0;
}

.faq-item {
    background: var(--ovg-white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-item__question {
    padding: 20px 25px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ovg-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-item__question:hover {
    background: var(--ovg-light);
}

.faq-item__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--ovg-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__question::after {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 25px 20px;
    color: var(--ovg-text-light);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-item__answer {
    display: block;
}

.faq-item__answer p {
    margin-bottom: 10px;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

/* ========================================
   BLOG CARDS & GRID
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background: var(--ovg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card__image {
    height: 200px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 25px;
}

.blog-card__category {
    display: inline-block;
    background: var(--ovg-primary);
    color: var(--ovg-white);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ovg-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card__title a {
    color: inherit;
    transition: color 0.3s;
}

.blog-card__title a:hover {
    color: var(--ovg-primary);
}

.blog-card__excerpt {
    color: var(--ovg-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card__link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--ovg-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.blog-card__link:hover {
    gap: 10px;
}

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

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

/* ========================================
   PAGE INTRO
   ======================================== */
.page-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-intro h2 {
    margin-bottom: 15px;
}

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

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    background: var(--ovg-dark);
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--ovg-white);
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ovg-primary-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item__number {
        font-size: 2rem;
    }
}

/* ========================================
   ARTICLE/BLOG POST CONTENT
   ======================================== */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content blockquote {
    background: var(--ovg-light);
    border-left: 4px solid var(--ovg-primary);
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--ovg-text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ovg-warm-gray);
}

/* ========================================
   AREA CARDS (for Areas Served)
   ======================================== */
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.area-card {
    background: var(--ovg-white);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card__icon {
    width: 60px;
    height: 60px;
    background: var(--ovg-primary);
    color: var(--ovg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.area-card h3 {
    margin-bottom: 10px;
    color: var(--ovg-dark);
}

.area-card p {
    color: var(--ovg-text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.area-card__link {
    color: var(--ovg-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

/* ========================================
   RELATED POSTS
   ======================================== */
.related-posts {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--ovg-warm-gray);
}

.related-posts h3 {
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

/* ========================================
   HOMEPAGE SPECIFIC STYLES
   ======================================== */

/* Homepage Hero */
.hero {
    background: linear-gradient(135deg, rgba(169,52,38,0.95), rgba(138,42,31,0.98));
    color: var(--ovg-white);
    padding: 80px 0;
    text-align: center;
}

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

.hero__tagline {
    display: inline-block;
    background: rgba(0,0,0,0.3);
    color: var(--ovg-white);
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero__ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__ctas .btn-primary {
    background: var(--ovg-white);
    color: var(--ovg-primary);
}

.hero__ctas .btn-primary:hover {
    background: var(--ovg-light);
}

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

.hero__ctas .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Service Areas Banner */
.service-areas-banner {
    background: var(--ovg-dark);
    color: var(--ovg-white);
    padding: 15px 0;
    text-align: center;
}

.service-areas-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.service-areas-banner span {
    opacity: 0.5;
    margin: 0 8px;
}

/* Homepage Intro Section */
.intro {
    padding: 60px 0;
    background: var(--ovg-white);
}

.intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro__content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ovg-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.intro__content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ovg-primary);
    margin-bottom: 25px;
}

.intro__content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ovg-text);
    margin-bottom: 15px;
}

.intro__stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--ovg-warm-gray);
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ovg-primary);
    line-height: 1;
}

.stat__label {
    font-size: 0.85rem;
    color: var(--ovg-text-light);
    margin-top: 5px;
}

.intro__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Homepage Services Section */
.services {
    padding: 60px 0;
    background: var(--ovg-light);
}

.services__header {
    text-align: center;
    margin-bottom: 40px;
}

.services__header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ovg-dark);
    margin-bottom: 10px;
}

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

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.services__grid .service-card {
    background: var(--ovg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.services__grid .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-card__image {
    height: 180px;
    background: var(--ovg-warm-gray);
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__content {
    padding: 25px;
}

.service-card__content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ovg-dark);
    margin-bottom: 5px;
}

.service-card__content .service-tagline {
    font-size: 0.9rem;
    color: var(--ovg-text-light);
    margin-bottom: 15px;
}

.service-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card__list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--ovg-text);
    margin-bottom: 6px;
}

.service-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ovg-primary);
    font-weight: bold;
}

/* Homepage Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1.05rem;
    }
    
    .intro .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro__stats {
        justify-content: center;
    }
    
    .intro__image {
        order: -1;
    }
    
    .stat__number {
        font-size: 2rem;
    }
}

/* ========================================
   BLOG STYLES
   ======================================== */

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

.blog-card {
    background: var(--ovg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.blog-card__image {
    height: 200px;
    overflow: hidden;
    background: var(--ovg-warm-gray);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__content {
    padding: 25px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card h3 a {
    color: var(--ovg-dark);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--ovg-primary);
}

.blog-card p {
    color: var(--ovg-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card__link {
    color: var(--ovg-primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
}

.blog-card__link:hover {
    text-decoration: underline;
}

/* Areas Served Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.area-card {
    background: var(--ovg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.area-card__image {
    height: 160px;
    overflow: hidden;
    background: var(--ovg-warm-gray);
}

.area-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-card__content {
    padding: 20px;
}

.area-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ovg-dark);
    margin-bottom: 8px;
}

.area-card p {
    color: var(--ovg-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.area-card .btn-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--ovg-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

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

/* Area Card Image Background */
.area-card__image {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: var(--ovg-primary);
}

/* Featured Image for Blog Posts */
.featured-image {
    background: var(--ovg-light);
    padding: 30px 0;
}

.featured-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Blog Card Image Fix */
.blog-card .blog-card__image {
    height: 200px;
    overflow: hidden;
    background: var(--ovg-warm-gray);
}

.blog-card .blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wrap blog card content after image */
.blog-card h3,
.blog-card p,
.blog-card .blog-card__link {
    padding: 0 20px;
}

.blog-card h3 {
    padding-top: 20px;
}

.blog-card .blog-card__link {
    padding-bottom: 20px;
    display: inline-block;
}

/* ========================================
   STAT BANNER
   ======================================== */
.stat-banner {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 30px 0;
    border-bottom: none;
}

.stat-banner__grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-banner__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.stat-banner__item strong {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-banner__item span {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stat-banner {
        padding: 25px 0;
    }
    .stat-banner__grid {
        gap: 30px;
    }
    .stat-banner__item strong {
        font-size: 2rem;
    }
    .stat-banner__item span {
        font-size: 0.85rem;
    }
}

/* ========================================
   SERVICE ITEM (for grid items without cards)
   ======================================== */
.service-item {
    background: var(--ovg-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--ovg-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-item h3 {
    margin: 0 0 12px 0;
    color: var(--ovg-dark);
    font-size: 1.1rem;
}

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

.service-item a {
    color: var(--ovg-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.service-item a:hover {
    color: var(--ovg-primary-dark);
}

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

/* ========================================
   TWO-COL WITH SIDEBAR LAYOUT
   ======================================== */
.two-col--sidebar {
    grid-template-columns: 2fr 1fr;
    align-items: start;
}

.two-col__sidebar {
    position: sticky;
    top: 20px;
}

/* When two-col has sidebar class, use different proportions */
.two-col:has(.two-col__sidebar) {
    grid-template-columns: 2fr 1fr;
    align-items: start;
}

/* ========================================
   INFO BOX (Sidebar boxes)
   ======================================== */
.info-box {
    background: var(--ovg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--ovg-primary);
}

.info-box h4 {
    margin: 0 0 10px 0;
    color: var(--ovg-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.info-box p {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    color: var(--ovg-text-light);
    line-height: 1.5;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-box li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--ovg-text-light);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-left: 18px;
    position: relative;
}

.info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ovg-primary);
    font-weight: bold;
}

.info-box li:last-child {
    border-bottom: none;
}

/* ========================================
   FEATURE LIST
   ======================================== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.feature-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px solid var(--ovg-light);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ovg-primary);
    font-weight: bold;
}

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

/* ========================================
   RESPONSIVE - SIDEBAR
   ======================================== */
@media (max-width: 900px) {
    .two-col:has(.two-col__sidebar),
    .two-col--sidebar {
        grid-template-columns: 1fr;
    }
    
    .two-col__sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
    
    .two-col__sidebar {
        order: 2;
    }
    
    .info-box {
        padding: 15px;
    }
}

/* ========================================
   CARD GRID LAYOUT
   ======================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* ========================================
   CARDS
   ======================================== */
.card {
    background: var(--ovg-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--ovg-primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

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

.card h3 {
    margin: 0 0 15px 0;
    color: var(--ovg-dark);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.card p {
    margin: 0 0 20px 0;
    color: var(--ovg-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.card__link {
    color: var(--ovg-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
    margin-top: auto;
}

.card__link:hover {
    color: var(--ovg-primary-dark);
}

/* Card with image */
.card--with-image {
    padding: 0;
    overflow: hidden;
}

.card--with-image .card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.card--with-image .card__content {
    padding: 25px;
}

.card--with-image h3 {
    margin-bottom: 10px;
}

/* Card icon variant */
.card__icon {
    width: 60px;
    height: 60px;
    background: var(--ovg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--ovg-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 25px;
    }
}

/* ========================================
   STATS BANNER (About page variant)
   ======================================== */
.stats-banner {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 40px 0;
}

.stats-banner .container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stats-banner .stat-item {
    text-align: center;
    color: var(--ovg-white);
}

.stats-banner .stat-item__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-banner .stat-item__label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .stats-banner {
        padding: 30px 0;
    }
    .stats-banner .container {
        gap: 30px;
    }
    .stats-banner .stat-item__number {
        font-size: 2.25rem;
    }
    .stats-banner .stat-item__label {
        font-size: 0.85rem;
    }
}

/* ========================================
   CONTACT BOX (About/Contact pages)
   ======================================== */
.contact-box {
    background: var(--ovg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.contact-box h3 {
    margin: 0 0 30px 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--ovg-dark);
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--ovg-light);
}

.contact-box__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-box__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-box__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-box__icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.contact-box__content h4 {
    margin: 0 0 5px 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--ovg-dark);
    font-weight: 600;
}

.contact-box__content p {
    margin: 0;
    color: var(--ovg-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-box__content a {
    color: var(--ovg-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-box__content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-box {
        padding: 25px;
    }
    
    .contact-box__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-box__icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-box__icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   CONTACT PAGE LAYOUT
   ======================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--ovg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.contact-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-card__icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.contact-card h3 {
    margin: 0 0 10px 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--ovg-dark);
}

.contact-card p {
    margin: 0 0 8px 0;
    color: var(--ovg-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card a {
    color: var(--ovg-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Emergency Card */
.contact-card--emergency {
    background: linear-gradient(135deg, var(--ovg-primary) 0%, var(--ovg-primary-dark) 100%);
    color: #fff;
}

.contact-card--emergency .contact-card__icon {
    background: rgba(255,255,255,0.2);
}

.contact-card--emergency h3 {
    color: #fff;
}

.contact-card--emergency p {
    color: rgba(255,255,255,0.9);
}

/* Hours Table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--ovg-light);
    font-size: 0.95rem;
}

.hours-table td:first-child {
    color: var(--ovg-dark);
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--ovg-text-light);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

/* Contact Form */
.contact-form {
    background: var(--ovg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin: 0 0 10px 0;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--ovg-dark);
}

.contact-form > p {
    margin: 0 0 25px 0;
    color: var(--ovg-text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--ovg-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ovg-primary);
    box-shadow: 0 0 0 3px rgba(169, 52, 38, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

/* Responsive */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        order: -1;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-card {
        padding: 20px;
    }
}

/* ========================================
   SHOWROOM BOX
   ======================================== */
.showroom-box {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    border-radius: 12px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    color: #fff;
}

.showroom-box__icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showroom-box__icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.showroom-box__content h3 {
    margin: 0 0 10px 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
}

.showroom-box__content p {
    margin: 0 0 5px 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.showroom-box__content p:last-child {
    margin-bottom: 0;
}

.showroom-box__content strong {
    color: #fff;
}

@media (max-width: 600px) {
    .showroom-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
}

/* ========================================
   AREAS LIST (Nearby areas links)
   ======================================== */
.areas-list {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.areas-list h3 {
    margin: 0 0 20px 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--ovg-dark);
    text-align: center;
}

.areas-list__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.areas-list__grid a {
    padding: 10px 20px;
    background: var(--ovg-white);
    border-radius: 6px;
    color: var(--ovg-text);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.areas-list__grid a:hover {
    background: var(--ovg-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* ========================================
   TESTIMONIAL ENHANCEMENTS
   ======================================== */
.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
    fill: #fbbf24;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin: 0 0 15px 0;
}

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

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

/* ========================================
   ARTICLE HERO IMAGE
   ======================================== */
.article-hero {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.article-hero img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-hero figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--ovg-text-light);
    margin-top: 12px;
}

/* ========================================
   HOMEPAGE: EMERGENCY CALLOUT
   ======================================== */
.emergency-callout {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.emergency-callout .container {
    max-width: 900px;
}

.emergency-callout__content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emergency-callout__content h2 svg {
    width: 28px;
    height: 28px;
}

.emergency-callout__content p {
    font-size: 1.05rem;
    margin: 0 0 25px 0;
    opacity: 0.95;
    line-height: 1.6;
}

.emergency-callout .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #b91c1c;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.emergency-callout .btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.emergency-callout .btn svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   HOMEPAGE: TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 70px 20px;
    background: var(--ovg-light);
}

.testimonials__header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials__header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--ovg-dark);
    margin: 0;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--ovg-primary);
}

.testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ovg-text);
    margin: 0 0 20px 0;
    font-style: italic;
}

.testimonial-card__author {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--ovg-dark);
    margin: 0 0 4px 0;
    font-size: 0.95rem;
}

.testimonial-card__location {
    font-size: 0.85rem;
    color: var(--ovg-text-light);
    margin: 0;
}

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

/* ========================================
   HOMEPAGE: WHY US SECTION
   ======================================== */
.why-us {
    padding: 70px 20px;
    background: #fff;
}

.why-us__header {
    text-align: center;
    margin-bottom: 40px;
}

.why-us__header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--ovg-dark);
    margin: 0;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-us__item {
    text-align: center;
    padding: 20px;
}

.why-us__icon {
    width: 60px;
    height: 60px;
    background: var(--ovg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-us__icon svg {
    width: 28px;
    height: 28px;
    color: var(--ovg-primary);
}

.why-us__item h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--ovg-dark);
    margin: 0 0 10px 0;
}

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

@media (max-width: 768px) {
    .why-us__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ========================================
   HOMEPAGE: CONTACT / QUOTE FORM SECTION
   ======================================== */
.contact {
    padding: 70px 20px;
    background: var(--ovg-light);
}

.contact > .container {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact__info {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact__info h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--ovg-dark);
    margin: 0 0 12px 0;
}

.contact__info > p {
    color: var(--ovg-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

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

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact__detail > svg {
    width: 22px;
    height: 22px;
    color: var(--ovg-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--ovg-dark);
    margin-bottom: 4px;
}

.contact__detail div {
    font-size: 0.9rem;
    color: var(--ovg-text-light);
    line-height: 1.5;
}

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

.contact__detail a:hover {
    text-decoration: underline;
}

.contact__form {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact__form h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--ovg-dark);
    margin: 0 0 25px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--ovg-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ovg-primary);
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact__form .btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--ovg-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact__form .btn:hover {
    background: var(--ovg-primary-dark);
}

@media (max-width: 768px) {
    .contact > .container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact__form {
        order: -1;
    }
}
