/* GLOBAL VARIABLES */
:root {
    --bg-primary: #000000;
    --bg-secondary: #080808;
    --bg-glass: rgba(10, 10, 10, 0.6);
    --bg-glass-heavy: rgba(15, 15, 15, 0.85);
    
    --accent-blue: #73D7FF;
    --accent-blue-dim: rgba(115, 215, 255, 0.2);
    --accent-blue-glow: rgba(115, 215, 255, 0.6);
    
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    --font-hebrew: 'Heebo', sans-serif;
    --font-english: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(-45deg, #050505, #080a0c, #050505, #020b12);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-main);
    font-family: var(--font-hebrew);
    line-height: 1.6;
    overflow-x: hidden;
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* 1. LOADING ANIMATION */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-text {
    font-family: var(--font-english);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

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

.loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue) 0%, #fff 100%);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-smooth), background-color var(--transition-smooth);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-family: var(--font-english);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
}

.header-nav ul {
    display: flex;
    gap: 2.5rem;
}

.header-nav a {
    font-size: 1.05rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: width var(--transition-fast);
}

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

.btn-primary {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-blue-dim), transparent);
    transform: translateX(100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateX(-100%);
}

.btn-primary:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px var(--accent-blue-dim);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

/* 3. HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}
.glow-outline-static {
    display: inline-block;
    color: #0d1214; /* Specific deep background shade for the 'Smart Hollow' effect */
    -webkit-text-stroke: 1.5px var(--accent-blue);
    paint-order: stroke fill;
    text-shadow: 0 0 15px rgba(115, 215, 255, 0.5);
    padding: 0 5px;
}

.gradient-text-hero {
    background: linear-gradient(to right, #fff 20%, var(--accent-blue) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 300;
}

.hero-actions {
    opacity: 0;
    transform: translateY(30px);
}

.btn-glow {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 40px;
    border: 2px solid var(--accent-blue);
    background-color: rgba(115, 215, 255, 0.05); /* very subtle fill */
    color: #fff;
    box-shadow: 0 0 20px var(--accent-blue-dim), inset 0 0 10px var(--accent-blue-dim);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-glow:hover {
    transform: scale(1.05);
    background-color: var(--accent-blue-dim);
    box-shadow: 0 0 30px var(--accent-blue-glow), inset 0 0 15px var(--accent-blue-glow);
}

/* SECTION BASE */
.section-padding { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.2rem; color: var(--text-muted); }
.text-blue { color: var(--accent-blue); }

/* 4. WHY CHOOSE ME */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.why-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 2rem; border-radius: 20px; text-align: center; transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth); }
.why-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); border-color: var(--accent-blue-dim); }
.why-icon { display: flex; justify-content: center; margin-bottom: 1.5rem; color: var(--text-main); transition: color var(--transition-fast); }
.why-icon svg { filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); transition: all var(--transition-smooth); }
.why-card:hover .why-icon { color: var(--accent-blue); }
.why-card:hover .why-icon svg { filter: drop-shadow(0 0 15px var(--accent-blue-glow)); transform: scale(1.1); }

/* 5. SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-bottom: 4rem; }
.service-card { position: relative; background: linear-gradient(145deg, #111, #0a0a0a); border-radius: 20px; padding: 3rem 2.5rem; border: 1px solid #222; overflow: hidden; transition: all 0.3s ease; }
.service-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, var(--accent-blue-dim) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s ease; mix-blend-mode: screen; pointer-events: none; }
.service-card:hover { border-color: var(--accent-blue-dim); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.6); }
.service-card:hover .service-glow { opacity: 1; animation: rotatingGlow 10s linear infinite; }
@keyframes rotatingGlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.service-features { margin: 1.5rem 0; padding-right: 1.5rem; }
.service-features li { margin-bottom: 0.5rem; position: relative; }
.service-features li::before { content: '\2713'; position: absolute; right: -1.5rem; color: var(--accent-blue); }
.service-features, .service-addons { text-align: right; }
.price { font-size: 1.5rem; font-weight: 800; color: var(--accent-blue); margin: 1rem 0; }
.service-addons { font-size: 0.9rem; color: var(--text-muted); background: rgba(255,255,255,0.03); padding: 1rem; border-radius: 10px; margin-top: 1rem;}
.services-action { text-align: center; }
.btn-large { padding: 1.2rem 3rem; font-size: 1.3rem; }

/* 6. PORTFOLIO */
.portfolio-section { padding: 6rem 0; overflow: hidden; background: var(--bg-secondary); border-top: 1px solid rgba(255,255,255,0.05); }
.portfolio-scroll-container { width: 100%; height: 60vh; display: flex; align-items: center; overflow: hidden; }
.portfolio-track { display: flex; gap: 4vw; padding: 0 5vw; width: max-content; }
.portfolio-item { width: 60vw; max-width: 800px; height: 45vh; min-height: 400px; flex-shrink: 0; position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transform-style: preserve-3d; }
.portfolio-image { width: 100%; height: 100%; position: relative; transition: transform 0.5s ease; background-color: #000; opacity: 1 !important; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; opacity: 1 !important; }

.portfolio-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 3rem 2rem 2rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); transform: translateY(20px); opacity: 0; transition: all 0.4s ease; text-align: right; }
.portfolio-overlay h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: #fff; }
.portfolio-overlay p { color: var(--accent-blue); }
.portfolio-item:hover .portfolio-image { transform: scale(1.05); }
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); opacity: 1; }
.placeholder-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-family: var(--font-english); font-weight: 800; color: rgba(255,255,255,0.2); }
.blue-tint { background: linear-gradient(45deg, #051A25, #004466); }
.dark-tint { background: linear-gradient(45deg, #111, #222); }

/* 7. ABOUT */
.about-container { display: flex; align-items: center; gap: 4rem; }
@media (min-width: 992px) {
    .about-container { flex-direction: row-reverse; }
}
.about-content { flex: 1; }
.about-text { font-size: 1.15rem; color: #ddd; }
.about-image-wrapper { flex: 1; position: relative; max-width: 500px; width: 100%; }
.about-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.image-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background: var(--accent-blue); filter: blur(100px); opacity: 0.15; z-index: 1; pointer-events: none; }

/* 8. PROCESS */
.process-list { width: 100%; max-width: 900px; margin: 0 auto; border: 1px solid rgba(115, 215, 255, 0.15); border-radius: 20px; background: rgba(10, 10, 10, 0.4); backdrop-filter: blur(15px); overflow: hidden; }
.process-row { position: relative; width: 100%; min-height: 140px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); overflow: hidden; cursor: pointer; transition: background 0.4s ease; box-shadow: inset 0 0 0 rgba(115,215,255,0); }
.process-row:last-child { border-bottom: none; }
.process-row:hover { background: rgba(115, 215, 255, 0.05); box-shadow: inset 0 0 20px rgba(115,215,255,0.05); }
.process-num-wrapper { position: absolute; right: 50%; transform: translateX(50%); display: flex; align-items: center; justify-content: center; transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1); z-index: 2; pointer-events: none; }
.step-num { width: 4.5rem; height: 4.5rem; background: var(--bg-primary); border: 2px solid rgba(115,215,255, 0.3); color: var(--accent-blue); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-family: var(--font-english); font-weight: 800; font-size: 1.5rem; box-shadow: 0 0 20px rgba(115, 215, 255, 0.1); transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1); }
.process-row:hover .step-num { border-color: var(--accent-blue); box-shadow: 0 0 30px rgba(115, 215, 255, 0.3); background: rgba(115,215,255,0.1); transform: scale(1.1); }
.process-row:hover .process-num-wrapper { right: 2.5rem; transform: translateX(0); }
.process-row-content { width: 100%; display: flex; flex-direction: column; justify-content: center; text-align: center; opacity: 0; transform: scale(0.95); transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1); padding: 0 8rem; z-index: 1; pointer-events: none; }
.process-row-content h3 { font-size: 1.6rem; margin-bottom: 0.5rem; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.2); }
.process-row-content p { color: #ccc; margin: 0; font-size: 1.1rem; }
.process-row:hover .process-row-content { opacity: 1; transform: scale(1); pointer-events: auto; }

/* 9. TESTIMONIALS */
.testimonials-section { overflow: hidden; background: var(--bg-secondary); }
.testimonials-slider { padding: 4rem 1rem; width: 100%; perspective: 1000px; }
.testimonial-card { background: linear-gradient(135deg, #151515, #0a0a0a); border: 1px solid rgba(115, 215, 255, 0.1); border-radius: 20px; padding: 3rem 2rem; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.4); height: auto; }
.stars { font-size: 1.2rem; margin-bottom: 1.5rem; letter-spacing: 2px; }
.review-text { font-size: 1.1rem; font-style: italic; margin-bottom: 2rem; color: #ddd; }
.client-info strong { color: var(--accent-blue); display: block; font-size: 1.2rem; margin-bottom: 0.2rem; }
.swiper-slide { width: 340px; }

/* 10. CONTACT / CTA */
.cta-section { position: relative; padding: 8rem 2rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.cta-container { max-width: 600px; margin: 0 auto; background: var(--bg-glass-heavy); padding: 4rem 3rem; border-radius: 30px; border: 1px solid rgba(115, 215, 255, 0.1); backdrop-filter: blur(20px); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.cta-subtitle { color: var(--accent-blue); font-size: 1.5rem; margin-bottom: 2.5rem; }
.modern-form .form-group { margin-bottom: 1.5rem; text-align: right; }
.modern-form input, .modern-form textarea { width: 100%; padding: 1rem 1.5rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #fff; font-family: inherit; font-size: 1rem; transition: all 0.3s ease; text-align: right; direction: rtl; }
.modern-form input:focus, .modern-form textarea:focus { outline: none; border-color: var(--accent-blue); background: rgba(115, 215, 255, 0.05); box-shadow: 0 0 15px var(--accent-blue-dim); }
.btn-submit { width: 100%; cursor: pointer; border: none; font-family: inherit; }

/* Custom Select Glassmorphism */
.custom-select-wrapper { position: relative; user-select: none; width: 100%; }
.custom-select { position: relative; }
.custom-select-trigger { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1rem 1.5rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #fff; font-family: inherit; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; }
.custom-select-trigger::after { content: '\25BC'; font-size: 0.8rem; color: var(--text-muted); transition: transform 0.3s ease; }
.custom-select.open .custom-select-trigger { border-color: var(--accent-blue); background: rgba(115, 215, 255, 0.05); box-shadow: 0 0 15px var(--accent-blue-dim); }
.custom-select.open .custom-select-trigger::after { transform: rotate(-180deg); }
.custom-options { position: absolute; display: block; top: 100%; left: 0; right: 0; background: rgba(15, 15, 15, 0.85); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; margin-top: 0.5rem; opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.3s ease; z-index: 10; box-shadow: 0 15px 40px rgba(0,0,0,0.6); overflow: hidden; transform: translateY(-10px); text-align: right; direction: rtl; }
.custom-select.open .custom-options { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); }
.custom-option { display: block; padding: 1rem 1.5rem; color: #ccc; cursor: pointer; transition: all 0.2s ease; border-bottom: 1px solid rgba(255,255,255,0.05); }
.custom-option:last-child { border-bottom: none; }
.custom-option:hover { background: rgba(115, 215, 255, 0.15); color: #fff; padding-right: 2rem; }
.custom-option.selected { color: var(--accent-blue); font-weight: 600; background: rgba(115,215,255,0.05); }

/* 11. FOOTER */
.footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 4rem 2rem 2rem; }
.footer-container { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.footer-logo-anim { text-align: center; }
.header-logo a { font-family: var(--font-english); font-size: 1.8rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: 2px; display: inline-flex; }
.header-logo a.hover-letters span { transition: all 0.3s cubic-bezier(0.2, 0, 0, 1); display: inline-block; position: relative; }
.header-logo a.hover-letters:hover span { color: rgba(255, 255, 255, 0.3); }
.header-logo a.hover-letters span:hover { color: var(--accent-blue); text-shadow: 0 0 20px var(--accent-blue); transform: translateY(-4px) scale(1.15); z-index: 2; }
.footer-logo-anim h2 { font-family: var(--font-english); font-size: 3.5rem; font-weight: 800; line-height: 1; letter-spacing: 4px; margin-bottom: 1rem; background: linear-gradient(-45deg, #fff 35%, var(--accent-blue) 50%, #fff 65%); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; animation: premiumShine 5s infinite cubic-bezier(0.4, 0, 0.2, 1); }
.footer-logo-anim h2 span { display: block; font-size: 1.2rem; font-weight: 300; letter-spacing: 8px; margin-top: 0.2rem; }
@keyframes premiumShine { 0% { background-position: 100% 0%; } 50% { background-position: 0% 100%; } 100% { background-position: 100% 0%; } }
.footer-links ul { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; row-gap: 0.8rem; }
.footer-links a:hover { color: var(--accent-blue); padding-right: 5px; }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; direction: ltr; text-align: right; }
.contact-link { display: flex; align-items: center; justify-content: flex-end; gap: 0.8rem; font-family: var(--font-english); }
.contact-link i { font-style: normal; font-size: 1.2rem; }
.contact-link:hover { color: var(--accent-blue); transform: translateX(-5px); }
.divider { width: 100%; height: 1px; background: rgba(255,255,255,0.05); margin-bottom: 2rem; }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* GLOBAL BACKGROUND & CURSOR */
.global-bg-anim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background-color: #000000;
}

.global-bg-anim::before,
.global-bg-anim::after {
    content: '';
    position: absolute;
    width: 70vw;
    height: 70vh;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
    pointer-events: none;
}

.global-bg-anim::before {
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(126, 224, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 80%);
    animation: driftAurora1 18s infinite alternate ease-in-out;
}

.global-bg-anim::after {
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(126, 224, 255, 0.12) 0%, transparent 70%);
    animation: driftAurora2 22s infinite alternate ease-in-out;
}

@keyframes driftAurora1 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    100% { transform: translate(8vw, 12vh) rotate(5deg) scale(1.1); }
}

@keyframes driftAurora2 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    100% { transform: translate(-12vw, -8vh) rotate(-5deg) scale(1.15); }
}

.cursor-follower {
    position: fixed;
    /* center offset for 80px size */
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    background: #7ee0ff;
    /* slightly organic, static irregular circle */
    border-radius: 46% 54% 48% 52% / 51% 45% 55% 49%;
    filter: blur(30px);
    opacity: 0.35;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
}

/* UTILITIES */
.hover-3d { transition: transform 0.3s ease; }
.hover-3d:hover { transform: translateY(-5px) scale(1.02); }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .header-container { position: relative; justify-content: space-between; align-items: center; }
    .header-nav { display: none; }
    .mobile-menu-btn { display: flex !important; order: 1; z-index: 101; }
    .header-left.header-logo { position: static; transform: none; order: 2; margin-right: auto; }
    .header-right { display: none !important; }
    .about-container { flex-direction: column; }
    .portfolio-item { width: 85vw; }
    .swiper-slide { width: 320px; }
    .services-grid { grid-template-columns: 1fr; }
}

.mobile-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(5,5,5,0.98); backdrop-filter: blur(20px); z-index: 99; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; margin: 0; padding: 0; }
.mobile-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-overlay ul { list-style: none; text-align: center; padding: 0; margin: 0; }
.mobile-overlay li { margin: 1.5rem 0; transform: translateY(20px); opacity: 0; transition: all 0.4s ease; }
.mobile-overlay.active li { transform: translateY(0); opacity: 1; }
.mobile-overlay a { font-size: 2rem; font-weight: 800; color: #fff; text-decoration: none; }
.mobile-overlay a:hover { color: var(--accent-blue); }

.mobile-menu-btn { background: none; border: none; cursor: pointer; display: none; width: 30px; height: 24px; position: relative; padding: 0; }
.mobile-menu-btn span { display: block; position: absolute; left: 0; width: 100%; height: 3px; background: #fff; transition: all 0.3s ease; border-radius: 3px; }
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 10.5px; }
.mobile-menu-btn span:nth-child(3) { top: 21px; }

.mobile-menu-btn.active span:nth-child(1) { top: 10.5px; transform: rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { top: 10.5px; transform: rotate(-45deg); }
@media (max-width: 768px) {
    .section-padding { padding: 4rem 1.5rem; }
    .process-row-content { padding: 0 6rem 0 1.5rem; }
    .process-row-content h3 { font-size: 1.3rem; }
    .process-row-content p { font-size: 1rem; }
    .step-num { width: 3rem; height: 3rem; font-size: 1.1rem; }
    .cta-container { padding: 2.5rem 1.5rem; }
    .footer-container { flex-direction: column; text-align: center; align-items: center; }
    .footer-links ul { align-items: center; }
    .footer-contact { align-items: center; justify-content: center; }
    .contact-link { flex-direction: row-reverse; }
}

/* Feature Overrides */
.why-card h3 { margin-bottom: 1.5rem !important; }

/* Custom Dark Chrome Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #050505; border-left: 1px solid rgba(255,255,255,0.05); }
::-webkit-scrollbar-thumb { background: rgba(115, 215, 255, 0.4); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-blue); }

@media (max-width: 768px) {
    #cursor-follower { display: none !important; }
    html, body { overflow-x: hidden; width: 100%; max-width: 100vw; position: relative; }
    .portfolio-section { padding: 3rem 0 1rem; }
    .portfolio-section .section-header { margin-bottom: 2rem; }
    .portfolio-scroll-container { overflow-x: auto !important; scroll-snap-type: x mandatory; padding-bottom: 2rem; scroll-behavior: smooth; justify-content: flex-start; }
    .portfolio-scroll-container::-webkit-scrollbar { display: none; }
    .portfolio-item { scroll-snap-align: center; margin-left: 1rem; flex-shrink: 0; width: 75vw !important; height: 35vh !important; min-height: 250px !important; }
    .header-right .btn-primary { padding: 0.6rem 1rem; font-size: 0.85rem; }
}

/* PREMIUM ANIMATED GLOW TEXT */
.dynamic-glow-text {
    background: linear-gradient(110deg, #fff 15%, var(--accent-blue) 45%, #fff 85%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premiumSweep 5s infinite cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
}
@keyframes premiumSweep {
    0% { background-position: -100% center; text-shadow: 0 0 0px transparent; }
    50% { text-shadow: 0 0 20px rgba(115,215,255,0.7); }
    100% { background-position: 200% center; text-shadow: 0 0 0px transparent; }
}

/* AJAX FORM STATUS */
.form-status { margin-top: 1rem; padding: 1rem; border-radius: 8px; text-align: center; font-weight: bold; display: none; transition: all 0.3s ease; }
.form-status.success { display: block; background: rgba(46, 213, 115, 0.1); color: #2ed573; border: 1px solid rgba(46, 213, 115, 0.3); }
.form-status.error { display: block; background: rgba(255, 71, 87, 0.1); color: #ff4757; border: 1px solid rgba(255, 71, 87, 0.3); }
