:root {
    --bg-dark: #020617;
    --bg-darker: #000103;
    --neon-blue: #00d2ff;
    --neon-glow: rgba(0, 210, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --gradient-primary: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-info-card.stats-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
}

.benefit-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 12px;
    border-left: 3px solid var(--neon-blue);
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-box h5 {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-box p {
    font-size: 0.9rem;
    margin: 0;
}

.why-visual .btn {
    margin-top: 1rem;
    align-self: flex-start;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 0 30px var(--neon-glow);
    border-color: var(--neon-blue);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    filter: drop-shadow(0 0 10px var(--neon-glow));
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-blue);
}

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.neon-btn {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-glow);
}

.neon-btn:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-blue);
}

.glowing-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 15px var(--neon-glow);
    border: none;
}

.glowing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--neon-blue);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.mockup-img {
    width: 100%;
    filter: drop-shadow(0 0 20px var(--neon-glow));
}

.laptop-container {
    position: absolute;
    width: 100%;
    z-index: 2;
}

.phone-container {
    position: absolute;
    width: 40%;
    right: -20px;
    bottom: 20px;
    z-index: 3;
}

/* Services */
.services {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card h3 {
    margin: 1.5rem 0 1rem;
    color: var(--neon-blue);
}

.icon-glow {
    font-size: 3rem;
    text-shadow: 0 0 20px var(--neon-glow);
}

/* Stats */
.stats {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.counter {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--neon-blue);
}

.stat-circle {
    width: 100px;
    height: 100px;
    border: 3px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 15px var(--neon-glow);
}

/* Why Choose Us */
.why-choose {
    padding: 8rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: 0.3s;
}

.why-item:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 210, 255, 0.05);
    transform: translateX(10px);
}

.why-icon {
    font-size: 2.5rem;
    min-width: 60px;
}

.why-text h4 {
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.glass-info-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.glass-info-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.glass-info-card p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.price-card.premium {
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 40px var(--neon-glow);
    transform: scale(1.05);
    z-index: 10;
    position: relative;
    overflow: hidden;
}

.price-card.premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--neon-blue), transparent 30%);
    animation: rotate-glow 4s linear infinite;
    z-index: -1;
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--neon-blue);
    color: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
    color: var(--text-dim);
}

.price-card li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-glow);
}

/* WhatsApp Widget */
.whatsapp-float-widget {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.whatsapp-main-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-main-btn:hover {
    transform: scale(1.1) rotate(15deg);
}

.whatsapp-main-btn img {
    width: 35px;
}

.wa-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    border-radius: 20px;
    overflow: hidden;
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
}

.wa-popup.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.wa-header {
    background: #25d366;
    padding: 1.5rem;
    color: white;
}

.wa-header h4 {
    margin: 0;
}

.wa-header p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.wa-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-question {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}

.wa-question:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.modal-content {
    max-width: 500px;
    width: 100%;
    position: relative;
    padding: 3rem;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.glass-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    appearance: none;
}

.w-100 {
    width: 100%;
}

@keyframes map-pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        height: 350px;
        margin-top: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    padding: 6rem 0 2rem;
    background: rgba(0, 1, 3, 0.8);
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--neon-blue);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-dim) !important;
}

.social-btn:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue) !important;
    box-shadow: 0 0 10px var(--neon-glow);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: white;
    outline: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Responsive Updates */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}