:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
    --accent-yellow: #facc15;
    --accent-yellow-hover: #eab308;
    --accent-blue: #38bdf8;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.highlight {
    color: var(--accent-yellow);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* Buttons */
.btn-primary, .btn-primary-small {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--bg-darker);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.btn-primary-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
}

.btn-primary:hover, .btn-primary-small:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.electric-icon {
    color: var(--accent-yellow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary-small) {
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--accent-yellow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1rem;
    font-weight: inherit;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: var(--text-light);
}

.lang-btn.active {
    color: var(--accent-yellow);
}

.divider {
    color: var(--glass-border);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 3rem;
    animation: slideUp 1s ease forwards;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.coverage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

/* Trust Section */
.trust {
    padding: 4rem 0;
    background:
        linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, transparent 38%),
        linear-gradient(to bottom, var(--bg-dark), var(--bg-dark));
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
}

.trust-item {
    min-height: 210px;
    padding: 1.5rem;
    border-left: 3px solid rgba(250, 204, 21, 0.75);
    background: rgba(15, 23, 42, 0.72);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.14);
    color: var(--accent-yellow);
    font-size: 1.2rem;
    font-weight: 800;
}

.trust-item h3 {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 1.15rem;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-blue);
}

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

.service-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.card-content p {
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(to top, var(--bg-darker), var(--bg-dark));
    text-align: center;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

.contact-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.info-item .icon {
    font-size: 2.5rem;
}

.info-item a, .info-item p {
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-yellow);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    align-items: start;
}

.detail-panel {
    padding: 1.25rem 0.5rem 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    box-shadow: none;
}

.detail-panel h3 {
    margin-bottom: 0.75rem;
    color: var(--accent-yellow);
    font-size: 1.25rem;
}

.detail-intro {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.detail-list,
.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.detail-list li,
.hours-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
}

.detail-list li:last-child,
.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.hours-list strong {
    color: var(--text-light);
}

.contact-form-header {
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-form-header h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-yellow);
    font-size: 1.8rem;
}

.form-section-copy {
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-form {
    text-align: left;
    scroll-margin-top: 110px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 600;
    color: var(--text-light);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(2, 6, 23, 0.7);
    color: var(--text-light);
    font: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(203, 213, 225, 0.7);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(250, 204, 21, 0.7);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.12);
    background: rgba(2, 6, 23, 0.9);
}

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

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-status {
    min-height: 1.5rem;
    margin: 0;
    font-size: 0.98rem;
    color: var(--text-muted);
}

.form-status.is-success {
    color: #86efac;
}

.form-status.is-error {
    color: #fca5a5;
}

.contact-form .btn-primary[disabled] {
    opacity: 0.7;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background: var(--bg-darker);
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Inquiry Float */
.inquiry-float {
    position: fixed;
    left: 40px;
    bottom: 40px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 60px;
    padding: 0 1.25rem;
    border-radius: 999px;
    background: var(--accent-yellow);
    color: var(--bg-darker);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(250, 204, 21, 0.32);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.inquiry-float:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(250, 204, 21, 0.38);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.75rem;
    }

    .stat-box h3 {
        font-size: 2.7rem;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-panel {
        padding-top: 1rem;
    }

    .inquiry-float {
        left: 20px;
        bottom: 20px;
        min-width: 130px;
        min-height: 50px;
        padding: 0 1rem;
        font-size: 0.92rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 3rem 1.25rem;
    }

    .form-actions {
        align-items: stretch;
    }

    .contact-form .btn-primary {
        width: 100%;
        text-align: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
