/* Solar Bear Energy Ph - Modern Solar Company Website */
:root {
    --primary: #FF9800;
    --primary-dark: #F57C00;
    --primary-light: #FFE0B2;
    --secondary: #2196F3;
    --secondary-dark: #1976D2;
    --success: #4CAF50;
    --dark: #1a1a2e;
    --darker: #16162a;
    --light: #ffffff;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --gradient-primary: linear-gradient(135deg, #FF9800 0%, #FFC107 50%, #FF6F00 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.brand-icon {
    font-size: 1.75rem;
    color: var(--primary);
    animation: rotate 20s linear infinite;
}

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

.ph {
    color: var(--secondary);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.btn-nav {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 4px 15px rgba(245,158,11,0.4), 0 0 0 3px rgba(245,158,11,0.15);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(245,158,11,0.5), 0 0 0 4px rgba(245,158,11,0.2);
}

.btn-nav::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg {
        display: none !important; /* Video background replaces this */
    }

.sun-rays {
        display: none !important;
    }

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

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}


/* Hero CTA buttons - extra visibility */
.hero-cta .btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
    border: 2px solid rgba(255,255,255,0.95) !important;
    box-shadow: 
        0 6px 25px rgba(245,158,11,0.5),
        0 0 0 4px rgba(245,158,11,0.15),
        inset 0 1px 0 rgba(255,255,255,0.2) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 18px 36px !important;
}
.hero-cta .btn-primary:hover {
    box-shadow: 
        0 10px 35px rgba(245,158,11,0.65),
        0 0 0 6px rgba(245,158,11,0.25),
        inset 0 1px 0 rgba(255,255,255,0.3) !important;
    transform: translateY(-3px) scale(1.03);
}
.hero-cta .btn-secondary {
    background: rgba(255,255,255,0.15) !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(10px);
}
.hero-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.25) !important;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 4px 20px rgba(245,158,11,0.5), 0 0 0 4px rgba(245,158,11,0.2);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(245,158,11,0.6), 0 0 0 6px rgba(245,158,11,0.25);
    border-color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

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

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

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

.service-card.featured {
    border-color: var(--primary);
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.service-icon.residential {
    background: #e3f2fd;
    color: var(--secondary);
}

.service-icon.commercial {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.service-icon.industrial {
    background: #e8f5e9;
    color: var(--success);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--success);
    font-size: 0.875rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: white;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-content .section-title {
    text-align: left;
}

.benefits-content .section-subtitle {
    text-align: left;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.benefit-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.benefit-text p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Savings Calculator Preview */
.savings-calculator-preview {
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: white;
}

.savings-calculator-preview h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.calculator-preview-input {
    margin-bottom: 30px;
}

.calculator-preview-input label {
    display: block;
    margin-bottom: 12px;
    opacity: 0.8;
}

.range-display {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.range-display .currency {
    color: var(--primary);
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.4);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.875rem;
    opacity: 0.6;
}

.savings-result {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.saving-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.saving-item:last-child {
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.saving-item .label {
    opacity: 0.8;
}

.saving-item .value {
    font-size: 1.25rem;
    font-weight: 600;
}

.saving-item .value.highlight {
    color: var(--primary);
    font-size: 1.5rem;
}

.btn-full {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

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

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 auto 24px;
    box-shadow: var(--shadow);
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin-top: 50px;
    opacity: 0.3;
}

/* Calculator Section */
.calculator-section {
    padding: 120px 0;
    background: white;
}

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

.calculator-header {
    text-align: center;
    margin-bottom: 50px;
}

.calculator-form {
    background: var(--gray-light);
    padding: 50px;
    border-radius: var(--radius-lg);
}

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

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

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

.form-control {
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.calculator-form .btn-primary {
    width: 100%;
    justify-content: center;
}

.calc-results {
    margin-top: 40px;
    animation: fadeIn 0.5s ease;
}

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

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.result-card.highlight {
    border-color: var(--primary);
    background: var(--primary-light);
}

.result-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.result-value.highlight {
    color: var(--primary-dark);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--gradient-dark);
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info .section-tag {
    background: rgba(255, 152, 0, 0.2);
    color: var(--primary);
}

.contact-info .section-title {
    color: white;
    text-align: left;
}

.contact-info .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: rgba(255, 152, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}

.contact-method .label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 4px;
}

.contact-method a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-cta-card {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.contact-cta-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.contact-cta-card p {
    color: var(--gray);
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.cta-features i {
    color: var(--success);
}

/* Footer */
.footer {
    background: #0f0f1a;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 24px;
}

.certifications {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255, 152, 0, 0.2);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: white;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .benefits-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
        opacity: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .calculator-form {
        padding: 30px 20px;
    }
    
    .contact-cta-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .savings-calculator-preview {
        padding: 30px 20px;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .benefit-item,
    .step {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    
    .benefit-item:nth-child(1) { animation-delay: 0.1s; }
    .benefit-item:nth-child(2) { animation-delay: 0.2s; }
    .benefit-item:nth-child(3) { animation-delay: 0.3s; }
    .benefit-item:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Video background - overrides hero-bg */
.hero-video-bg {
    position: absolute !important;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
}
.hero-overlay {
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(3,8,18,0.20) 0%,
        rgba(3,8,18,0.35) 30%,
        rgba(3,8,18,0.60) 60%,
        rgba(3,8,18,0.88) 100%
    );
    z-index: 1;
}
.hero .hero-bg,
.hero .sun-rays {
    display: none !important;
}
.hero .container,
.hero-content {
    position: relative !important;
    z-index: 2 !important;
}
