/* Fonts moved to index.html for performance */

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --neon-blue: #00f2ff;
    --neon-green: #00ff88;
    --accent: var(--neon-blue);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    font-size: 18px;
    /* Neuro-marketing base: 18px for scanning ease */
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.625;
    /* Relaxed leading for reduced cognitive load */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
.font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.neon-text-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.neon-text-green {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.neon-border-blue {
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.neon-border-green {
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.glass-morphism {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 242, 255, 0.4);
}

section {
    padding: 6rem 1rem;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

footer {
    padding-bottom: 40px;
}

/* Reveal Animations (Progressive Enhancement) */
.reveal {
    /* Visible by default for SEO/Accessibility/No-JS */
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Only hide if JS has enabled animations and element is not yet active */
html[data-animate="true"] .reveal:not(.active) {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-width: fit-content;
}

#enquiryForm .btn-primary {
    padding: 1.25rem 2rem;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1rem;
    }

    footer {
        padding-bottom: 120px !important;
    }

    .scroll-indicator-mobile-hide {
        display: none !important;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px !important;
        right: 20px !important;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }

    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 0.75rem;
    }
}

/* Desktop Grid Fixes */
@media (min-width: 1024px) {
    .desktop-grid-8 {
        display: grid !important;
        grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    }
}