@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Poppins:wght@400;600;700&display=swap');

:root {
    --bg-color: #050505;
    --surface-color: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.08);
    --primary-neon: #00F2FF;
    --secondary-neon: #7000FF;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-blur: blur(12px);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    --glow-primary: 0 0 20px rgba(0, 242, 255, 0.3);
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass {
    background: var(--surface-color);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-btns {
    padding-top: 45px;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--surface-border);
    color: white;
}

.btn-outline:hover {
    background: var(--surface-color);
    border-color: var(--primary-neon);
}
.about-visual{
    
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-neon);
}

/* Elite Visual Tokens */
.glass-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.glass-premium:hover {
    border-color: var(--primary-neon);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.business-trust-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 500;
}

.trust-point i {
    color: var(--primary-neon);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--primary-neon));
}

/* Hero Styles */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    height: 100%;
    max-height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, rgba(112, 0, 255, 0.04) 50%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float-slow 20s infinite alternate ease-in-out;
}

.shape-1 {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary-neon);
}

.shape-2 {
    bottom: 15%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: var(--secondary-glow);
    animation-delay: -5s;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 60px) scale(1.1);
    }
}

/* Framer-Style Navbar Upgrade */
nav.nav-framer {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0 32px;
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    nav.nav-framer {
        width: 95%;
        height: 56px;
        top: 16px;
        padding: 0 16px;
        background: rgba(10, 10, 10, 0.85);
    }
}

body.scrolled nav.nav-framer {
    top: 12px;
    background: rgba(5, 5, 5, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-name {
    white-space: nowrap;
}

.nav-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.3));
}

@media (max-width: 768px) {
    .nav-logo {
        height: 28px;
    }

    .brand-name {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .brand-name {
        font-size: 0.9rem;
    }

    .nav-logo {
        height: 24px;
    }
}

.nav-links-center {
    display: flex;
    gap: 24px;
}

@media (max-width: 1024px) {
    .nav-links-center {
        display: none;
    }
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    transition: var(--transition-smooth);
}

.nav-item:hover,
.nav-item.active {
    color: white;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-neon);
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-cta {
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 4px 10px;
        font-size: 0.65rem;
        border-radius: 30px;
    }

    .nav-right {
        gap: 6px;
    }
}

@media (max-width: 360px) {
    .brand-name {
        display: none !important;
    }
}

/* Mobile Menu & Drawer Update */
.mobile-drawer {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    border-radius: 24px;
    border: 1px solid var(--surface-border);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.mobile-drawer.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, rgba(112, 0, 255, 0.05) 50%, transparent 100%);
    filter: blur(60px);
    z-index: 1;
}

/* Floating Shapes */
.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.4;
    animation: floating 10s infinite alternate ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-neon);
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-neon);
    bottom: 50px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes floating {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 100px) rotate(360deg);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Showcase Section */
.showcase {
    padding: var(--section-padding);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-items: center;
}

.showcase-card {
    padding: 20px;
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 450px;
}

.showcase-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.card-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 24px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.showcase-card:hover .card-img img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.card-img:hover .card-overlay {
    opacity: 1;
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.01);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    transition: var(--transition-smooth);
    border: 1px solid var(--surface-border);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--secondary-neon);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-neon);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 24px auto;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--primary-neon));
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.pricing-card {
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card.popular {
    border: 2px solid var(--primary-neon);
    transform: scale(1.05);
    background: rgba(0, 242, 255, 0.03);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-neon);
    color: black;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.pricing-features i {
    color: var(--primary-neon);
    margin-right: 10px;
}

/* Why Choose Us */
.why-us {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, transparent, rgba(112, 0, 255, 0.02));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
}

.why-item i {
    font-size: 2rem;
    color: var(--secondary-neon);
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 900px) {
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    color: white;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-neon);
}

.whatsapp-cta {
    margin-top: 40px;
    padding: 20px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    text-align: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--surface-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-left: 20px;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--primary-neon);
}

/* Mobile Responsiveness & Header Fixes */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        border-bottom: 1px solid var(--surface-border);
        transform: translateY(-120%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        margin: 0;
        font-size: 1.2rem;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-content {
        padding: 0 20px;
    }
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Fluid Typography for Hero */
.hero-title {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Ensure no overflow */
.hero,
.about-studio,
.showcase,
.services,
.pricing,
.contact {
    overflow-x: hidden;
}

/* Fix About Grid for Mobile */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 900px) {
    .about-grid {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 1.2;
    }

    .about-visual {
        flex: 0.8;
    }
}

/* Mobile Padding Scaling */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card {
        max-width: 100%;
    }
}

/* Price Card Scaling */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }
}

/* Stability: Ensure buttons don't jump */
.btn:active {
    transform: none;
}

/* AOS Tweaks for Stability */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Responsive */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        margin-top: 20px;
    }

    .social-links a {
        margin: 0 10px;
    }
}