/* ==========================================================================
   DHT AGENCY - ULTRA-PREMIUM NEON GREEN DARK THEME STYLESHEET
   Base: #060913 (Space Dark) with Neon Green (#39FF14) Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Premium Cyber Neon Green & Deep Slate Dark Theme */
    --bg-base: #060913;      /* Ultra deep slate black */
    --bg-darker: #0b0f1d;    /* Deep space card background */
    --bg-card: rgba(11, 15, 29, 0.7);
    --bg-card-hover: rgba(18, 24, 46, 0.95);
    --border-color: rgba(57, 255, 20, 0.12); /* Neon Green Border */
    --border-hover: rgba(57, 255, 20, 0.45); /* Glowing Neon Green Border */
    
    /* Text Colors */
    --text-main: #FFFFFF;      /* High contrast white */
    --text-muted: #94A3B8;     /* Elegant muted slate */
    --text-dark: #64748B;      /* Deep slate secondary */
    
    /* Premium Gradients */
    --grad-primary: linear-gradient(135deg, #39FF14, #00D2FF); /* Neon Green to Electric Cyan */
    --grad-secondary: linear-gradient(135deg, #00FF87, #10B981); /* Pure Neon Green to Emerald */
    --grad-accent: linear-gradient(135deg, #39FF14, #FF007F); /* Neon Green to Cyberpunk Magenta */
    --grad-pastel: linear-gradient(135deg, #0b0f1d, #080c14); /* Sleek dark layers */
    --grad-glow: radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.08) 0%, rgba(6, 9, 19, 0) 70%);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transition & Shadows - Premium high-end feel */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(57, 255, 20, 0.05);
    --shadow-hover: 0 30px 60px -20px rgba(57, 255, 20, 0.25), 0 0 0 1px rgba(57, 255, 20, 0.3);
    --shadow-glow: 0 0 30px rgba(57, 255, 20, 0.2);
    
    --container-width: 1280px;
}

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

html, body {
    min-height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
    background: #060913;
}

body {
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--grad-glow);
    background-attachment: fixed;
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--text-main);
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
    background: transparent;
}

section {
    background: transparent;
}

.text-gradient-primary {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-secondary {
    background: var(--grad-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--grad-primary);
    color: #060913; /* Deep contrast dark text on bright neon primary button */
    box-shadow: 0 10px 25px -10px rgba(57, 255, 20, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 700;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-accent);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(57, 255, 20, 0.7);
    color: #060913;
}

.btn-secondary {
    background: rgba(11, 15, 29, 0.6);
    color: #FFFFFF;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    border-color: #39FF14;
    color: #39FF14;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(57, 255, 20, 0.3);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 5rem auto;
}

.section-header .tag {
    display: inline-block;
    padding: 0.45rem 1.25rem;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #39FF14;
    margin-bottom: 1.25rem;
}

.section-header h2 {
    font-size: 2.85rem;
    color: var(--text-main);
    margin-bottom: 1.25rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Frosted Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.75rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.glass-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   NAVIGATION BAR (PREMIUM SKY BLUE NAV & MEGA MENU)
   ========================================================================== */
/* Top Bar */
.top-bar {
    background: #0d1e3d; /* Sleek Deep Blue-Navy as in reference image */
    color: #FFFFFF;
    font-size: 0.82rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1002;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 1.8rem;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F8FAFC;
    font-weight: 500;
}

.top-info i {
    color: #39FF14; /* Neon green icons */
}

.top-social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.top-social a {
    color: #FFFFFF;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

.top-social a:hover {
    color: #39FF14;
    transform: translateY(-1px) scale(1.15);
}

/* Red/Orange slant pseudo-element as in the reference image */
.top-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%); /* Orange-Red linear gradient */
    transform: skewX(-32deg) translateX(70px);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .top-bar::after {
        display: none;
    }
    .top-info {
        flex-direction: column;
        gap: 0.4rem;
    }
    .top-bar-container {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.08);
}

.header.scrolled {
    background: rgba(6, 9, 19, 0.98);
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(57, 255, 20, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo {
    font-size: 1.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: #39FF14;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 12px #39FF14;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFFFFF;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover, .nav-item:hover > .nav-link, .nav-link.active {
    color: #39FF14 !important;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(11, 15, 29, 0.98) !important;
    border: 1.5px solid rgba(57, 255, 20, 0.3) !important;
    border-radius: 12px;
    padding: 1rem 0;
    opacity: 0;
    min-width: 280px;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(57, 255, 20, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000 !important;
}

.nav-item:hover > .dropdown-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.dropdown-menu li {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dropdown-menu li a {
    display: block !important;
    padding: 0.75rem 1.8rem !important;
    font-size: 0.94rem !important;
    color: #FFFFFF !important; /* Pure white text */
    transition: var(--transition-smooth) !important;
    font-weight: 600 !important;
    text-align: left !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.dropdown-menu li a:hover {
    color: #39FF14 !important; /* Bright Neon Green */
    background: rgba(57, 255, 20, 0.08) !important;
    padding-left: 2.1rem !important;
}
/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition-smooth);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #0F172A;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1001;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    cursor: pointer;
}

.mobile-menu {
    margin-top: 3rem;
}

.mobile-nav-item {
    margin-bottom: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #F8FAFC;
}

.mobile-submenu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #94A3B8;
}

.mobile-submenu li a:hover {
    color: #FFFFFF;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   STUNNING FULLSCREEN HERO SLIDER (PREMIUM DIFFERENT DARK CONTEXT - BASE #0F172A)
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 750px;
    width: 100%;
    overflow: hidden;
    background: #090D19;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7) contrast(1.1) saturate(1.1);
    transform: scale(1.08);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Elite dark-overlay with digital glow patterns */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(9, 13, 25, 0.95) 100%);
    z-index: 3;
}

.slide-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
}

.slide-content {
    max-width: 850px;
}

.slide-tag {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #38BDF8;
    margin-bottom: 1.8rem;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.slide-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.8rem;
    color: #FFFFFF;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-desc {
    font-size: 1.25rem;
    color: #94A3B8;
    margin-bottom: 3rem;
    max-width: 650px;
    line-height: 1.7;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.slide-actions {
    display: flex;
    gap: 1.2rem;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

.slide.active .slide-tag,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-actions {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Controls - Stunning translucent dark-theme capsules */
.slider-nav {
    position: absolute;
    bottom: 3.5rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: #38BDF8;
    color: #0F172A;
    border-color: transparent;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dot {
    width: 28px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: #38BDF8;
    width: 56px;
}

/* ==========================================================================
   SERVICES SECTOR GRID
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: rgba(11, 15, 29, 0.6) !important;
    border: 1px solid rgba(57, 255, 20, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.service-card:hover {
    background: rgba(18, 24, 46, 0.9) !important;
    border-color: rgba(57, 255, 20, 0.5) !important;
    box-shadow: 0 25px 50px rgba(57, 255, 20, 0.15);
    transform: translateY(-8px);
}

.service-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: #060913; /* Contrast dark icon text */
    background: var(--grad-primary);
    box-shadow: 0 8px 20px rgba(57, 255, 20, 0.25);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
    font-weight: 700;
    color: #FFFFFF !important;
}

.service-card p {
    color: #94A3B8 !important;
    font-size: 0.98rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-card-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(57, 255, 20, 0.1) !important;
}

.service-sublink {
    font-size: 0.88rem;
    color: #94A3B8 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    transition: var(--transition-smooth);
}.service-sublink:hover {
    color: #39FF14 !important;
    padding-left: 8px !important;
}

.learn-more {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-main);
}

.learn-more i {
    transition: var(--transition-smooth);
}

.service-card:hover .learn-more {
    color: #39FF14 !important; /* Glow neon green */
}

.service-card:hover .learn-more i {
    transform: translateX(4px);
    color: #39FF14 !important;
}

/* ==========================================================================
   WHY CHOOSE US GRID
   ========================================================================== */
.why-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.8rem;
    background: rgba(11, 15, 29, 0.6) !important;
    border: 1px solid rgba(57, 255, 20, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(18, 24, 46, 0.9) !important;
    border-color: rgba(57, 255, 20, 0.5) !important;
    box-shadow: 0 25px 50px rgba(57, 255, 20, 0.15);
    transform: translateY(-6px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.6rem;
    color: #39FF14 !important;
    background: none !important;
    -webkit-text-fill-color: #39FF14 !important;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}
    font-size: 0.88rem;
    color: #94A3B8 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition-smooth);
}

.stat-card:hover .stat-label {
    color: #FFFFFF !important;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.why-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #39FF14;
    box-shadow: 0 4px 12px rgba(57, 255, 20, 0.15);
    flex-shrink: 0;
}

.why-feature-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.why-feature-info p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* ==========================================================================
   PORTFOLIO FILTER SHOWCASE
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(11, 15, 29, 0.6) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-muted) !important;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--grad-primary) !important;
    color: #060913 !important; /* Premium deep dark contrast text matching Get Free Quote */
    border-color: transparent !important;
    box-shadow: 0 10px 25px -10px rgba(57, 255, 20, 0.5) !important;
    transform: translateY(-2px);
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-premium);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, rgba(15, 23, 42, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
    transform: translateY(15px);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.08);
}

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

.portfolio-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #0EA5E9;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.portfolio-link {
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #FFFFFF;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 2px;
    width: fit-content;
}

.portfolio-link:hover {
    border-color: #0EA5E9;
    color: #0EA5E9;
}

/* ==========================================================================
   WORKFLOW PROCESS STEPS
   ========================================================================== */
.process-timeline {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(15, 23, 42, 0.06);
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5.5rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-node {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4b4e72;
    border: 2.5px solid #4F46E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #4F46E5;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
    transition: var(--transition-smooth);
}

.process-step:hover .process-node {
    background: var(--grad-primary);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(55, 51, 127, 0.3);
}

.process-content {
    grid-column: 1;
    text-align: right;
}

.process-step:nth-child(even) .process-content {
    grid-column: 2;
    text-align: left;
}

.process-card {
    padding: 2.5rem;
    background: rgba(86, 106, 178, 0.485);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.process-step:nth-child(even) .process-card h3 {
    justify-content: flex-start;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* ==========================================================================
   CLIENT TESTIMONIALS (HUMAN SCALE)
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(11, 15, 29, 0.6) !important;
    border: 1px solid rgba(57, 255, 20, 0.15) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.75rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(57, 255, 20, 0.03);
    transition: var(--transition-smooth) !important;
}

.testimonial-card:hover {
    background: rgba(18, 24, 46, 0.85) !important;
    border-color: rgba(57, 255, 20, 0.45) !important;
    box-shadow: 0 25px 50px rgba(57, 255, 20, 0.2), 0 0 25px rgba(57, 255, 20, 0.1);
    transform: translateY(-6px);
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.65;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(57, 255, 20, 0.35);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 0.2rem;
    color: #F59E0B;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   FAQ ACCORDIONS
   ========================================================================== */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.faq-item {
    border-radius: 12px !important;
    overflow: hidden;
    background: rgba(11, 15, 29, 0.6) !important;
    border: 1px solid rgba(57, 255, 20, 0.12) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important; /* Extremely smooth Apple-like transitions */
    margin: 0 !important;
}

.faq-item:hover {
    background: rgba(18, 24, 46, 0.85) !important;
    border-color: rgba(57, 255, 20, 0.4) !important;
    box-shadow: 0 15px 35px rgba(57, 255, 20, 0.08);
}

/* Open FAQ State - Premium UX focused scaling and extra margins */
.faq-item.active {
    background: rgba(18, 24, 46, 0.95) !important;
    border-color: rgba(57, 255, 20, 0.5) !important;
    box-shadow: 0 20px 45px rgba(57, 255, 20, 0.15) !important;
    transform: scale(1.025) !important; /* Elegantly scale up slightly */
    margin: 0.8rem 0 !important; /* Add space/spacing around active card */
    z-index: 10;
}.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px !important; /* Razor-thin compact 60px height in default state */
    background: none;
    border: none;
    text-align: left;
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.12rem !important; /* Increased slightly for improved readability */
    padding: 0 1.6rem !important;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.faq-question:hover {
    color: #39FF14 !important;
}

.faq-icon {
    width: 26px !important;
    height: 26px !important;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem !important;
    transition: var(--transition-smooth);
    color: #39FF14;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg); /* Smoothly rotate dropdown chevron downward/upward */
    background: #39FF14 !important;
    color: #060913 !important;
    border-color: transparent !important;
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important; /* Smooth heights calculations */
}

/* Polished reveal transitions with soft slide & fade-in */
.faq-answer-inner {
    padding: 0 1.6rem 1.4rem 1.6rem !important;
    color: #94A3B8 !important;
    font-size: 0.96rem !important;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-8px); /* Initial offset for slide animation */
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.faq-item.active .faq-answer-inner {
    opacity: 1 !important;
    transform: translateY(0) !important; /* Slide smoothly into view */
}

/* ==========================================================================
   CONTACT CTA CAPSULE
   ========================================================================== */
.contact-cta {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 6rem 3rem;
    text-align: center;
    background: rgba(11, 15, 29, 0.6) !important;
    border: 1.5px solid rgba(57, 255, 20, 0.2) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(57, 255, 20, 0.08);
}

.cta-content {
    position: relative;
    z-index: 5;
    max-width: 750px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.contact-cta p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.75rem;
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER (PREMIUM CHROME DARK CONTRAST CHROME)
   ========================================================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 7rem 0 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 5rem;
}

.footer-logo-desc p {
    color: var(--text-muted);
    margin: 1.5rem 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: #4F46E5;
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(79, 70, 229, 0.2);
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.6rem;
    font-weight: 700;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background: #4F46E5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    width: fit-content;
    font-weight: 500;
}

.footer-links a:hover {
    color: #4F46E5;
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-item i {
    color: #4F46E5;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.copyright {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: #4F46E5;
}

/* ==========================================================================
   SCROLL REVEALS
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ==========================================================================
   INNER HERO SECTION & SERVICE DETAIL SPECIFICS
   ========================================================================== */
.inner-hero {
    position: relative;
    padding: 12rem 0 7rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.05) 0%, rgba(255, 255, 255, 0) 60%), var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.inner-hero-content {
    max-width: 800px;
}

.inner-hero h1 {
    font-size: 3.85rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.inner-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 5rem;
}

.detail-content-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.detail-content-section p {
    color: var(--text-muted);
    font-size: 1.08rem;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.benefit-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.benefit-text p {
    font-size: 0.98rem;
    color: var(--text-muted);
}

.detail-sidebar-card {
    position: sticky;
    top: 120px;
    background: rgba(11, 15, 29, 0.65) !important;
    border: 1.5px solid rgba(57, 255, 20, 0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    z-index: 5;
}

.sidebar-form h3 {
    font-size: 1.45rem;
    margin-bottom: 1.8rem;
    color: #FFFFFF !important;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    color: #94A3B8 !important; /* Elegant slate grey */
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    background: rgba(6, 9, 19, 0.8) !important;
    border: 1px solid rgba(57, 255, 20, 0.15) !important;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: #FFFFFF !important;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

select.form-input {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2339FF14' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1.25rem center !important;
    background-size: 1.1rem !important;
    padding-right: 3rem !important;
    cursor: pointer;
}

.form-input::placeholder {
    color: #475569 !important; /* Muted placeholder slate */
}

.form-input option {
    background: #0b0f1d !important;
    color: #FFFFFF !important;
    padding: 1rem !important;
}

.form-input:focus {
    outline: none;
    border-color: #39FF14 !important;
    background: rgba(11, 15, 29, 0.9) !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.25) !important;
}

textarea.form-input {
    height: 130px;
    resize: none;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .dropdown-services {
        width: 720px;
        left: -150px;
        gap: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    .footer-logo-desc {
        grid-column: span 4;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .section-padding {
        padding: 6rem 0;
    }
    .why-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .slide-title {
        font-size: 3.25rem;
    }
    .process-timeline::before {
        left: 2rem;
    }
    .process-node {
        left: 2rem;
    }
    .process-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-left: 4.5rem;
    }
    .process-content {
        grid-column: 1 !important;
        text-align: left !important;
    }
    .process-step:nth-child(even) .process-card h3 {
        justify-content: flex-start;
    }
    .process-card h3 {
        justify-content: flex-start;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .detail-sidebar-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-logo-desc {
        grid-column: span 2;
    }
    .slide-title {
        font-size: 2.6rem;
    }
    .section-header h2 {
        font-size: 2.25rem;
    }
    .contact-cta {
        padding: 4rem 2rem;
    }
    .contact-cta h2 {
        font-size: 2.5rem;
    }
    .slider-nav {
        right: 2rem;
        bottom: 2rem;
    }
    .slider-dots {
        left: 2rem;
        bottom: 2.5rem;
    }
    .slider-dot {
        width: 18px;
    }
    .slider-dot.active {
        width: 36px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-logo-desc {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .slide-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
}

/* ==========================================================================
   CUSTOM DROPDOWN SELECTION SYSTEM (REDESIGNED)
   ========================================================================== */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: rgba(6, 9, 19, 0.8) !important;
    border: 1px solid rgba(57, 255, 20, 0.15) !important;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: #FFFFFF !important;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.custom-dropdown-trigger i {
    color: #39FF14;
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dropdown.active .custom-dropdown-trigger {
    border-color: #39FF14 !important;
    background: rgba(11, 15, 29, 0.9) !important;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.25) !important;
}

.custom-dropdown.active .custom-dropdown-trigger i {
    transform: rotate(180deg);
}

.custom-dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #0b0f1d !important;
    border: 1px solid rgba(57, 255, 20, 0.2) !important;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(57, 255, 20, 0.05);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.custom-dropdown.active .custom-dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.custom-dropdown-option {
    padding: 0.85rem 1.2rem;
    color: #94A3B8;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.custom-dropdown-option:last-child {
    border-bottom: none;
}

.custom-dropdown-option:hover {
    background: rgba(57, 255, 20, 0.08) !important;
    color: #39FF14 !important;
    padding-left: 1.5rem !important; /* Premium slide hover */
}

.custom-dropdown-option.selected {
    background: rgba(57, 255, 20, 0.12) !important;
    color: #39FF14 !important;
    font-weight: 600;
}

/* ==========================================================================
   PREMIUM MEGA DROPDOWN SYSTEM STYLING FIX
   ========================================================================== */
.dropdown-services {
    display: flex !important;
    flex-direction: row !important;
    gap: 2.2rem !important;
    padding: 2.5rem !important; /* Generous padding to prevent clipping of any text */
    min-width: 1080px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(15px) !important;
    border-radius: 20px !important;
}

.nav-item:hover > .dropdown-services {
    transform: translateX(-50%) translateY(0) !important;
}

.mega-column {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
}

.mega-column h4 {
    font-size: 1rem !important;
    color: #FFFFFF !important;
    margin-bottom: 1.2rem !important;
    border-bottom: 1.5px solid rgba(57, 255, 20, 0.15) !important;
    padding-bottom: 0.6rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    padding-left: 0.6rem !important; /* Ensure the text doesn't touch the left edge or any border */
}

.mega-column ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mega-column ul li {
    width: 100% !important;
}

.mega-column ul li a {
    display: block !important;
    padding: 0.6rem 0.8rem !important;
    border-radius: 8px !important;
    font-size: 0.88rem !important;
    color: var(--text-muted) !important;
    font-weight: 600 !important;
    transition: var(--transition-smooth) !important;
    text-align: left !important;
}

.mega-column ul li a:hover {
    color: #39FF14 !important;
    background: rgba(57, 255, 20, 0.08) !important;
    padding-left: 1.2rem !important;
}

/* ==========================================================================
   BREADCRUMBS STYLES
   ========================================================================== */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.breadcrumbs a:hover {
    color: #39FF14;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.breadcrumbs .separator {
    color: #39FF14;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
}

.breadcrumbs .current {
    color: #FFFFFF;
    pointer-events: none;
}

@media (max-width: 992px) {
    .nav-actions .btn {
        display: none !important;
    }
}

/* Mobile Sticky CTA Bottom Bar */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    grid-template-columns: 1fr 1fr;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
    border-top: 1.5px solid rgba(57, 255, 20, 0.2);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFFFFF !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.call-btn {
    background: #0f2a4a;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.call-btn:hover {
    background: #1e3a5f;
    color: #39FF14 !important;
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #20ba5a;
}

.sticky-cta-btn i {
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: grid;
    }
    body {
        padding-bottom: 45px; /* Offset the fixed bar height */
    }
}
