:root {
    --primary: #0a192f;
    --secondary: #112240;
    --accent: #64ffda;
    --accent-glow: rgba(100, 255, 218, 0.1);
    --text-primary: #ccd6f6;
    --text-secondary: #8892b0;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}
body {
    background-color: var(--primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}
h1 {
    font-size: clamp(40px, 8vw, 80px);
}
h2 {
    font-size: clamp(30px, 5vw, 40px);
    color: var(--white);
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
section {
    padding: 100px 0;
}
/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass);
    height: 100px;
    display: flex;
    align-items: center;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo img {
    height: 70px;
    width: auto;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin-right: 2rem;
}
.nav-links a:hover {
    color: var(--accent);
}
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: -1;
}
.hero-content {
    max-width: 800px;
}
.hero-content p {
    color: var(--accent);
    font-family: 'Space Mono', monospace;
    margin-bottom: 1rem;
}
.hero-cta {
    margin-top: 2rem;
}
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 4px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}
.btn:hover {
    background: var(--accent-glow);
    transform: translateY(-3px);
}
.btn-primary {
    background: var(--accent);
    color: var(--primary);
}
.btn-primary:hover {
    background: #52e0c0;
    color: var(--primary);
}
/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}
.service-card h3 {
    color: var(--white);
    margin-top: 1rem;
}
/* Results */
.results-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 2rem 0;
}
.result-item {
    min-width: 300px;
    background: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
}
.result-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
input,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--secondary);
    border: 1px solid var(--glass);
    border-radius: 4px;
    color: var(--white);
    outline: none;
}
input:focus,
textarea:focus {
    border-color: var(--accent);
}
/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--glass);
    color: var(--text-secondary);
}
/* Floating CTAs */
.floating-ctas {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
}
.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}
.floating-btn.whatsapp {
    background: #25d366;
}
.floating-btn.phone {
    background: var(--accent);
    color: var(--primary);
}
/* Footer Contact Info */
.contact-container p strong {
    color: var(--white);
    display: inline-block;
    width: 80px;
}
/* Mobile Responsiveness */
@media (max-width: 1024px) {
    header {
        height: 120px;
    }
    header .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1.5rem;
        /* Standard mobile padding */
    }
    nav {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 100%;
    }
    .logo {
        z-index: 1002;
        margin: 0 auto;
    }
    .logo img {
        height: 80px;
        filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.3));
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 2rem;
        border-bottom: 1px solid var(--glass);
        z-index: 998;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: flex !important;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1005;
        padding: 10px;
    }
    .menu-toggle .bar {
        width: 30px;
        height: 3px;
        background: var(--accent);
        border-radius: 3px;
        transition: var(--transition);
        display: block;
    }
    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-btn {
        display: none;
    }
}
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    .floating-ctas {
        bottom: 1rem;
        right: 1rem;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    section {
        padding: 60px 0;
    }
    .hero-content {
        padding-top: 40px;
    }
}