/* ============================================
   ABR ELECTRIC - CLEAN BUILD
   ============================================ */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #2FB344;
    --blue: #4A90E2;
    --red-dark: #2B0D0D;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #cccccc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #0a0a0a;
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: linear-gradient(to right, var(--black), var(--red-dark), var(--black));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* LOGO */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* NAVIGATION */
.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

/* Underline animation on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

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

/* PHONE */
.phone {
    color: var(--black);
    background: var(--green);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    border: 2px solid var(--green);
    box-shadow: 0 4px 15px rgba(47, 179, 68, 0.4);
}

.phone:hover {
    color: var(--black);
    background: #25a03a;
    border-color: #25a03a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(47, 179, 68, 0.6);
}

.phone-truck-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--green);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(to right, var(--black), var(--red-dark), var(--black));
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .phone {
        font-size: 0.9rem;
    }
    
    .nav {
        gap: 1rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 2rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

/* Left Content */
.hero-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-motto {
    background: rgba(43, 13, 13, 0.3);
    border: 1px solid rgba(47, 179, 68, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.hero-motto p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.hero-motto blockquote {
    color: var(--green);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

/* Ratings */
.ratings {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    min-height: 80px;
}

.rating-item {
    text-align: center;
    min-width: 100px;
}

.rating-stars {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

.rating-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    min-height: 112px;
}

.badge {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    height: 48px;
}

.badge-icon {
    color: var(--green);
    font-size: 24px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    line-height: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.badge-text {
    flex: 1;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 600;
    height: 20px;
    overflow: hidden;
}

.badge-text span {
    color: #999;
    font-size: 0.85rem;
    display: block;
    line-height: 1.4;
    height: 20px;
    overflow: hidden;
}

/* Hero Image as Background - No CLS */
.hero-image-background {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 320px;
    min-height: 320px;
    background-image: url('https://imagedelivery.net/Vao_m7ISeT7aNnreYMwd6A/a1da6d44-4bac-4a24-c457-54105bb75b00/public');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(47, 179, 68, 0.4), 0 0 60px rgba(47, 179, 68, 0.2);
    margin: 2rem auto;
    border: 2px solid rgba(47, 179, 68, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-background:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(47, 179, 68, 0.5), 0 0 80px rgba(47, 179, 68, 0.3);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.btn-call,
.btn-quote {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-call {
    background: var(--green);
    color: var(--white);
}

.btn-call:hover {
    background: #25a03a;
    transform: translateY(-2px);
}

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

.btn-quote:hover {
    background: var(--green);
    color: var(--white);
}

/* Hero Branding - Logo and Location */
.hero-branding {
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(47, 179, 68, 0.2);
    contain: layout style;
}

.hero-logo {
    display: block;
    margin: 0 auto 1.5rem;
    max-width: 173px;
    width: 173px;
    height: 158px;
    opacity: 0.95;
}

.hero-location {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: center;
    margin: 0;
    min-height: 75px;
}

/* FormNX Iframe Styling */
.hero-form {
    background: #000;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 0;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.hero-form iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    border: none;
}

@media (max-width: 1024px) {
    .hero-form {
        position: static;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    background: #0a0a0a;
    padding: 5rem 2rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #999;
}

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

.service-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(47, 179, 68, 0.2);
}

.service-card h3 {
    color: var(--white);
}

.service-card p {
    color: #999;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

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

.service-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: var(--green);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--green);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

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

/* SERVICES RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services {
        padding: 3rem 1rem;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-header p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-call,
    .btn-quote {
        width: 100%;
    }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}

/* Parallax Background */
.reviews-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://imagedelivery.net/Vao_m7ISeT7aNnreYMwd6A/7978c9ce-e45f-4816-6b59-69d25b3e4900/public');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark overlay for readability */
.reviews-parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.reviews-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

/* Company Motto in Reviews */
.reviews-motto {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    background: rgba(47, 179, 68, 0.1);
    border: 2px solid rgba(47, 179, 68, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.reviews-motto p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.reviews-motto blockquote {
    color: var(--green);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.reviews-header p {
    font-size: 1.2rem;
    color: #999;
}

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

.review-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(47, 179, 68, 0.2);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.review-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 120px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.author-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.platform-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.review-source {
    color: #666;
    font-size: 0.85rem;
}

/* REVIEWS RESPONSIVE */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-parallax {
        background-attachment: scroll;
    }
}

@media (max-width: 640px) {
    .reviews {
        padding: 3rem 1rem;
    }
    
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .reviews-header p {
        font-size: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-text {
        min-height: auto;
    }
    
    .reviews-parallax {
        background-attachment: scroll;
    }
}


/* ============================================
   PERMITS SECTION
   ============================================ */

.permits {
    background: linear-gradient(to right, #000000, rgb(43, 13, 13), #000000);
    padding: 5rem 2rem;
}

.permits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.permits-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.permits-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.permits-header p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
}

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

.permit-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(47, 179, 68, 0.3);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.permit-card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(47, 179, 68, 0.3);
}

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

.permit-blue {
    background: var(--blue);
}

.permit-yellow {
    background: #FFD700;
}

.permit-card h3 {
    color: var(--green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.permit-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
}

.permits-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-call-permits {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--green);
    color: var(--white);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 179, 68, 0.3);
}

.btn-call-permits:hover {
    background: #25a03a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(47, 179, 68, 0.4);
}

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

/* PERMITS RESPONSIVE */
@media (max-width: 1024px) {
    .permits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .permits {
        padding: 3rem 1rem;
    }
    
    .permits-header h2 {
        font-size: 2rem;
    }
    
    .permits-header p {
        font-size: 1rem;
    }
    
    .btn-call-permits {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

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

.faq {
    background: #000000;
    padding: 5rem 2rem;
}

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

.faq-container h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #1e293b;
    border: 1px solid #374151;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

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

.faq-question:hover {
    background: #2d3748;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--green);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #d1d5db;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ RESPONSIVE */
@media (max-width: 640px) {
    .faq {
        padding: 3rem 1rem;
    }
    
    .faq-container h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   SERVICE AREAS SECTION
   ============================================ */

.service-areas {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 5rem 2rem;
}

.service-areas-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-areas-container h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.service-areas-intro {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.area-link {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.area-link:hover {
    background: rgba(47, 179, 68, 0.1);
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(47, 179, 68, 0.2);
}

/* SERVICE AREAS RESPONSIVE */
@media (max-width: 1024px) {
    .service-areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .area-link {
        padding: 1.25rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-areas {
        padding: 3rem 1rem;
    }
    
    .service-areas-container h2 {
        font-size: 2rem;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
}

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

.footer {
    background: linear-gradient(to right, var(--black), var(--red-dark), var(--black));
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
}

.footer-column h3 {
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #999;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-certifications {
    background: rgba(47, 179, 68, 0.1);
    border: 1px solid rgba(47, 179, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.cert-badge {
    color: var(--green);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cert-text {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.5;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.95rem;
}

.contact-icon {
    color: var(--green);
    font-size: 1.1rem;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.license-info {
    color: var(--green);
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 2rem;
}

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

.footer-tagline {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-serving {
    color: #999;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-copyright {
    color: #666;
    font-size: 0.85rem;
}

/* FOOTER RESPONSIVE */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   HEARTH FINANCING CTA SECTION
   ============================================ */

.financing-cta {
    background: linear-gradient(to right, #000000 0%, #0a0a0a 15%, #1a0505 35%, #351717 50%, #1a0505 65%, #0a0a0a 85%, #000000 100%);
    padding: 5rem 2rem;
    position: relative;
}

.financing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(53, 23, 23, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.financing-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.financing-content {
    text-align: center;
    background: rgba(10, 10, 10, 0.85);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(53, 23, 23, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 60px rgba(53, 23, 23, 0.3);
}

.financing-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.financing-intro {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.financing-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.financing-badge {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(47, 179, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.financing-badge:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(47, 179, 68, 0.3);
}

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

.financing-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.financing-badge-text strong {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.financing-badge-text span {
    color: #999;
    font-size: 0.9rem;
}

.financing-benefits {
    background: rgba(47, 179, 68, 0.1);
    border: 1px solid rgba(47, 179, 68, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.financing-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.financing-benefits-list li {
    color: var(--white);
    font-size: 1.1rem;
    padding: 0.75rem 0;
    line-height: 1.6;
}

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

.btn-financing-primary,
.btn-financing-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-financing-primary:hover {
    background: #25a03a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(47, 179, 68, 0.4);
}

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

.btn-financing-secondary:hover {
    background: var(--white);
    color: #0d1f0d;
}

.financing-disclaimer {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
}

/* Responsive Financing Section */
@media (max-width: 1024px) {
    .financing-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .financing-content h2 {
        font-size: 2rem;
    }
    
    .financing-intro {
        font-size: 1rem;
    }
    
    .financing-trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .financing-cta-buttons {
        flex-direction: column;
    }
    
    .btn-financing-primary,
    .btn-financing-secondary {
        width: 100%;
    }
}

/* ============================================
   MOBILE RESPONSIVE - COMPLETE REDESIGN
   ============================================ */

/* Mobile: Show mobile title, hide desktop title */
.hero-title-mobile {
    display: none;
}

.hero-title-desktop {
    display: block;
}

/* Mobile Phone CTA - Hidden on desktop */
.mobile-phone-cta {
    display: none;
}

/* Footer Trust Badges Styling */
.footer-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-badge {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-badge-icon {
    color: var(--green);
    font-size: 24px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.footer-badge-text {
    display: flex;
    flex-direction: column;
}

.footer-badge-text strong {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.footer-badge-text span {
    color: #999;
    font-size: 0.9rem;
}

/* MOBILE VIEW - Under 768px */
@media (max-width: 768px) {
    /* Show mobile title, hide desktop */
    .hero-title-mobile {
        display: block;
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-title-desktop {
        display: none;
    }
    
    /* Show mobile phone CTA */
    .mobile-phone-cta {
        display: block;
        background: var(--green);
        color: var(--white);
        text-decoration: none;
        font-size: 1.3rem;
        font-weight: 700;
        padding: 1.2rem 2rem;
        border-radius: 8px;
        text-align: center;
        margin-bottom: 2rem;
        box-shadow: 0 4px 15px rgba(47, 179, 68, 0.3);
    }
    
    .mobile-phone-cta:active {
        transform: scale(0.98);
    }
    
    /* HIDE hero elements on mobile */
    .trust-badges,
    .hero-image-background,
    .cta-buttons,
    .hero-branding {
        display: none !important;
    }
    
    /* Hero section simplified */
    .hero {
        padding: 2rem 1rem;
        margin-top: 70px;
    }
    
    .hero-container {
        display: block;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-content {
        width: 100%;
    }
    
    /* Form takes full width on mobile */
    .hero-form {
        width: 100%;
        margin-top: 2rem;
    }
    
    .hero-form iframe {
        min-height: 800px;
    }
    
    /* HIDE all other sections on mobile */
    .services,
    .reviews,
    .permits,
    .faq,
    .financing-cta,
    .service-areas {
        display: none !important;
    }
    
    /* Footer trust badges - SHOW on mobile */
    .footer-trust-badges {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .footer-badge {
        justify-content: center;
    }
    
    /* Simplify footer on mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

