
/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-1); }
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;600;700;800;900&display=swap');

/* =========================================================================
   1. CSS Variables & Design System (Editorial Light Theme)
========================================================================= */
:root {
    --bg-main: #0B0A0F;
    --bg-card: rgba(22, 20, 30, 0.45);
    --bg-dark: #07060A;
    
    --accent-1: #7C3AED;
    --accent-2: #00FF66;
    --accent-3: #10B981;
    
    --text-main: #F4F4F6;
    --text-muted: #A1A1AA;
    --text-light: #FFFFFF;
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    --glass-border: 1px solid rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: var(--font-main); background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; overflow-x: hidden; width: 100%; position: relative; cursor: auto; -webkit-overflow-scrolling: touch; }
a, button, input[type="submit"] { cursor: pointer; }
@media (min-width: 992px) {
    body { cursor: none; }
    a, button, input[type="submit"] { cursor: none; }
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.gradient-text { background: linear-gradient(135deg, var(--accent-1), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Cyber Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: 4px; font-weight: 600; text-decoration: none; transition: var(--transition); font-family: var(--font-main); text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; border: none; }
.btn-primary { background: transparent; color: var(--accent-1); border: 1px solid var(--accent-1); box-shadow: 0 0 10px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.1); }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-1); color: #fff; box-shadow: 0 0 20px rgba(0, 255, 102, 0.3), inset 0 0 20px rgba(0, 255, 102, 0.3); }
.btn-outline { background: transparent; color: var(--text-muted); border: 1px solid rgba(28,26,23,0.15); }
.btn-outline:hover { border-color: var(--accent-1); color: var(--accent-1); background: rgba(0, 255, 102, 0.05); box-shadow: 0 0 10px rgba(0, 255, 102, 0.1); }
.btn-lg { padding: 1rem 2rem; font-size: 0.95rem; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 0; z-index: 1000; transition: var(--transition); background: transparent; }
.navbar.scrolled { padding: 1rem 0; background: rgba(11, 10, 15, 0.75); backdrop-filter: blur(25px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 10px 40px rgba(0,0,0,0.04); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { text-decoration: none; color: var(--text-main); display: flex; align-items: center; justify-content: flex-start; margin-left: -12px; }
.logo-text { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; letter-spacing: 2px; background: linear-gradient(to right, var(--accent-1), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; padding-right: 5px; display: inline-block; }
.logo-text .accent { text-shadow: none; color: inherit; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 1.2rem; }
.nav-links a:not(.btn) { 
    color: rgba(255, 255, 255, 0.75) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none; 
    font-weight: 600; 
    transition: var(--transition); 
    font-size: 0.95rem; 
    letter-spacing: 1px; 
}
.nav-links a.btn {
    text-decoration: none; 
    transition: var(--transition); 
    font-size: 0.95rem; 
    letter-spacing: 1px; 
}
.nav-links a:not(.btn):hover { 
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.8) !important;
}

/* Mobile menu simple lines */
.mobile-menu-btn { display: none; width: 30px; height: 20px; position: relative; cursor: pointer; }
.mobile-menu-btn span { display: block; height: 2px; width: 100%; background: var(--text-main); position: absolute; transition: var(--transition); }
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }

/* Custom Cursor */
.custom-cursor { position: fixed; top: 0; left: 0; width: 10px; height: 10px; background-color: var(--accent-1); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 9999; transition: width 0.2s, height 0.2s, background-color 0.2s; }
.custom-cursor-follower { position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 1.5px solid rgba(124, 58, 237, 0.5); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 9998; transition: transform 0.1s ease-out, width 0.2s, height 0.2s, border-color 0.2s; }
.custom-cursor.hover { width: 60px; height: 60px; background-color: rgba(0, 255, 102, 0.1); mix-blend-mode: multiply; }
.custom-cursor-follower.hover { width: 80px; height: 80px; border-color: rgba(0, 255, 102, 0.8); }

/* =========================================================================
   2. Layout Elements & Components (Showcase, Metrics, FAQ, Manifesto)
========================================================================= */

/* Section & Common Rules */
.section { padding: 5rem 0; }
.bg-light { background-color: var(--bg-dark); }
.text-center { text-align: center; }

/* Page Headers */
.page-header { padding: 10rem 0 4rem; text-align: center; background: radial-gradient(circle at center, rgba(28,26,23,0.03) 0%, transparent 60%); }
.page-header[style*="background"] { background-size: cover; background-position: center; position: relative; text-align: center; }
.page-header[style*="background"] .container { margin: 0 auto; max-width: 1280px; }
.page-header[style*="background"] .page-title { color: var(--text-main); margin: 0 auto; }
.page-header[style*="background"] .page-subtitle { color: var(--text-muted); text-shadow: none; max-width: 800px; margin: 0 auto; }
.page-title { font-size: 3.5rem; margin-bottom: 1.5rem; }
.page-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 800px; margin: 0 auto; }
.accent-text { color: var(--accent-1); }

/* Manifesto */
.manifesto { padding: 6rem 0; text-align: center; max-width: 900px; margin: 0 auto; }
.manifesto-text { font-size: 2.5rem; line-height: 1.4; font-family: var(--font-heading); font-weight: 500; }
.manifesto-text span { color: var(--accent-2); font-weight: 700; }

/* Showcase Block */
.showcase-block { display: flex; align-items: center; gap: 4rem; padding: 5rem 0; border-bottom: var(--glass-border); }
.showcase-block:nth-child(even) { flex-direction: row-reverse; }
.showcase-content { flex: 1; }
.service-badge { display: inline-block; padding: 0.25rem 0.75rem; background: rgba(28,26,23,0.05); border-radius: 50px; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 1.5rem; color: var(--text-muted); }
.showcase-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.showcase-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }
.showcase-list { list-style: none; margin-bottom: 2rem; }
.showcase-list li { position: relative; padding-left: 1.5rem; margin-bottom: 1rem; color: var(--text-main); }
.showcase-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent-1); font-weight: bold; }
.showcase-visual { flex: 1; min-height: 500px; width: 100%; border-radius: 24px; position: relative; overflow: hidden; box-shadow: var(--glass-shadow); }
.cyber-img-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.1), transparent); z-index: 1; pointer-events: none; }

/* Metrics Bar */
.metrics-bar { display: flex; justify-content: space-around; background: var(--bg-card); color: var(--text-main); padding: 4rem 2rem; border-radius: 24px; margin: 4rem 0; box-shadow: var(--glass-shadow); border: var(--glass-border); }
.metric-item { text-align: center; }
.metric-value { font-size: 3.5rem; font-weight: 900; font-family: var(--font-heading); background: linear-gradient(135deg, var(--accent-1), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; }
.metric-label { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); font-weight: 600; }

/* Services Grid & Cards */
.services-grid, .process-grid { display: grid; gap: 2.5rem; }
.process-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.service-card, .process-card { background: var(--bg-card); border-radius: 16px; overflow: hidden; box-shadow: var(--glass-shadow); transition: var(--transition); }
.service-card:hover, .process-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.detailed-service-img { height: 250px; position: relative; overflow: hidden; }
.detailed-service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .detailed-service-img img { transform: scale(1.05); }
.detailed-service-body { padding: 2rem; }
.service-title { font-size: 1.5rem; margin-bottom: 1rem; }
.service-desc { color: var(--text-muted); line-height: 1.6; }

.process-card { padding: 2.5rem; text-align: center; }
.process-num { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: rgba(59, 50, 153, 0.1); color: var(--accent-1); font-size: 1.5rem; font-weight: 700; border-radius: 50%; margin-bottom: 1.5rem; }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; padding: 4rem 0; }
.faq-item { border-bottom: 1px solid rgba(28,26,23,0.1); }
.faq-question { width: 100%; text-align: left; padding: 1.5rem 0; font-size: 1.25rem; font-weight: 600; background: none; border: none; color: var(--text-main); cursor: pointer; font-family: var(--font-heading); display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: "+"; font-size: 1.5rem; color: var(--accent-1); transition: var(--transition); }
.faq-question.active::after { content: "−"; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-muted); }

/* Footers and Utilities */
.footer { padding: 4rem 0 2rem; background: var(--bg-dark); color: var(--text-light); }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { color: #fff; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: #fff; text-decoration: none; opacity: 0.7; }
.footer-links a:hover { opacity: 1; color: var(--accent-3); text-shadow: none; }
.footer-bottom { text-align: center; opacity: 0.5; font-size: 0.85rem; }

/* Transitions for fading */
.fade-up-element { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in { opacity: 1; transform: translateY(0); }

/* =========================================================================
   3. Homepage Specific Sections (Hero, Portfolio, About, Contact)
========================================================================= */

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding-top: 80px; overflow: hidden; background: radial-gradient(circle at center, rgba(28,26,23,0.03) 0%, transparent 70%); }
.glow-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(59,50,153,0.05) 0%, transparent 60%); border-radius: 50%; z-index: -1; pointer-events: none; }
.hero-content { text-align: center; max-width: 900px; z-index: 2; position: relative; }
.hero-title { font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 2rem; letter-spacing: -2px; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 1.5rem; justify-content: center; }
.hero-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; pointer-events: none; }
.shape-1 { width: 300px; height: 300px; background: var(--accent-1); top: 10%; left: 10%; }
.shape-2 { width: 400px; height: 400px; background: var(--accent-2); bottom: 10%; right: 10%; }

/* Portfolio Grid */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.portfolio-item { position: relative; border-radius: 16px; overflow: hidden; display: block; aspect-ratio: 4/3; box-shadow: var(--glass-shadow); transition: var(--transition); }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2.5rem 2rem 2rem; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%); color: #fff; transform: translateY(20px); opacity: 0; transition: all 0.4s ease; }
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); opacity: 1; }
.portfolio-category { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 0.5rem; }
.portfolio-title { font-size: 1.5rem; color: #fff; margin: 0; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.stats { display: flex; gap: 3rem; margin-top: 2.5rem; }
.stat-num { display: block; font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); color: var(--accent-1); }
.stat-text { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.glass-panel { background: var(--bg-card); padding: 3rem; border-radius: 24px; box-shadow: var(--glass-shadow); border: var(--glass-border); position: relative; z-index: 2; }
.glass-panel h3 { margin-bottom: 2rem; }
.bar-chart .bar { margin-bottom: 1.5rem; background: rgba(28,26,23,0.05); height: 8px; border-radius: 4px; position: relative; }
.bar-fill { height: 100%; border-radius: 4px; position: absolute; top: 0; left: 0; }
.bar span { position: absolute; top: -25px; font-size: 0.85rem; font-weight: 600; }
.about-visual { position: relative; }
.about-visual::before { content:''; position: absolute; width: 100%; height: 100%; background: radial-gradient(circle, rgba(59,50,153,0.05) 0%, transparent 70%); top: 10%; left: 10%; z-index: 0; border-radius: 50%; }

/* Contact Forms */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.info-items { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.info-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.info-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: var(--bg-card); box-shadow: var(--glass-shadow); }
.glow-pink { color: #E91E63; box-shadow: 0 10px 20px rgba(233,30,99,0.1); }
.glow-purple { color: #9C27B0; box-shadow: 0 10px 20px rgba(156,39,176,0.1); }
.glow-cyan { color: #00BCD4; box-shadow: 0 10px 20px rgba(0,188,212,0.1); }
.contact-form { background: var(--bg-card); padding: 3rem; border-radius: 24px; box-shadow: var(--glass-shadow); }
.form-group { margin-bottom: 1.5rem; }
.form-control { width: 100%; padding: 1rem 1.5rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; background: rgba(255,255,255,0.02); font-family: var(--font-main); font-size: 1rem; transition: var(--transition); color: var(--text-main); }
.form-control:focus { outline: none; border-color: var(--accent-1); background: rgba(255,255,255,0.04); box-shadow: 0 0 20px rgba(124,58,237,0.25); }
textarea.form-control { resize: vertical; min-height: 120px; }
.w-100 { width: 100%; }
.mb-4 { margin-bottom: 1.5rem; }

/* Responsive Adjustments Update */
@media (max-width: 992px) {
    .showcase-block { flex-direction: column !important; gap: 2rem; }
    .showcase-visual { width: 100%; min-height: 350px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-title { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .page-header { padding: 8rem 0 3rem; }
    .page-title { font-size: 2.5rem; }
    .manifesto-text { font-size: 1.8rem; }
    .metrics-bar { flex-direction: column; gap: 3rem; padding: 3rem 1rem; }
    .faq-question { font-size: 1.1rem; }
    .navbar .logo img { 
        height: 60px !important; 
        mix-blend-mode: multiply; 
    }
    .navbar.scrolled { border-bottom: none; background: rgba(11, 10, 15, 0.95); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
    .navbar.mobile-menu-open { background: rgba(11, 10, 15, 0.98); }

    .nav-links { 
        display: flex; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        max-height: 0;
        overflow: hidden;
        background: rgba(11, 10, 15, 0.98); 
        backdrop-filter: blur(20px);
        padding: 0 2rem; 
        transition: max-height 0.4s ease-in-out, padding 0.4s ease; 
        z-index: 990; 
        justify-content: flex-start;
        align-items: center; 
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    .nav-links.active { max-height: 80vh; padding: 2rem; overflow-y: auto; right: auto; border-top: 1px solid rgba(0,0,0,0.05); }
    .nav-links li { width: 100%; text-align: center; margin: 0.5rem 0; }
    .nav-links li.lang-switch { margin-top: 1.5rem !important; margin-left: 0 !important; border-left: none !important; padding-left: 0 !important; justify-content: center; }

    .mobile-menu-btn { display: block; z-index: 1001; position: relative; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg); bottom: 9px; }

    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    .stats { flex-direction: column; gap: 1.5rem; }
    .contact-form { padding: 2rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
}
/* Mega Menu Dropdown */
.nav-links li { position: relative; }
.dropdown { position: relative; }
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 800px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}
.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
}
.simple-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 250px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}
.dropdown:hover .simple-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(5px);
}
.simple-menu li { width: 100%; margin: 0; padding: 0; }
.simple-menu a {
    display: block !important;
    padding: 0.75rem 1.5rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    transition: var(--transition) !important;
}
.simple-menu a:hover {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-shadow: 0 0 8px rgba(124, 58, 237, 0.6) !important;
    padding-left: 2rem !important;
}
.mega-col { flex: 1; min-width: 150px; }
.mega-col h4 {
    color: var(--accent-1);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-heading);
}
.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.mega-col ul li { line-height: 1.2; margin: 0; padding: 0; }
.mega-col ul li a {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}
.mega-col ul li a:hover {
    color: #fff !important;
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 1rem 0 0 0;
        display: none;
    }
    .dropdown.active .mega-menu { display: flex; opacity: 1; visibility: visible; }
    .dropdown:hover .mega-menu { transform: none; }
}
/* Single Column Dropdown */
.simple-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    width: max-content;
    background: rgba(20, 19, 28, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    padding: 0.15rem 0; /* Extremely tight top/bottom */
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    margin-top: 10px;
}
.simple-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}
.dropdown:hover .simple-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 5px;
}
.simple-menu li { list-style: none; margin: 0; padding: 0; line-height: 1.2; }
.simple-menu li a {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
    font-family: var(--font-body);
    font-size: 0.95rem; /* SAME AS NAV LINKS */
    font-weight: 700;
    letter-spacing: 1px; /* SAME AS NAV LINKS */
    text-decoration: none;
    display: block;
    padding: 0.2rem 1rem; /* Extremely tight vertical padding */
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 0.1rem 0.2rem;
}
.simple-menu li a:hover {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .simple-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: transparent;
        border: none;
        backdrop-filter: none;
        padding: 0.5rem 0;
        display: none;
        margin-top: 0.5rem;
        background: rgba(255,255,255,0.02);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.05);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .simple-menu li a { 
        padding: 0.5rem 0; margin: 0; 
        background: none !important;
        -webkit-text-fill-color: var(--text-muted) !important;
        color: var(--text-muted) !important;
    }
    .simple-menu li a:hover { 
        -webkit-text-fill-color: var(--accent-1) !important;
        color: var(--accent-1) !important; 
        background: transparent; transform: none; 
    }
    .simple-menu::before { display: none; }
    .dropdown.active .simple-menu { display: flex !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }
}









/* Global Logo Blend Fix */



/* Enhanced Logo Sizing */
.navbar .logo img { height: 60px !important; width: 200px !important; object-fit: contain !important; }
@media (max-width: 768px) {
    .navbar .logo img { height: 42px !important; width: 140px !important; object-fit: contain !important; }
}

/* WhatsApp Floating Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-floating-btn svg {
    fill: currentColor;
}


/* Responsive Logo Fix */
.header-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .header-logo-img {
        height: 55px !important;
    }
    .nav-content {
        align-items: center;
    }
    .mobile-menu-btn {
        margin-top: 0 !important;
    }
}

/* Card Glassmorphic & Neon Glow Hover Styles */
.blog-card, .service-card, .process-card, .case-card, .contact-form, .glass-panel {
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}
.blog-card:hover, .service-card:hover, .process-card:hover, .case-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(124,58,237,0.15) !important;
    border-color: rgba(124, 58, 237, 0.3) !important;
}
.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
}
.logo img {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}
