/*
Theme Name: Infinity Roofing GA
Theme URI: https://ir-ga.com
Author: Infinity Roofing & Cleaning
Description: Professional roofing company theme
Version: 1.0
*/

:root {
    --primary: #0a0a0a;
    --secondary: #1a1a1a;
    --tertiary: #2a2a2a;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8960c;
    --white: #ffffff;
    --light: #f5f5f5;
    --text: #333333;
    --text-light: #666666;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--tertiary);
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-right span {
    color: var(--gold);
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--primary);
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--tertiary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.logo-text span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.nav-phone:hover {
    color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

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

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

.btn-large {
    padding: 1.1rem 2.25rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-image-side {
    position: relative;
    background: url('https://images.pexels.com/photos/8092524/pexels-photo-8092524.jpeg?w=1200') center/cover no-repeat;
}

.hero-image-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 100%);
}

.hero-content-side {
    background: var(--primary);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.hero h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item-icon {
    font-size: 1.25rem;
}

.trust-item-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.trust-item-text strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

/* Floating CTA Banner */
.floating-cta {
    background: var(--gold);
    color: var(--primary);
    padding: 1.5rem 4%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.floating-cta-text {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.floating-cta .btn {
    background: var(--primary);
    color: var(--gold);
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.dark-section .section-tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.dark-section .section-header h2 {
    color: var(--white);
}

.dark-section .section-header p {
    color: rgba(255,255,255,0.7);
}

/* Services Section */
.services {
    padding: 6rem 4%;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.service-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.service-card-content {
    padding: 1.75rem;
}

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

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Trust Section */
.trust-section {
    padding: 6rem 4%;
    background: var(--light);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.trust-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.trust-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 3px solid var(--gold);
}

.trust-image:first-child {
    grid-column: span 2;
}

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

.trust-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.trust-content h2 span {
    color: var(--gold-dark);
}

.trust-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-feature h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.trust-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Testimonial */
.trust-testimonial {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
}

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

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

/* Process Section */
.process {
    padding: 6rem 4%;
    background: var(--secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.process-step {
    background: var(--primary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--tertiary);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 1.25rem;
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

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

/* Areas Section */
.areas {
    padding: 6rem 4%;
    background: var(--white);
}

.areas-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.areas-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 4px solid var(--gold);
}

.areas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.areas-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.areas-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.area-card {
    background: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.area-card:hover {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.area-card h3 {
    font-size: 1rem;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.area-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-list li {
    color: var(--text-light);
    font-size: 0.85rem;
    background: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

/* Bottom CTA */
.bottom-cta {
    padding: 6rem 4%;
    background: var(--primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.bottom-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.bottom-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

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

.bottom-cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.cta-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.cta-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 4%;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.contact-method-text a:hover {
    color: var(--gold-dark);
}

.contact-method-text span {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 4% 2rem;
    border-top: 3px solid var(--gold);
}

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

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-section h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--gold);
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid var(--tertiary);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

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

.footer-legal a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

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

/* ===== PAGE TEMPLATE STYLES ===== */

/* Page Hero (for inner pages) */
.page-hero {
    background: var(--primary);
    padding: 5rem 4%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

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

.page-hero .hero-badge {
    margin: 0 auto 1.5rem;
}

.page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

/* About Page Styles */
.about-content {
    padding: 5rem 4%;
    background: var(--white);
}

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

.about-container h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-container h2 span {
    color: var(--gold-dark);
}

.about-container p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 5rem 4%;
    background: var(--light);
}

.values-section h2 {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 3rem;
}

.values-section h2 span {
    color: var(--gold-dark);
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

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

.value-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 4%;
    background: var(--secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Reviews Page Styles */
.reviews-stats {
    padding: 3rem 4%;
    background: var(--gold);
}

.reviews-stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-stat {
    text-align: center;
    color: var(--primary);
}

.reviews-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.reviews-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.reviews-section {
    padding: 5rem 4%;
    background: var(--light);
}

.reviews-section h2 {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 3rem;
}

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

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--gold);
}

.review-stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.review-name {
    font-weight: 600;
    color: var(--primary);
}

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

/* Google Reviews Widget */
.google-reviews-widget {
    padding: 3rem;
    background: var(--light);
    margin: 0 auto;
    max-width: 1300px;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.google-widget-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.google-rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.google-rating-display .stars {
    color: #FBBC04;
    font-size: 1.5rem;
}

.google-rating-display .rating-value {
    font-weight: 600;
    color: var(--primary);
}

.google-rating-display .review-count {
    color: var(--text-light);
}

.google-widget-cta {
    margin-top: 1.5rem;
}

.google-widget-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.leave-review-note {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-page-content {
    padding: 5rem 4%;
    background: var(--white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-info-section h2 span {
    color: var(--gold-dark);
}

.business-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
}

.business-hours h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.contact-form-section {
    background: var(--light);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-section h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.roofr-embed {
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.roofr-embed iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Areas Served Grid */
.areas-served {
    padding: 5rem 4%;
    background: var(--light);
}

.areas-served h2 {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 3rem;
}

.areas-served h2 span {
    color: var(--gold-dark);
}

.areas-served-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.area-served-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-served-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.area-served-card a {
    color: var(--primary);
    font-weight: 600;
}

.area-served-card a:hover {
    color: var(--gold-dark);
}

/* Service Page Styles */
.service-page-content {
    padding: 5rem 4%;
    background: var(--white);
}

.service-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Content Section (template-service.php) */
.service-content {
    padding: 5rem 4%;
    background: var(--white);
}

.service-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .service-container {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        order: -1;
    }
}

.service-main-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-main-content h2 span {
    color: var(--gold-dark);
}

.service-main-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-main-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-main-content li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

/* Service Page Content Styles */
.service-main h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary);
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
}

.service-main h2:first-child {
    margin-top: 0;
}

.service-main p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-main ul {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-main ul li {
    background: var(--light);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.service-main ul li:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.service-main ul li strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

/* FAQ Styling within Service Pages */
.service-main h4 {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 0 0 0.5rem 0;
    border: 1px solid #eee;
    color: var(--primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: default;
    transition: all 0.3s ease;
}

.service-main h4:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-main h4 + p {
    background: var(--light);
    border-radius: 0 0 12px 12px;
    padding: 1.25rem 1.5rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    border-top: none;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Pricing highlight box */
.service-main p strong:only-child {
    display: block;
    background: var(--primary);
    color: var(--gold);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    margin: 1rem 0;
}

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

/* Service Features Grid */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    background: none;
    padding: 0;
    border: none;
}

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

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

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-cta {
    background: var(--primary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.sidebar-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Service List Sidebar */
.service-list {
    background: var(--light);
    border-radius: 16px;
    padding: 1.5rem;
}

.service-list h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

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

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

.service-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-list li a:hover {
    background: var(--gold);
    color: var(--primary);
}

.service-list li a span {
    font-weight: 600;
}

.service-nav {
    background: var(--light);
    border-radius: 16px;
    padding: 1.5rem;
}

.service-nav h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.service-nav-list {
    list-style: none;
}

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

.service-nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-nav-list a:hover {
    background: var(--gold);
    color: var(--primary);
}

/* Service Process Section */
.service-process {
    padding: 5rem 4%;
    background: var(--secondary);
}

.service-process h2 {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 3rem;
}

.service-process h2 span {
    color: var(--gold);
}

/* Location Page Styles */
.location-hero {
    background: var(--primary);
}

.location-content {
    padding: 5rem 4%;
    background: var(--white);
}

.location-container {
    max-width: 1100px;
    margin: 0 auto;
}

.location-container h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.location-container h2 span {
    color: var(--gold-dark);
}

.location-container > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-services {
    margin-top: 3rem;
}

.location-services .service-card {
    padding: 2rem;
    text-align: center;
}

.location-services .service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

/* CTA Banner (for inner pages) */
.cta-banner {
    padding: 4rem 4%;
    background: var(--gold);
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: var(--primary);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-banner .btn {
    background: var(--primary);
    color: var(--gold);
}

.cta-banner .btn:hover {
    background: var(--secondary);
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 4%;
    background: var(--light);
}

.why-choose-section h2 {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 3rem;
}

.why-choose-section h2 span {
    color: var(--gold-dark);
}

.why-choose-section .services-grid {
    max-width: 1100px;
}

.why-choose-section .service-card {
    padding: 2rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-image-side {
        min-height: 300px;
    }
    .hero-content-side {
        padding: 3rem 4%;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid,
    .areas-container {
        grid-template-columns: 1fr;
    }
    .trust-images {
        order: -1;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .values-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-page-grid,
    .service-page-grid {
        grid-template-columns: 1fr;
    }
    .areas-served-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .nav-links {
        display: none;
    }
    .services-grid,
    .values-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .trust-features,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    .bottom-cta-stats {
        gap: 2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .areas-served-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-stats-grid {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .areas-served-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DROPDOWN MENU STYLES ===== */
.nav-links li {
    position: relative;
}

.nav-links .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary);
    min-width: 220px;
    padding: 0.75rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 1px solid var(--tertiary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .dropdown li {
    margin: 0;
}

.nav-links .dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.nav-links .dropdown a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding-left: 1.75rem;
}

.nav-links .has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links .has-dropdown > a::after {
    content: '';
    border: solid rgba(255,255,255,0.6);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.nav-links li:hover.has-dropdown > a::after {
    transform: rotate(-135deg);
    border-color: var(--gold);
}

/* ===== SOLAR PAGE STYLES ===== */

/* Solar Page Hero */
.solar-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: left;
}

.solar-hero .page-hero-content {
    max-width: 650px;
    margin: 0;
    padding: 4rem 4%;
}

.solar-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: url('https://images.pexels.com/photos/9875441/pexels-photo-9875441.jpeg?w=1200') center/cover no-repeat;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.solar-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(10,10,10,0.3) 100%);
}

/* Solar Stats Banner */
.solar-stats-banner {
    background: var(--gold);
    padding: 3rem 4%;
}

.solar-stats-banner .stats-grid {
    background: transparent;
}

.solar-stats-banner .stat-number {
    color: var(--primary);
}

.solar-stats-banner .stat-label {
    color: var(--primary);
    opacity: 0.8;
}

/* Solar Services Overview */
.solar-services-overview {
    padding: 6rem 4%;
    background: var(--white);
}

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

.solar-service-card {
    background: var(--light);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.solar-service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.solar-service-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

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

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

.solar-service-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.solar-service-content {
    padding: 2.5rem;
}

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

.solar-service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.solar-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.solar-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Why Go Solar Section */
.why-solar {
    padding: 6rem 4%;
    background: var(--primary);
}

.why-solar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.why-solar-image {
    position: relative;
}

.why-solar-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    border: 3px solid var(--gold);
}

.savings-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.savings-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.savings-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.why-solar-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.why-solar-content h2 span {
    color: var(--gold);
}

.why-solar-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

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

/* Solar Process Timeline */
.solar-process-section {
    padding: 6rem 4%;
    background: var(--light);
}

.solar-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.solar-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Electrical Services Grid */
.electrical-services {
    padding: 6rem 4%;
    background: var(--secondary);
}

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

.electrical-card {
    background: var(--primary);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--tertiary);
    transition: all 0.4s ease;
    text-align: center;
}

.electrical-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.electrical-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.electrical-card h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 1rem;
}

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

/* Solar FAQ */
.solar-faq {
    padding: 6rem 4%;
    background: var(--light);
}

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

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Solar Contact Section */
.solar-contact {
    padding: 6rem 4%;
    background: var(--white);
}

.solar-contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.solar-contact .contact-info > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form-wrapper {
    background: var(--primary);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.solar-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.solar-quote-form .form-group {
    margin-bottom: 1rem;
}

.solar-quote-form input,
.solar-quote-form select,
.solar-quote-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--tertiary);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: var(--secondary);
    color: var(--white);
}

.solar-quote-form input::placeholder,
.solar-quote-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.solar-quote-form input:focus,
.solar-quote-form select:focus,
.solar-quote-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.solar-quote-form select {
    appearance: none;
    background: var(--secondary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E") no-repeat right 1rem center;
    background-size: 1rem;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
}

.solar-quote-form select option {
    background: var(--primary);
    color: var(--white);
}

.solar-quote-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Solar Page Responsive */
@media (max-width: 1024px) {
    .solar-bg {
        width: 40%;
    }

    .solar-services-grid {
        grid-template-columns: 1fr;
    }

    .why-solar-grid {
        grid-template-columns: 1fr;
    }

    .why-solar-image {
        order: -1;
    }

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

    .solar-contact .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .solar-bg {
        display: none;
    }

    .solar-hero {
        min-height: 60vh;
        text-align: center;
    }

    .solar-hero .page-hero-content {
        max-width: 100%;
    }

    .solar-hero .hero-cta {
        justify-content: center;
    }

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

    .solar-quote-form .form-row {
        grid-template-columns: 1fr;
    }

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

    .savings-badge {
        position: static;
        margin-top: 1.5rem;
    }

    /* Hide dropdown on mobile */
    .nav-links .dropdown {
        display: none;
    }
}
