/* ==========================================
   Volthouse Electric - Main Stylesheet
   Mobile-First Responsive Design
   ========================================== */

/* CSS Variables */
:root {
    --primary-dark: #1A1A1A;
    --accent-gold: #F7C331;
    --white: #FFFFFF;
    --secondary-dark: #4A4A4A;
    --light-grey: #E0E0E0;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --header-height: 70px;
    --container-width: 1200px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 8px 16px;
    z-index: 1000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--primary-dark);
    z-index: 100;
    transition: height var(--transition-medium), background var(--transition-medium);
}

.site-header.scrolled {
    height: 60px;
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo-link {
    display: block;
    z-index: 101;
}

.logo-image {
    width: 140px;
    height: auto;
    display: block;
}

.site-header.scrolled .logo-image {
    width: 120px;
}

/* Desktop Navigation */
.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-medium), left var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Header CTAs */
.header-ctas {
    display: none;
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 99;
    transition: right var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--white);
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    padding: 15px 0;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent-gold);
}

.mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* Desktop CTAs */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.primary-cta {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(247, 195, 49, 0.3);
}

.primary-cta:hover {
    background: #e0b12e;
    border-color: #e0b12e;
    color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(247, 195, 49, 0.4);
    transform: translateY(-2px);
}

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

.secondary-cta:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==========================================
   HERO SECTIONS
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-home {
    background: var(--primary-dark);
}

.hero-split {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(247, 195, 49, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(247, 195, 49, 0.05) 0%, transparent 40%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    width: 100%;
    padding: 40px 20px;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-headline {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(247, 195, 49, 0.3);
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--light-grey);
    margin-bottom: 25px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Hero Sections (About, Services, Testimonials, Contact) */
.hero-about,
.hero-services,
.hero-testimonials,
.hero-contact {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--primary-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg .hero-image {
    opacity: 0.4;
    filter: brightness(0.5);
}

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

/* ==========================================
   SECTIONS - COMMON STYLES
   ========================================== */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.section-subtext {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--secondary-dark);
}

/* Trust Badges Section */
.trust-badges {
    background: var(--light-grey);
    padding: 40px 0;
}

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

.trust-badge {
    height: 80px;
    width: auto;
    transition: transform var(--transition-medium), filter var(--transition-medium);
    filter: grayscale(20%);
}

.trust-badge:hover {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1);
}

/* Services Overview */
.services-overview {
    background: var(--primary-dark);
    padding: 80px 0;
}

.services-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-column {
    padding: 30px;
    background: rgba(74, 74, 74, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(247, 195, 49, 0.2);
}

.service-headline {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.service-description {
    color: var(--light-grey);
    margin-bottom: 20px;
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-icon {
    color: var(--accent-gold);
    font-size: 12px;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-gold);
    font-weight: 600;
    position: relative;
}

.service-link::after {
    content: ' →';
    transition: margin-left var(--transition-fast);
}

.service-link:hover::after {
    margin-left: 5px;
}

/* Why Volthouse */
.why-volthouse {
    position: relative;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.parallax-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.why-overlay {
    position: relative;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9));
    width: 100%;
    padding: 80px 0;
}

.why-volthouse .section-title {
    color: var(--white);
}

.value-props {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-prop {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(247, 195, 49, 0.2);
}

.value-icon {
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 15px;
}

.value-prop h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* Process Section */
.process {
    background: var(--light-grey);
    padding: 80px 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.process-line {
    display: none;
}

.process-step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-left: 20px;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gold);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--secondary-dark);
    font-size: 0.95rem;
}

/* Testimonials Showcase */
.testimonials-showcase {
    background: var(--primary-dark);
    padding: 80px 0;
}

.testimonials-showcase .section-title {
    color: var(--white);
}

.testimonial-carousel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: rgba(74, 74, 74, 0.3);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(247, 195, 49, 0.2);
}

.quote-mark {
    font-size: 60px;
    color: var(--accent-gold);
    line-height: 0.5;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--white);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

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

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

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-dark);
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.carousel-dot.active {
    background: var(--accent-gold);
}

/* CTA Form Section */
.cta-form {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 80px 0;
}

.cta-form .section-title {
    color: var(--white);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-content {
    text-align: center;
    margin-bottom: 30px;
}

.form-subtext {
    color: var(--light-grey);
}

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

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

.form-group label {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid transparent;
    border-bottom: 2px solid var(--secondary-dark);
    border-radius: 5px;
    background: var(--white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

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

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

.submit-btn {
    margin-top: 10px;
    width: 100%;
}

/* Safety Tips */
.safety-tips {
    background: var(--light-grey);
    padding: 80px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.tip-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.tip-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.tip-card p {
    color: var(--secondary-dark);
    font-size: 0.95rem;
}

/* Service Area */
.service-area {
    padding: 80px 0;
    background: var(--white);
}

.service-area .section-title {
    margin-bottom: 15px;
}

.service-area-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--secondary-dark);
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.city-tag {
    background: var(--light-grey);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.map-placeholder {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.map-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
}

.map-pin {
    font-size: 24px;
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.map-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--white);
    padding: 2px 8px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Final CTA */
.final-cta {
    background: var(--primary-dark);
    padding: 80px 0;
    text-align: center;
}

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

.final-subtext {
    color: var(--light-grey);
    margin-bottom: 30px;
}

.final-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */
.our-story {
    padding: 80px 0;
    background: var(--light-grey);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.story-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

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

.filament-glow {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
}

.filament-svg {
    width: 100%;
    height: 100%;
}

.filament-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawFilament 3s ease forwards;
}

@keyframes drawFilament {
    to { stroke-dashoffset: 0; }
}

.story-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.story-text {
    color: var(--secondary-dark);
    margin-bottom: 15px;
}

/* Our Values */
.our-values {
    background: var(--primary-dark);
    padding: 80px 0;
}

.our-values .section-title {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-card {
    background: rgba(74, 74, 74, 0.3);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(247, 195, 49, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.value-card .value-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* Team Glimpse */
.team-glimpse {
    background: var(--light-grey);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--secondary-dark);
    font-size: 0.95rem;
}

/* Testimonials Section (About Page) */
.testimonials-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonials-section .testimonial-card {
    background: rgba(74, 74, 74, 0.3);
}

/* CTA Section (About Page) */
.cta-section {
    background: var(--accent-gold);
    padding: 60px 0;
    text-align: center;
}

.cta-section .section-title {
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

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

.cta-section .secondary-cta {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

/* ==========================================
   SERVICES PAGE STYLES
   ========================================== */
.service-categories {
    background: var(--light-grey);
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.category-card p {
    color: var(--secondary-dark);
    margin-bottom: 25px;
}

/* Residential & Commercial Services */
.residential-services,
.commercial-services {
    padding: 80px 0;
}

.residential-services {
    background: var(--primary-dark);
}

.residential-services .section-title {
    color: var(--white);
}

.residential-services .section-subtext {
    color: var(--light-grey);
}

.commercial-services {
    background: var(--light-grey);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.service-card .service-icon {
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--secondary-dark);
    font-size: 0.95rem;
}

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

/* Emergency CTA */
.emergency-cta {
    background: var(--accent-gold);
    padding: 60px 0;
    text-align: center;
}

.emergency-cta .section-title {
    color: var(--primary-dark);
}

.emergency-subtext {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.emergency-btn {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* Client Gallery */
.client-gallery {
    background: var(--light-grey);
    padding: 80px 0;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 80px 0;
}

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

.faq-item {
    border-bottom: 1px solid var(--light-grey);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.faq-icon {
    font-size: 24px;
    color: var(--accent-gold);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

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

.faq-answer p {
    padding-bottom: 20px;
    color: var(--secondary-dark);
}

/* ==========================================
   TESTIMONIALS PAGE STYLES
   ========================================== */
.homeadvisor-trust {
    background: var(--light-grey);
    padding: 60px 0;
}

.trust-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--secondary-dark);
}

.trust-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Testimonial Grid */
.testimonial-grid {
    background: var(--primary-dark);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-grid .testimonial-card {
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid rgba(247, 195, 49, 0.2);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Video Testimonial CTA */
.video-testimonial-cta {
    background: var(--light-grey);
    padding: 80px 0;
}

.video-subtext {
    text-align: center;
    color: var(--secondary-dark);
    margin-bottom: 30px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    background: var(--primary-dark);
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-medium);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    transition: transform var(--transition-medium);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(247, 195, 49, 0.5);
}

.video-placeholder-text {
    color: var(--light-grey);
}

/* Final CTA (Testimonials) */
.final-cta-testimonials {
    background: var(--accent-gold);
    padding: 60px 0;
    text-align: center;
}

.final-cta-testimonials .section-title {
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.final-cta-testimonials .final-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-testimonials .primary-cta {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.final-cta-testimonials .secondary-cta {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-form-section {
    background: var(--light-grey);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper .section-title {
    text-align: left;
}

.contact-form-wrapper .form-subtext {
    text-align: left;
    color: var(--secondary-dark);
    margin-bottom: 25px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.direct-contact {
    background: var(--primary-dark);
    padding: 30px;
    border-radius: 10px;
}

.direct-contact h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

.contact-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-icon {
    font-size: 20px;
    color: var(--accent-gold);
}

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

.contact-label {
    font-size: 0.8rem;
    color: var(--light-grey);
    margin-bottom: 3px;
}

.contact-link {
    color: var(--white);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--accent-gold);
}

.contact-text {
    color: var(--white);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--light-grey);
    display: block;
    margin-top: 3px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-gold);
}

/* Service Area Section (Contact) */
.service-area-section {
    background: var(--white);
    padding: 80px 0;
}

/* Trust Badges Section (Contact) */
.trust-badges-section {
    background: var(--light-grey);
    padding: 60px 0;
}

.trust-badges-section .trust-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--primary-dark);
    padding: 60px 0 30px;
}

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

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--accent-gold);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-about {
    color: var(--light-grey);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: var(--light-grey);
    transition: color var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-badge {
    height: 50px;
    width: auto;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--light-grey);
    font-size: 0.85rem;
}

.light-switch {
    width: 40px;
    height: 20px;
    background: var(--secondary-dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: background var(--transition-fast);
}

.light-switch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform var(--transition-fast);
}

.light-switch.active {
    background: var(--accent-gold);
}

.light-switch.active::after {
    transform: translateX(20px);
}

/* Light mode toggle body */
body.light-mode {
    --primary-dark: #f5f5f5;
    --white: #1A1A1A;
    --light-grey: #e0e0e0;
    --secondary-dark: #4a4a4a;
}

body.light-mode .site-header,
body.light-mode .hero-content,
body.light-mode .hero-home,
body.light-mode .mobile-menu,
body.light-mode .why-volthouse,
body.light-mode .testimonials-showcase,
body.light-mode .cta-form,
body.light-mode .final-cta,
body.light-mode .our-values,
body.light-mode .testimonials-section,
body.light-mode .direct-contact,
body.light-mode .site-footer {
    background: var(--white);
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4 {
    color: var(--primary-dark);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.pulse-cta {
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(247, 195, 49, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(247, 195, 49, 0.6); }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Form focus animation */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    animation: borderExpand 0.3s ease forwards;
}

@keyframes borderExpand {
    from {
        border-bottom-width: 2px;
        border-bottom-color: var(--secondary-dark);
    }
    to {
        border-bottom-width: 3px;
        border-bottom-color: var(--accent-gold);
    }
}

/* ==========================================
   TABLET STYLES (min-width: 768px)
   ========================================== */
@media (min-width: 768px) {
    :root {
        --header-height: 80px;
    }

    /* Header */
    .main-nav {
        display: block;
    }

    .header-ctas {
        display: flex;
        gap: 15px;
    }

    .hamburger-menu {
        display: none;
    }

    .desktop-only {
        display: inline;
    }

    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    /* Hero Split */
    .hero-split {
        flex-direction: row;
    }

    .hero-visual {
        width: 50%;
        height: calc(100vh - var(--header-height));
    }

    .hero-content {
        width: 50%;
        padding: 60px 40px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: row;
    }

    /* About Hero */
    .hero-about,
    .hero-services,
    .hero-testimonials,
    .hero-contact {
        min-height: 50vh;
    }

    /* Services Overview */
    .services-split {
        flex-direction: row;
    }

    .service-column {
        flex: 1;
    }

    /* Value Props */
    .value-props {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process Timeline */
    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .process-step {
        width: 45%;
    }

    /* Testimonials Carousel */
    .testimonial-carousel {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    /* Tips Grid */
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Form */
    .contact-form {
        max-width: 100%;
    }

    /* About Page */
    .story-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

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

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

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

    /* Services Page */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    /* Testimonials Page */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
    }

    .final-actions,
    .final-cta-testimonials .final-actions {
        flex-direction: row;
    }
}

/* ==========================================
   DESKTOP STYLES (min-width: 1024px)
   ========================================== */
@media (min-width: 1024px) {
    /* Typography */
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }

    /* Header */
    :root {
        --header-height: 90px;
    }

    .site-header.scrolled {
        height: 70px;
    }

    .logo-image {
        width: 180px;
    }

    .nav-list {
        gap: 40px;
    }

    .nav-link {
        font-size: 15px;
    }

    /* Sections */
    section {
        padding: 100px 0;
    }

    /* Hero */
    .hero-headline {
        font-size: 3rem;
    }

    .hero-subtext {
        font-size: 1.25rem;
    }

    /* Trust Badges */
    .trust-badge {
        height: 100px;
    }

    /* Services */
    .services-split {
        gap: 60px;
    }

    .service-column {
        padding: 40px;
    }

    /* Why Volthouse */
    .value-props {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Process */
    .process-timeline {
        position: relative;
        padding: 20px 0;
    }

    .process-line {
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--light-grey);
        transform: translateX(-50%);
    }

    .process-step {
        width: 45%;
    }

    .process-step:nth-child(odd) {
        align-self: flex-start;
    }

    .process-step:nth-child(even) {
        align-self: flex-end;
        flex-direction: row-reverse;
        text-align: right;
        padding-right: 20px;
        padding-left: 0;
    }

    .process-step:nth-child(even)::before {
        left: auto;
        right: -21px;
    }

    /* Testimonials */
    .testimonial-carousel {
        gap: 40px;
    }

    /* Tips Grid */
    .tips-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* CTA Form */
    .form-wrapper {
        max-width: 700px;
    }

    /* About Page */
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Team Grid */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services Grid */
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .footer-badges {
        justify-content: center;
    }

    /* Contact Form */
    .contact-form-wrapper {
        padding: 40px;
    }

    /* CTA Buttons */
    .hero-actions .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* ==========================================
   LARGE DESKTOP (min-width: 1280px)
   ========================================== */
@media (min-width: 1280px) {
    .container {
        padding: 0 40px;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    .value-props {
        gap: 40px;
    }

    .process-timeline {
        gap: 0;
    }
}