:root {
    --bg-black: #050505;
    --deep-blue: #0a1128;
    --neon-purple: #b300ff;
    --cyan-glow: #00f3ff;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important; /* Custom Cursor */
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

html {
    overflow-x: hidden;
    width: 100%;
}

#main-container {
    width: 100%;
    overflow: hidden;
}

/* Hide scrollbar for locomotive */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neon-text {
    color: var(--cyan-glow);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--cyan-glow);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--neon-purple);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor.hover {
    width: 15px;
    height: 15px;
    background-color: var(--neon-purple);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--cyan-glow);
    background-color: rgba(0, 243, 255, 0.1);
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-black);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-text {
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 10px;
}

.loader-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--cyan-glow);
    box-shadow: 0 0 10px var(--cyan-glow);
}

.loader-subtext {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

/* Glitch Effect */
.glitch {
    position: relative;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-purple);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--cyan-glow);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}
@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(30% 0 20% 0); }
    40% { clip-path: inset(70% 0 10% 0); }
    60% { clip-path: inset(20% 0 50% 0); }
    80% { clip-path: inset(50% 0 30% 0); }
    100% { clip-path: inset(5% 0 80% 0); }
}

/* Backgrounds */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Navbar */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 100;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--cyan-glow);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--cyan-glow);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent;
    color: var(--cyan-glow);
    border: 1px solid var(--cyan-glow);
    box-shadow: inset 0 0 10px rgba(0, 243, 255, 0.2), 0 0 15px rgba(0, 243, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 243, 255, 0.4), 0 0 30px rgba(0, 243, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-block {
    width: 100%;
}

/* Sections */
section {
    padding: 120px 5vw;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.section-header {
    margin-bottom: 60px;
}
.section-header.center {
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--neon-purple);
    font-size: 0.8rem;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
}

.hero-title {
    font-size: 8vw;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--text-white), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--cyan-glow);
    animation: scroll-line-anim 2s infinite;
}

@keyframes scroll-line-anim {
    0% { top: -50px; }
    100% { top: 50px; }
}

/* Services */
.services-section {
    background: linear-gradient(to bottom, transparent, var(--deep-blue), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    transform-style: preserve-3d;
}

.service-card:hover {
    border-color: rgba(179, 0, 255, 0.5);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--cyan-glow);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0,243,255,0.4));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(179,0,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.service-card:hover .glow-effect {
    opacity: 1;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--neon-purple);
    text-shadow: 0 0 15px rgba(179,0,255,0.4);
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.glass-sphere {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(0,243,255,0.1));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset -10px -10px 20px rgba(0,0,0,0.5), 0 0 30px rgba(0,243,255,0.4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(179,0,255,0.5);
    border-radius: 50%;
}
.orbit-1 {
    width: 250px;
    height: 250px;
    animation: rotate 10s linear infinite;
}
.orbit-2 {
    width: 350px;
    height: 350px;
    border-color: rgba(0,243,255,0.3);
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Portfolio */
.portfolio-wrapper {
    width: 100%;
    overflow: hidden; /* Fallback if GSAP fails, but GSAP pin handles it */
}

.portfolio-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 40px 0;
    width: 100%;
}

.portfolio-item {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(5,5,5,0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}
.portfolio-info p {
    color: var(--cyan-glow);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-project {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.view-project i {
    transition: transform 0.3s ease;
}
.view-project:hover i {
    transform: translateX(5px);
    color: var(--cyan-glow);
}

/* Pricing Section */
.pricing-section {
    padding-top: 60px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    padding: 50px 40px;
    border-radius: 15px;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--neon-purple);
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: var(--cyan-glow);
    background: rgba(0, 243, 255, 0.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan-glow);
    color: var(--bg-black);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-name {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 15px;
}
.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-white);
    font-size: 0.95rem;
}
.plan-features li i {
    color: var(--cyan-glow);
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 10px rgba(0, 243, 255, 0.4), inset 0 0 10px rgba(0, 243, 255, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 243, 255, 0.8), inset 0 0 20px rgba(0, 243, 255, 0.4); }
    100% { box-shadow: 0 0 10px rgba(0, 243, 255, 0.4), inset 0 0 10px rgba(0, 243, 255, 0.2); }
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--cyan-glow);
    transform: translateY(-5px);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
.contact-method i {
    color: var(--neon-purple);
    font-size: 1.5rem;
}
.contact-method:hover {
    color: var(--cyan-glow);
}

.whatsapp-cta {
    background: rgba(37, 211, 102, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    width: max-content;
}
.whatsapp-cta i {
    color: #25D366;
}

.social-links {
    display: flex;
    gap: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}
.social-links a:hover {
    background: var(--cyan-glow);
    color: var(--bg-black);
    box-shadow: 0 0 15px var(--cyan-glow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-body);
}
.input-group input:focus,
.input-group textarea:focus {
    outline: none;
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -10px;
    font-size: 0.7rem;
    color: var(--cyan-glow);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.2);
}
.input-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--cyan-glow);
    transition: width 0.3s ease;
}

.input-group input:focus ~ .input-line::after,
.input-group textarea:focus ~ .input-line::after {
    width: 100%;
}

/* Footer */
.footer {
    padding: 60px 5vw 20px;
    background: #020202;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-brand h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 5px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--cyan-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    width: 100%;
}
.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.animated-line {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100px;
    height: 1px;
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
    animation: moveLine 5s linear infinite;
}

@keyframes moveLine {
    0% { left: -100px; }
    100% { left: 100%; }
}

.gs-reveal {
    visibility: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 10vw; }
    .about-container { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .portfolio-item { width: 100%; height: 300px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        padding-top: 120px;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 99;
    }
    .nav-links.active { right: 0; }
    .nav-link { font-size: 1.5rem; }
    .mobile-menu-btn { display: none !important; }
    
    .hero-title { font-size: 15vw; margin-top: 60px; }
    .hero-subtitle { font-size: 1.2rem; line-height: 1.4; margin-bottom: 15px; }
    .hero-description { font-size: 0.95rem; line-height: 1.5; padding: 0 15px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 15px; width: 100%; }
    .hero-buttons .btn { width: 100%; max-width: 300px; }
    .section-title { font-size: 2.2rem; }
    .footer-content { flex-direction: column; gap: 30px; text-align: center; }
    .stats-container { flex-direction: column; gap: 20px; text-align: center; }
    
    .loader-text { font-size: 2.5rem; letter-spacing: 5px; }
    .glass-sphere { width: 100px; height: 100px; }
    .orbit-1 { width: 200px; height: 200px; }
    .orbit-2 { width: 280px; height: 280px; }
    .about-visual { height: 350px; overflow: hidden; width: 100%; }

    .cursor, .cursor-follower { display: none; } /* Disable custom cursor on mobile */
    
    /* Ultimate Mobile Scroll Lock */
    html, body, #main-container {
        width: 100% !important;
        overflow-x: hidden !important;
        position: relative !important;
    }
    
    * {
        box-sizing: border-box !important;
    }
    
    *::before, *::after {
        box-sizing: border-box !important;
    }
    
    .services-grid, .portfolio-slider, .pricing-grid {
        grid-template-columns: 1fr; /* Force single column to prevent overflow */
    }
    
    .contact-container { padding: 30px 20px; }
    .service-card { padding: 30px 20px; }
    .pricing-card { padding: 30px 20px; }
    section { padding: 80px 5vw; }
    .scroll-indicator { display: none; }
}
