:root {
    --primary: #1E90FF;
    --accent: #D9A404;
    --whatsapp: #25d366;
    --dark: #f8f9fa;
    --darker: #ffffff;
    --light-bg: #f1f3f5;
    --text: #0D0D0D;
    --text-dim: #495057;
    --glass: rgba(5, 17, 242, 0.03);
    --glass-border: rgba(5, 17, 242, 0.1);
    --neon-shadow: 0 4px 20px rgba(5, 17, 242, 0.15);
    --gold-shadow: 0 4px 15px rgba(217, 164, 4, 0.2);
}

.btn-whatsapp-color {
    background: var(--whatsapp) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
header {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    filter: drop-shadow(var(--neon-shadow));
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Buttons */
.btn-cta, .btn-primary, .btn-secondary, .btn-whatsapp {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: inherit;
}

.btn-cta {
    background: var(--primary);
    color: white;
    box-shadow: var(--neon-shadow);
}

.btn-primary {
    background: var(--primary);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-cta:hover, .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(5, 17, 242, 0.6);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark);
    box-shadow: var(--gold-shadow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(circle at 70% 30%, rgba(5, 17, 242, 0.15), transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero h1 span {
    color: var(--accent);
    display: block;
    text-shadow: var(--gold-shadow);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 300px;
    height: 300px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    animation: floating 6s ease-in-out infinite;
}

.icon-main {
    width: 120px;
    height: 120px;
    color: var(--primary);
    filter: drop-shadow(0 0 15px var(--primary));
}

.orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

/* Services */
.services {
    padding: 8rem 0;
    background: var(--light-bg);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

h2 span {
    color: var(--accent);
}

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

.service-card {
    background: var(--glass);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: rgba(5, 17, 242, 0.05);
}

.service-card i {
    width: 50px;
    height: 50px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card .price {
    display: block;
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.disclaimer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

/* Tech Section */
.tech {
    padding: 6rem 0;
    background: linear-gradient(90deg, var(--dark) 0%, var(--primary) 200%);
}

.tech-content {
    background: var(--glass);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Hours & Location */
.hours-location {
    padding: 8rem 0;
}

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

.hours-list {
    list-style: none;
    margin-top: 2rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.hours-list .closed {
    color: #ff4d4d;
}

.location h3, .hours h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.phone-link {
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links i {
    cursor: pointer;
    transition: 0.3s;
}

.social-links i:hover {
    color: var(--accent);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
}

.whatsapp-float .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

/* Popups */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup.active {
    display: flex;
}

.popup-content {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    max-width: 400px;
    text-align: center;
    border: 1px solid var(--primary);
    animation: scaleUp 0.3s ease-out;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.popup-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popup-header i {
    width: 60px;
    height: 60px;
    color: var(--primary);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    width: 100%;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Animations */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .header {
        padding: 0.8rem 0;
    }
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 4rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    .hero p {
        margin: 0 auto 2rem;
        text-align: center;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hours-list li {
        justify-content: center;
        gap: 1rem;
    }
    .location h3, .hours h3 {
        justify-content: center;
    }
    .phone-link {
        justify-content: center;
    }
    .tech-content {
        padding: 2rem 1rem;
    }
    .visual-card {
        width: 180px;
        height: 180px;
    }
    .icon-main {
        width: 70px;
        height: 70px;
    }
    .nav-links {
        display: none;
    }
}
