@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap);

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

.glass {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.glass-dark {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Premium Color Gradients */
.gradient-brand {
    background: linear-gradient(135deg, #10b981 0%, #f59e0b 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #059669 0%, #d97706 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gradient-button:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
}

.orange-glow {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.emerald-glow {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.animate-pulse-soft {
    animation: pulse-soft 8s infinite;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    background: #10b981;
    cursor: pointer;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-mesh {
    background-color: #f8fafc;
    background-image:
        radial-gradient(at 0% 0%, hsla(161, 72%, 80%, 0.4) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(38, 92%, 80%, 0.4) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(161, 72%, 80%, 0.2) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(38, 92%, 80%, 0.2) 0px, transparent 50%);
}

/* Custom Styles */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
}

.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('/assets/img/solar.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

@media (min-width: 768px) {
    .hero-bg {
        background-attachment: fixed;
    }

    .font-s {
        font-size: 16px;
    }
}

.h-logo {
    height: 4rem;
}

.h-auto {
    height: auto;
}

.glass-card {
    background: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-active .faq-content {
    max-height: 500px;
    /* Arbitrary large height */
}

.faq-active i {
    transform: rotate(180deg);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Mobile Menu Transition */
#mobile-menu {
    background: white;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    height: 100vh;
    width: 100vw;
}

#mobile-menu.open {
    transform: translateX(0);
}

@keyframes ping {

    75%,
    100% {
        transform: scale(1.5);
        /* This is the default "radius" */
        opacity: 0;
    }
}