/* ============================================
   LAMBERTSEN ELEKTRO - Premium Electric Design
   "Power with Purpose" - Technical precision meets human warmth
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Primary Palette */
    --electric-navy: #1E3A5F;
    --electric-navy-dark: #152a45;
    --electrical-gold: #F7B731;
    --electrical-gold-light: #ffc94d;
    --green-energy: #00B894;
    --green-energy-dark: #00967a;
    --deep-midnight: #0D1B2A;
    --clean-white: #F8F9FA;
    --technical-gray: #6C757D;
    --light-gray: #E9ECEF;
    --medium-gray: #ADB5BD;

    /* Extended Palette */
    --circuit-blue: #3498db;
    --spark-orange: #FF6B35;
    --warning-red: #E74C3C;
    --success-green: #27AE60;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--electric-navy) 0%, var(--deep-midnight) 100%);
    --gradient-gold: linear-gradient(135deg, var(--electrical-gold) 0%, #e6a52a 100%);
    --gradient-energy: linear-gradient(135deg, var(--green-energy) 0%, #009b78 100%);
    --gradient-hero: linear-gradient(180deg, var(--deep-midnight) 0%, var(--electric-navy) 50%, #234b7a 100%);
    --gradient-circuit: linear-gradient(90deg, transparent 0%, rgba(247, 183, 49, 0.1) 50%, transparent 100%);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.18);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
    --shadow-gold: 0 4px 20px rgba(247, 183, 49, 0.3);
    --shadow-navy: 0 8px 30px rgba(30, 58, 95, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 900px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--deep-midnight);
    background-color: var(--clean-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-midnight);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
}

.text-accent {
    color: var(--electrical-gold);
}

.text-green {
    color: var(--green-energy);
}

.text-navy {
    color: var(--electric-navy);
}

/* ============================================
   CIRCUIT BOARD BACKGROUND PATTERN
   ============================================ */
.circuit-bg {
    position: relative;
    overflow: hidden;
}

.circuit-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(247, 183, 49, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(247, 183, 49, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.circuit-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--electrical-gold);
    border-radius: 50%;
    opacity: 0.2;
}

.circuit-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--electrical-gold);
    border-radius: 50%;
    animation: pulse-node 3s ease-in-out infinite;
}

@keyframes pulse-node {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
    z-index: 1000;
    transition: var(--transition-base);
}

.header--scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.logo__icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo__icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(247, 183, 49, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.logo__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--electrical-gold);
    position: relative;
    z-index: 1;
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--electric-navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.logo__tagline {
    font-size: 0.7rem;
    color: var(--technical-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__list {
    display: flex;
    gap: var(--space-lg);
}

.nav__link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--electric-navy);
    padding: var(--space-sm) 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electrical-gold);
    transition: var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--electric-navy-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.menu-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--electric-navy);
    border-radius: 2px;
    transition: var(--transition-base);
}

.menu-toggle--active .menu-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle--active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle--active .menu-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--electrical-gold);
    color: var(--deep-midnight);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    background: var(--electrical-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(247, 183, 49, 0.4);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--secondary {
    background: var(--electric-navy);
    color: white;
    box-shadow: var(--shadow-navy);
}

.btn--secondary:hover {
    background: var(--electric-navy-dark);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--electric-navy);
    border: 2px solid var(--electric-navy);
}

.btn--outline:hover {
    background: var(--electric-navy);
    color: white;
}

.btn--outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
    background: white;
    color: var(--electric-navy);
    border-color: white;
}

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

.btn--green:hover {
    background: var(--green-energy-dark);
    transform: translateY(-2px);
}

.btn--lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.05rem;
}

.btn--sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
}

.btn__icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

.btn:hover .btn__icon {
    transform: translateX(3px);
}

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

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(30%);
}

.hero__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.92;
}

/* Animated Circuit Lines */
.hero__circuits {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--electrical-gold), transparent);
    opacity: 0.1;
}

.circuit-line--h {
    height: 1px;
    width: 200px;
    animation: flow-h 8s linear infinite;
}

.circuit-line--v {
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--electrical-gold), transparent);
    animation: flow-v 8s linear infinite;
}

@keyframes flow-h {
    0% { transform: translateX(-200px); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateX(100vw); opacity: 0; }
}

@keyframes flow-v {
    0% { transform: translateY(-200px); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Energy Particles */
.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--electrical-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px); opacity: 0.6; }
    50% { transform: translateY(-10px) translateX(-10px); opacity: 0.4; }
    75% { transform: translateY(-40px) translateX(30px); opacity: 0.7; }
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(247, 183, 49, 0.15);
    border: 1px solid rgba(247, 183, 49, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--electrical-gold);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease forwards;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--electrical-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--space-lg);
    color: white;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero__title-highlight {
    color: var(--electrical-gold);
    position: relative;
    display: inline-block;
}

.hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: var(--electrical-gold);
    opacity: 0.3;
    transform: skewX(-10deg);
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero__stat {
    text-align: left;
}

.hero__stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--electrical-gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--electrical-gold), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================
   SERVICES QUICK GRID
   ============================================ */
.services-quick {
    padding: var(--space-5xl) 0;
    background: var(--clean-white);
    position: relative;
}

.services-quick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--deep-midnight) 0%, transparent 100%);
    opacity: 0.03;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--electrical-gold);
    margin-bottom: var(--space-md);
}

.section-label__line {
    width: 30px;
    height: 2px;
    background: var(--electrical-gold);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    color: var(--technical-gray);
    font-size: 1.1rem;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--electrical-gold);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(30, 58, 95, 0.02) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: var(--transition-base);
}

.service-card:hover .service-card__icon {
    background: var(--electric-navy);
}

.service-card__icon svg {
    width: 36px;
    height: 36px;
    fill: var(--electric-navy);
    transition: var(--transition-base);
}

.service-card:hover .service-card__icon svg {
    fill: var(--electrical-gold);
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--deep-midnight);
}

.service-card__desc {
    color: var(--technical-gray);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--electric-navy);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: var(--transition-base);
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: var(--space-5xl) 0;
    background: var(--deep-midnight);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(247, 183, 49, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 184, 148, 0.1) 0%, transparent 50%);
}

.why-us__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us__content .section-label {
    color: var(--electrical-gold);
}

.why-us__content .section-title {
    color: white;
    margin-bottom: var(--space-lg);
}

.why-us__content .section-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-2xl);
}

.why-us__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(247, 183, 49, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--electrical-gold);
}

.feature-item__title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: white;
}

.feature-item__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Image Grid */
.why-us__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.why-us__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.why-us__image:first-child {
    grid-row: span 2;
}

.why-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.why-us__image:hover img {
    transform: scale(1.05);
}

.why-us__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 42, 0.5) 100%);
}

/* ============================================
   SERVICE AREA
   ============================================ */
.service-area {
    padding: var(--space-5xl) 0;
    background: var(--clean-white);
}

.service-area__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.service-area__map {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.service-area__map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.service-area__map-overlay {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.service-area__address {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.service-area__address-icon {
    width: 40px;
    height: 40px;
    background: var(--electrical-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-area__address-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--deep-midnight);
}

.service-area__address-text h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.service-area__address-text p {
    font-size: 0.9rem;
    color: var(--technical-gray);
    margin: 0;
}

.service-area__content {
    padding-left: var(--space-2xl);
}

.area-list {
    margin-top: var(--space-2xl);
}

.area-list__title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--electric-navy);
    margin-bottom: var(--space-md);
}

.area-list__items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(30, 58, 95, 0.08);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--electric-navy);
    transition: var(--transition-base);
}

.area-tag:hover {
    background: var(--electric-navy);
    color: white;
}

.area-tag--primary {
    background: var(--electrical-gold);
    color: var(--deep-midnight);
}

.area-tag--primary:hover {
    background: var(--electrical-gold-light);
}

/* ============================================
   TRUST SIGNALS / CERTIFICATIONS
   ============================================ */
.trust {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--clean-white) 0%, white 100%);
    border-top: 1px solid var(--light-gray);
}

.trust__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
}

.trust__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    opacity: 0.7;
    transition: var(--transition-base);
}

.trust__item:hover {
    opacity: 1;
}

.trust__icon {
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--electric-navy);
}

.trust__text {
    text-align: left;
}

.trust__title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--deep-midnight);
}

.trust__desc {
    font-size: 0.8rem;
    color: var(--technical-gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: var(--space-5xl) 0;
    background: var(--electric-navy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 183, 49, 0.1) 0%, transparent 60%);
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.cta__content {
    max-width: 600px;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: white;
    margin-bottom: var(--space-md);
}

.cta__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.cta__actions {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--deep-midnight);
    color: white;
    padding: var(--space-5xl) 0 var(--space-2xl);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand .logo__name {
    color: white;
}

.footer__brand .logo__tagline {
    color: rgba(255,255,255,0.5);
}

.footer__brand-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-top: var(--space-lg);
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.footer__social-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer__social-link:hover {
    background: var(--electrical-gold);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: var(--transition-base);
}

.footer__social-link:hover svg {
    fill: var(--deep-midnight);
}

.footer__column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__link {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer__link:hover {
    color: var(--electrical-gold);
    transform: translateX(4px);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer__contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(247, 183, 49, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__contact-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--electrical-gold);
}

.footer__contact-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer__contact-text strong {
    color: white;
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer__legal a:hover {
    color: var(--electrical-gold);
}

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */
.page-hero {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(247, 183, 49, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(247, 183, 49, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-lg);
}

.page-hero__breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.page-hero__breadcrumb a:hover {
    color: var(--electrical-gold);
}

.page-hero__breadcrumb span {
    color: var(--electrical-gold);
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-md);
}

.page-hero__desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
    padding: var(--space-5xl) 0;
}

.services-category {
    margin-bottom: var(--space-5xl);
}

.services-category:last-child {
    margin-bottom: 0;
}

.services-category__header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.services-category__icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-category__icon svg {
    width: 32px;
    height: 32px;
    fill: var(--electrical-gold);
}

.services-category__title {
    font-size: 1.75rem;
    color: var(--deep-midnight);
    margin-bottom: var(--space-xs);
}

.services-category__desc {
    color: var(--technical-gray);
    margin: 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-item {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--light-gray);
    transition: var(--transition-base);
}

.service-item:hover {
    border-color: var(--electrical-gold);
    box-shadow: var(--shadow-md);
}

.service-item__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.service-item__icon {
    width: 44px;
    height: 44px;
    background: rgba(30, 58, 95, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item__icon svg {
    width: 22px;
    height: 22px;
    fill: var(--electric-navy);
}

.service-item__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-midnight);
}

.service-item__desc {
    color: var(--technical-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.service-item__price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--green-energy);
    font-weight: 500;
}

.service-item__price svg {
    width: 16px;
    height: 16px;
    fill: var(--green-energy);
}

/* ============================================
   EV CHARGING PAGE
   ============================================ */
.ev-intro {
    padding: var(--space-5xl) 0;
    background: white;
}

.ev-intro__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.ev-intro__image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.ev-intro__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.ev-intro__content {
    padding-right: var(--space-2xl);
}

.ev-benefits {
    margin-top: var(--space-2xl);
}

.ev-benefit {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.ev-benefit__icon {
    width: 28px;
    height: 28px;
    background: var(--green-energy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ev-benefit__icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.ev-benefit__text {
    font-size: 1rem;
    color: var(--deep-midnight);
}

/* EV Charger Types */
.ev-chargers {
    padding: var(--space-5xl) 0;
    background: var(--clean-white);
}

.charger-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.charger-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 2px solid var(--light-gray);
    transition: var(--transition-base);
    position: relative;
}

.charger-card--featured {
    border-color: var(--electrical-gold);
}

.charger-card--featured::before {
    content: 'Populær';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--electrical-gold);
    color: var(--deep-midnight);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.charger-card__brand {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--technical-gray);
    margin-bottom: var(--space-sm);
}

.charger-card__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-midnight);
    margin-bottom: var(--space-md);
}

.charger-card__specs {
    margin-bottom: var(--space-lg);
}

.charger-spec {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9rem;
}

.charger-spec:last-child {
    border-bottom: none;
}

.charger-spec__label {
    color: var(--technical-gray);
}

.charger-spec__value {
    font-weight: 600;
    color: var(--deep-midnight);
}

.charger-card__features {
    margin-bottom: var(--space-xl);
}

.charger-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--deep-midnight);
    margin-bottom: var(--space-sm);
}

.charger-feature svg {
    width: 16px;
    height: 16px;
    fill: var(--green-energy);
}

/* EV Process */
.ev-process {
    padding: var(--space-5xl) 0;
    background: var(--deep-midnight);
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--electrical-gold), transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-step__number {
    width: 70px;
    height: 70px;
    background: rgba(247, 183, 49, 0.1);
    border: 2px solid var(--electrical-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--electrical-gold);
}

.process-step__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: white;
}

.process-step__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Enova Support */
.enova-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--green-energy) 0%, #009b78 100%);
    color: white;
}

.enova-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.enova-section__content .section-label {
    color: rgba(255,255,255,0.8);
}

.enova-section__content .section-title {
    color: white;
}

.enova-amount {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
}

.enova-amount__value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
}

.enova-amount__label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.enova-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.enova-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

.enova-feature svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
    padding: var(--space-5xl) 0;
}

.about-intro__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-intro__image {
    position: relative;
}

.about-intro__image-main {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-intro__image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.about-intro__image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--electrical-gold);
    color: var(--deep-midnight);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-intro__image-badge-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-intro__image-badge-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Values */
.values-section {
    padding: var(--space-5xl) 0;
    background: var(--clean-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--electrical-gold);
}

.value-card__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.value-card__icon svg {
    width: 40px;
    height: 40px;
    fill: var(--electrical-gold);
}

.value-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--deep-midnight);
}

.value-card__desc {
    color: var(--technical-gray);
    line-height: 1.6;
}

/* Certifications */
.certifications {
    padding: var(--space-5xl) 0;
    background: var(--deep-midnight);
    color: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.cert-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-base);
}

.cert-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--electrical-gold);
}

.cert-item__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
}

.cert-item__icon svg {
    width: 100%;
    height: 100%;
    fill: var(--electrical-gold);
}

.cert-item__title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: white;
}

.cert-item__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   PROJECTS PAGE
   ============================================ */
.projects-section {
    padding: var(--space-5xl) 0;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    background: transparent;
    color: var(--technical-gray);
    border: 1px solid var(--light-gray);
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn--active {
    background: var(--electric-navy);
    color: white;
    border-color: var(--electric-navy);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.project-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-card__image img {
    transform: scale(1.1);
}

.project-card__category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--electrical-gold);
    color: var(--deep-midnight);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.project-card__content {
    padding: var(--space-xl);
}

.project-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--deep-midnight);
}

.project-card__location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--technical-gray);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.project-card__location svg {
    width: 14px;
    height: 14px;
    fill: var(--technical-gray);
}

.project-card__desc {
    color: var(--technical-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: var(--space-5xl) 0;
}

.contact-section__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
}

.contact-info {
    padding-right: var(--space-2xl);
}

.contact-info__title {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.contact-info__desc {
    color: var(--technical-gray);
    margin-bottom: var(--space-2xl);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--clean-white);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.contact-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    background: var(--electric-navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--electrical-gold);
}

.contact-card__title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--technical-gray);
    margin-bottom: var(--space-xs);
}

.contact-card__value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-midnight);
}

.contact-card__value a:hover {
    color: var(--electric-navy);
}

.contact-card__note {
    font-size: 0.85rem;
    color: var(--technical-gray);
    margin-top: var(--space-xs);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

.contact-form__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.contact-form__subtitle {
    color: var(--technical-gray);
    margin-bottom: var(--space-2xl);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group--full {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--deep-midnight);
    margin-bottom: var(--space-sm);
}

.form-label span {
    color: var(--warning-red);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-base);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--electric-navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--electric-navy);
}

.form-checkbox span {
    font-size: 0.95rem;
    color: var(--deep-midnight);
}

.form-submit {
    margin-top: var(--space-lg);
}

.form-note {
    font-size: 0.85rem;
    color: var(--technical-gray);
    margin-top: var(--space-md);
}

/* Contact Map */
.contact-map {
    padding: var(--space-5xl) 0;
    background: var(--clean-white);
}

.contact-map__wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-map__wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-5xl) 0;
    background: white;
}

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

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: var(--transition-base);
}

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

.faq-item--active {
    border-color: var(--electric-navy);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-midnight);
    background: white;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--clean-white);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--electric-navy);
    transition: var(--transition-base);
}

.faq-icon::before {
    width: 2px;
    height: 14px;
    top: 5px;
    left: 11px;
}

.faq-icon::after {
    width: 14px;
    height: 2px;
    top: 11px;
    left: 5px;
}

.faq-item--active .faq-icon::before {
    transform: rotate(90deg);
    opacity: 0;
}

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

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

.faq-answer__content {
    padding: 0 var(--space-xl) var(--space-xl);
    color: var(--technical-gray);
    line-height: 1.7;
}

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

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

@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: calc(var(--header-height) + var(--space-2xl)) var(--space-xl) var(--space-2xl);
        box-shadow: var(--shadow-xl);
        transition: var(--transition-base);
        z-index: 1000;
    }

    .nav--active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        width: 100%;
    }

    .nav__link {
        padding: var(--space-md);
        font-size: 1.1rem;
        border-bottom: 1px solid var(--light-gray);
    }

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

    .menu-toggle {
        display: flex;
    }

    .why-us__inner,
    .service-area__inner,
    .ev-intro__inner,
    .enova-section__inner,
    .about-intro__inner,
    .contact-section__inner {
        grid-template-columns: 1fr;
    }

    .why-us__images {
        order: -1;
    }

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

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

    .process-step::after {
        display: none;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .services-grid,
    .services-list,
    .charger-grid,
    .values-grid,
    .projects-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

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

    .cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .trust__inner {
        flex-direction: column;
        gap: var(--space-xl);
    }

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

    .form-group--full {
        grid-column: span 1;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .logo__text {
        display: none;
    }

    .area-list__items {
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL (JavaScript Enhancement)
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================================
   LOADING STATES
   ============================================ */
.btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn--loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Success/Error States */
.form-message {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    display: none;
}

.form-message--success {
    display: block;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid var(--success-green);
    color: var(--success-green);
}

.form-message--error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--warning-red);
    color: var(--warning-red);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .footer,
    .cta,
    .hero__scroll {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }

    body {
        font-size: 12pt;
    }
}
