/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ServLar Brand Colors - Primary Green */
    --servlar-green: #2E7D32;
    --servlar-green-light: #4CAF50;
    --servlar-green-dark: #1B5E20;
    --servlar-gradient: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);

    /* ServLar Brand Colors - Accent Orange (Sun) */
    --servlar-orange: #FF6D00;
    --servlar-orange-light: #FF8C00;
    --servlar-orange-dark: #E65100;
    --orange-gradient: linear-gradient(135deg, #FF8C00 0%, #FF6D00 100%);

    /* ServLar Brand Colors - Blue (Panels/AC) */
    --servlar-blue: #1976D2;
    --servlar-blue-light: #2196F3;
    --servlar-blue-dark: #0D47A1;
    --blue-gradient: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);

    /* Mapped Colors for compatibility */
    --solar-orange: var(--servlar-orange);
    --solar-orange-dark: var(--servlar-orange-dark);
    --solar-yellow: var(--servlar-orange-light);
    --solar-gradient: var(--orange-gradient);

    --eco-green: var(--servlar-green-light);
    --eco-green-dark: var(--servlar-green);
    --eco-gradient: var(--servlar-gradient);

    --cool-blue: var(--servlar-blue-light);
    --cool-blue-dark: var(--servlar-blue);
    --cool-gradient: var(--blue-gradient);

    /* Neutral Colors */
    --dark: #1A1A2E;
    --dark-light: #16213E;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --light: #F8FAFC;
    --white: #FFFFFF;

    /* Status Colors */
    --success: #2E7D32;
    --warning: #FF6D00;
    --error: #D32F2F;

    /* Special Colors */
    --purple: #7B1FA2;
    --red: #D32F2F;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow-green: 0 0 40px rgba(46, 125, 50, 0.3);
    --shadow-glow-orange: 0 0 40px rgba(255, 109, 0, 0.3);
    --shadow-glow: var(--shadow-glow-green);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Z-index */
    --z-header: 1000;
    --z-modal: 1100;
    --z-tooltip: 1200;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn ion-icon {
    font-size: 1.25em;
}

.btn-primary {
    background: var(--servlar-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-green);
}

.btn-secondary {
    background: var(--orange-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
}

.btn-outline {
    background: transparent;
    color: var(--servlar-green);
    border: 2px solid var(--servlar-green);
}

.btn-outline:hover {
    background: var(--servlar-green);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-base);
}

.btn-block {
    width: 100%;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: var(--shadow-md), 0 0 20px rgba(46, 125, 50, 0.2);
    }

    to {
        box-shadow: var(--shadow-lg), 0 0 30px rgba(46, 125, 50, 0.4);
    }
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    color: var(--servlar-green);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-500);
}

.text-gradient {
    background: var(--servlar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #4CAF50 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: var(--space-4) 0;
    background: transparent;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: var(--space-3) 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xl);
    font-weight: 800;
}

.logo-icon {
    font-size: 1.5em;
}

.logo-text {
    color: var(--white);
    transition: color var(--transition-base);
}

.header.scrolled .logo-text {
    color: var(--dark);
}

.logo-highlight {
    color: var(--servlar-green);
}

/* Logo Image Styles */
.logo-img {
    height: 50px;
    width: auto;
    transition: all var(--transition-base);
}

.header.scrolled .logo-img {
    height: 45px;
}

/* About Logo Styles */
.about-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--space-8);
}

.about-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Footer Logo Styles */
.footer-logo-img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}

.footer-logo-img:hover {
    opacity: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    transition: color var(--transition-fast);
}

.header.scrolled .nav-link {
    color: var(--gray-600);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--servlar-gradient);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--servlar-green-light);
}

.header-cta {
    padding: var(--space-2) var(--space-4);
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.header.scrolled .hamburger,
.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after {
    background: var(--dark);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 4px;
}

.hamburger::before {
    top: 8px;
}

.hamburger::after {
    bottom: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 15px;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 15px;
    transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-24) 0 var(--space-16);
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 109, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.1) 0%, transparent 40%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    font-size: var(--font-size-xs);
    font-weight: 500;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.badge ion-icon {
    color: var(--eco-green);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-title .highlight {
    color: var(--solar-yellow);
    text-shadow: 0 0 30px rgba(255, 194, 51, 0.5);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-400);
    margin-bottom: var(--space-8);
}

.hero-subtitle strong {
    color: var(--solar-yellow);
}

/* Quick Calculator */
.hero-quick-calc {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-8);
}

.quick-calc-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.quick-calc-label ion-icon {
    color: var(--servlar-orange);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 109, 0, 0.6));
}

.quick-calc-form {
    display: flex;
    gap: var(--space-3);
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.input-prefix {
    padding: 0 var(--space-4);
    color: var(--servlar-orange);
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.input-group input {
    flex: 1;
    padding: var(--space-4);
    border: none;
    background: transparent;
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.input-group input::placeholder {
    color: var(--gray-500);
    font-weight: 400;
}

.input-group input:focus {
    outline: none;
}

.quick-calc-result {
    margin-top: var(--space-4);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--eco-gradient);
    border-radius: var(--radius-lg);
}

.result-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

.result-value {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--white);
}

.result-period {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-8);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--servlar-orange);
    text-shadow: 0 0 20px rgba(255, 109, 0, 0.5);
}

.stat-plus,
.stat-percent {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--servlar-orange-light);
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
}

.stat-label {
    display: block;
    font-size: var(--font-size-sm);
    color: #0D47A1;
    margin-top: var(--space-2);
    font-weight: 600;
    text-shadow: none;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.solar-panel-animation {
    position: relative;
    width: 400px;
    height: 400px;
}

.sun-rays {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 194, 51, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    transform: perspective(500px) rotateX(15deg) rotateY(-15deg);
}

.panel {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.panel::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* ===== SERVICES ===== */
.services {
    padding: var(--space-20) 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    grid-row: span 2;
    background: var(--solar-gradient);
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card.featured .service-title,
.service-card.featured .service-description {
    color: var(--white);
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-features ion-icon {
    color: var(--white);
}

.service-card.featured .btn {
    background: var(--white);
    color: var(--servlar-green);
}

.service-card.featured .btn:hover {
    background: var(--gray-100);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    color: var(--servlar-green);
    font-size: 1.75rem;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
}

.service-icon.blue {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    color: var(--cool-blue);
}

.service-icon.yellow {
    background: linear-gradient(135deg, rgba(255, 194, 51, 0.1) 0%, rgba(255, 159, 0, 0.1) 100%);
    color: var(--solar-yellow);
}

.service-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    color: var(--purple);
}

.service-icon.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: var(--red);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-3);
}

.service-description {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-bottom: var(--space-5);
}

.service-features {
    margin-bottom: var(--space-6);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-bottom: var(--space-2);
}

.service-features ion-icon {
    color: var(--eco-green);
}

/* ===== CALCULATOR ===== */
.calculator {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    position: relative;
    overflow: hidden;
}

.calculator::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 109, 0, 0.15) 0%, transparent 50%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
    align-items: start;
    position: relative;
    z-index: 1;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
}

.calculator-form label {
    display: block;
    color: var(--gray-300);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--space-4);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-2);
}

.slider-container input[type="range"] {
    flex: 1;
    appearance: none;
    -webkit-appearance: none;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    outline: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--servlar-gradient);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-fast);
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-value {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2) var(--space-3);
    min-width: 120px;
}

.slider-value .currency {
    color: var(--gray-400);
    font-weight: 600;
}

.slider-value input {
    width: 80px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-align: right;
}

.slider-value input:focus {
    outline: none;
}

.slider-range {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    margin-bottom: var(--space-8);
}

.calculator-results {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-2xl);
}

.results-title {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-6);
}

.results-title ion-icon {
    color: var(--solar-orange);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.result-item.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 194, 51, 0.1) 100%);
}

.result-item .result-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--solar-orange);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.result-item .result-info {
    display: flex;
    flex-direction: column;
}

.result-item .result-label {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    margin-bottom: var(--space-1);
}

.result-item .result-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--dark);
}

.results-cta {
    text-align: center;
    margin-bottom: var(--space-6);
}

.cta-note {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-top: var(--space-3);
}

.results-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.benefit {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.benefit ion-icon {
    color: var(--eco-green);
    font-size: 1.25rem;
}

/* ===== PRODUCTS ===== */
.products {
    padding: var(--space-20) 0;
    background: var(--white);
}

.products-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
}

.filter-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
}

/* Brand Badges */
.product-badge.samsung {
    background: linear-gradient(135deg, #1428a0 0%, #0b1c7a 100%);
}

.product-badge.lg {
    background: linear-gradient(135deg, #a50034 0%, #7d0027 100%);
}

.product-badge.daikin {
    background: linear-gradient(135deg, #0097e0 0%, #007bb8 100%);
}

.product-badge.midea {
    background: linear-gradient(135deg, #0099dc 0%, #007bb8 100%);
}

.product-badge.gree {
    background: linear-gradient(135deg, #00aa47 0%, #008738 100%);
}

.product-badge.elgin {
    background: linear-gradient(135deg, #005eb8 0%, #00498d 100%);
}

.product-badge.fujitsu {
    background: linear-gradient(135deg, #de0000 0%, #b00000 100%);
}

.filter-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--cool-gradient);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--solar-gradient);
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    z-index: 1;
}

.product-badge.eco {
    background: var(--eco-gradient);
}

.product-badge.premium {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.product-badge.budget {
    background: var(--cool-gradient);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.product-placeholder-icon {
    font-size: 4rem;
    color: var(--cool-blue);
    opacity: 0.5;
}

.product-info {
    padding: var(--space-6);
}

.product-name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.product-specs {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-bottom: var(--space-4);
}

.product-price {
    margin-bottom: var(--space-5);
}

.price-from {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

.price-value {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--dark);
}

.price-note {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

.products-cta {
    text-align: center;
    margin-top: var(--space-10);
}

.products-cta p {
    color: var(--gray-500);
    margin-bottom: var(--space-4);
}

/* ===== ABOUT ===== */
.about {
    padding: var(--space-20) 0;
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-text .section-tag {
    margin-bottom: var(--space-4);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: var(--space-6);
}

.about-description {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.about-description strong {
    color: var(--solar-orange);
}

.about-values {
    margin-top: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.value {
    display: flex;
    gap: var(--space-4);
}

.value ion-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--solar-gradient);
    color: var(--white);
    font-size: 1.5rem;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.value h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-1);
}

.value p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.about-image {
    position: relative;
}

.image-wrapper {
    aspect-ratio: 4/3;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: var(--white);
}

.image-placeholder ion-icon {
    font-size: 5rem;
    opacity: 0.5;
    margin-bottom: var(--space-4);
}

.image-placeholder span {
    font-size: var(--font-size-lg);
    font-weight: 600;
    opacity: 0.7;
}

.floating-card {
    position: absolute;
    bottom: -var(--space-8);
    left: -var(--space-8);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
}

.floating-card .card-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    background: var(--solar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card .card-text {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--space-20) 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.testimonial-rating ion-icon {
    color: var(--solar-yellow);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--solar-gradient);
    color: var(--white);
    font-size: 1.5rem;
    border-radius: 50%;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--dark);
}

.author-location {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* ===== FAQ ===== */
.faq {
    padding: var(--space-20) 0;
    background: var(--light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--solar-orange);
}

.faq-question ion-icon {
    font-size: 1.25rem;
    color: var(--gray-400);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question ion-icon {
    transform: rotate(180deg);
    color: var(--solar-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--space-20) 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.contact-info .section-tag {
    margin-bottom: var(--space-4);
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: var(--space-6);
}

.contact-description {
    color: var(--gray-600);
    margin-bottom: var(--space-8);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--white);
}

.method-icon.whatsapp {
    background: #25D366;
}

.method-icon.phone {
    background: var(--solar-gradient);
}

.method-icon.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
}

.method-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.method-value {
    font-weight: 600;
    color: var(--dark);
}

.contact-hours {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 194, 51, 0.1) 100%);
    border-radius: var(--radius-lg);
}

.contact-hours ion-icon {
    font-size: 1.5rem;
    color: var(--solar-orange);
}

.contact-hours strong {
    display: block;
    color: var(--dark);
    margin-bottom: var(--space-1);
}

.contact-hours p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.contact-form-wrapper {
    background: var(--light);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
}

.form-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-6);
}

.contact-form .form-group {
    margin-bottom: var(--space-5);
}

.contact-form label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--font-size-base);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--solar-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand .logo {
    margin-bottom: var(--space-4);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-description {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--solar-gradient);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a,
.footer-contact a {
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--solar-orange);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-contact ion-icon {
    color: var(--solar-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: var(--font-size-sm);
}

.footer-love {
    margin-top: var(--space-2);
    opacity: 0.7;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-header);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
        grid-row: auto;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: var(--space-8);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        transition: right var(--transition-base);
        z-index: calc(var(--z-header) + 10);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-6);
        text-align: center;
    }

    .nav-link {
        font-size: var(--font-size-lg);
        color: var(--white);
        padding: var(--space-2) var(--space-4);
        border-radius: var(--radius-md);
        transition: all var(--transition-fast);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--servlar-green-light);
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: calc(var(--z-header) + 1);
    }

    .header-cta {
        display: none;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-calc-form {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: auto;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-benefits {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-filters {
        flex-wrap: wrap;
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -var(--space-6);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-stats {
        gap: var(--space-4);
    }

    .stat-number {
        font-size: var(--font-size-2xl);
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .calculator-form,
    .calculator-results {
        padding: var(--space-5);
    }
}
/* =========================================
   USER FIXES: Solar Simulator Visibility
   ========================================= */
#calculator .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#calculator .slider-range,
#calculator .slider-range span {
    color: #ffffff !important;
    opacity: 0.9;
    font-weight: 500;
}

/* Alignment fix for product cards */
.product-card { display: flex; flex-direction: column; }
.product-info { flex-grow: 1; display: flex; flex-direction: column; }
.product-info .btn { margin-top: auto; }
.product-card { height: 100%; }

/* Final alignment override */
.product-card { height: 100% !important; display: flex !important; flex-direction: column !important; }
.product-info { flex: 1 !important; display: flex !important; flex-direction: column !important; }
.product-info .btn { margin-top: auto !important; }

.hidden { display: none !important; }
