:root {
    --primary: #F4B400; /* Gold */
    --secondary: #004B93; /* Deep Blue */
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --gray: #F5F5F5;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Wider for premium nav */
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: none;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo .logo-italic {
    color: var(--primary);
    font-weight: 300;
    font-style: italic;
    margin-left: 2px;
    letter-spacing: 1px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(244, 180, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 180, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(244, 180, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 180, 0, 0); }
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 180, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    padding: 120px 10% 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, rgba(0, 75, 147, 0.1) 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    border-left: 4px solid var(--secondary);
    padding-left: 1.5rem;
}

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

.btn-outline {
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--light);
    color: var(--light);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--light);
    color: var(--dark);
}

.btn-secondary {
    text-decoration: none;
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--light);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    filter: brightness(1.2);
    box-shadow: 0 10px 20px rgba(0, 75, 147, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-img-main {
    max-height: 80vh;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    border: 4px solid var(--secondary);
    transition: var(--transition);
}

.hero-img-main:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
}

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

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

.side-text {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    letter-spacing: 10px;
}

/* Services */
.services {
    padding: 10rem 0;
    background: #111;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 1rem auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    background: var(--secondary);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background: #000;
    border-top: 2px solid var(--primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-info .phone {
    display: block;
    margin-top: 1rem;
    font-size: 1.5rem;
    color: var(--light);
    text-decoration: none;
    font-weight: 800;
}

.footer-social a {
    color: var(--light);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Process Section */
.process {
    padding: 10rem 0;
    background: #0d0d0d;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(244, 180, 0, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
    transition: var(--transition);
}

.step:hover {
    background: rgba(244, 180, 0, 0.05);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.step:hover .step-num {
    color: rgba(244, 180, 0, 0.2);
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step p {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 968px) {
    .process-steps { grid-template-columns: 1fr; }
}

/* Stats Section */
.stats {
    padding: 8rem 0;
    background: var(--dark);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

/* Stats Section */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.whatsapp-btn, .instagram-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.whatsapp-btn {
    background: #25D366;
}

.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.whatsapp-btn:hover, .instagram-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}
.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--light);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    border-radius: 2px;
}
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .navbar { padding: 1.2rem 1.5rem; justify-content: space-between; }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 2rem;
    }
    .nav-links.active {
        right: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero h1 { font-size: 2.8rem; margin-bottom: 1.5rem; line-height: 1.1; }
    .hero-subtitle { font-size: 1.1rem; border: none; padding: 0; margin-bottom: 2rem; }
    .hero-btns { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-btns a { width: 100%; text-align: center; }
    
    .hero-image {
        margin-top: 40px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-img-main {
        max-height: 50vh;
        width: 100%;
        object-fit: cover;
    }
    
    .side-text { display: none; }
    
    .section-title { font-size: 2.2rem; }
    
    .services, .process, .stats { padding: 6rem 1rem; }
    
    .services-grid, .stats-grid, .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content { flex-direction: column; align-items: center; text-align: center; gap: 3rem; }
    .floating-contact { right: 20px; bottom: 20px; }
    .whatsapp-btn, .instagram-btn { width: 50px; height: 50px; font-size: 1.5rem; }
}
