:root {
    /* Color Palette */
    --clr-yellow: #FFD400;
    /* Distinct taxi yellow */
    --clr-yellow-dark: #CCA800;
    --clr-black: #080B12;
    /* Deep modern space black */
    --clr-dark: #121624;
    /* Slightly lighter background */
    --clr-surface: rgba(255, 255, 255, 0.03);
    /* Glassmorphism base */
    --clr-white: #FFFFFF;
    --clr-gray-light: #A0A5B5;
    --clr-gray-dark: #1E2333;

    /* WhatsApp Green */
    --clr-whatsapp: #25D366;
    --clr-whatsapp-hover: #1EBE55;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;

    /* Spacing & Utilities */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 16px;
    --container-max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--clr-black);
    color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.text-center {
    text-align: center;
}

.yellow-text {
    color: var(--clr-yellow);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--clr-yellow);
    color: var(--clr-black);
    box-shadow: 0 4px 15px rgba(255, 212, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-white);
    color: var(--clr-black);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--clr-whatsapp);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--clr-whatsapp-hover);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 18px 48px;
    font-size: 1.25rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 11, 18, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu ul li a {
    font-weight: 500;
    color: var(--clr-gray-light);
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-yellow);
    transition: var(--transition);
}

.nav-menu ul li a:hover {
    color: var(--clr-white);
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-white);
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Accounts for header */
}

/* Replace hero image below later when generation completes */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 22, 36, 1) 0%, rgba(8, 11, 18, 1) 100%);
    z-index: -2;
}

.hero-bg::before {
    content: "";
    /* Image placeholder glow */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(255, 212, 0, 0.15), transparent 60%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -2;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 212, 0, 0.1);
    color: var(--clr-yellow);
    border: 1px solid rgba(255, 212, 0, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--clr-gray-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-white);
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--clr-gray-light);
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--clr-dark);
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--clr-gray-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 212, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card .icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 212, 0, 0.1);
    color: var(--clr-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--clr-yellow);
    color: var(--clr-black);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--clr-gray-light);
    font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(90deg, var(--clr-yellow) 0%, #FFB000 100%);
    padding: 60px 0;
    color: var(--clr-black);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.bounce-animation {
    background-color: var(--clr-black);
    color: var(--clr-white);
    animation: bounce 3s infinite;
}

.bounce-animation:hover {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    animation: none;
}

.bounce-animation .fa-phone {
    color: var(--clr-yellow);
}

/* Footer Section */
.footer {
    background-color: var(--clr-black);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--clr-gray-light);
    max-width: 400px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--clr-gray-light);
}

.footer-links ul li a:hover {
    color: var(--clr-yellow);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--clr-gray-light);
    align-items: center;
}

.footer-contact ul li i {
    color: var(--clr-yellow);
    font-size: 1.1rem;
}

.footer-contact ul li a:hover {
    color: var(--clr-yellow);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
}

.social-links a:hover {
    background: var(--clr-yellow);
    color: var(--clr-black);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 25px 0;
    color: var(--clr-gray-light);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--clr-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: var(--clr-whatsapp-hover);
}

/* Responsive Styles */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--clr-black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        padding: 40px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header .btn-call {
        display: none;
        /* Hide top call button on very small screens for space */
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        width: 45%;
    }
}