/* ========================================
   VARIABLES & DESIGN SYSTEM
   ======================================== */
:root {
    /* DEFAULT: LIGHT THEME */
    --primary: #7C3AED;       /* Vibrant Purple */
    --primary-light: #A78BFA;
    --primary-dark: #5B21B6;
    --accent: #EC4899;        /* Hot Pink accent */
    --accent-light: #F472B6;
    
    --bg-main: #FFFFFF;       /* Clean White */
    --bg-alt: #F8FAFC;        /* Light Gray */
    --surface: #FFFFFF;       /* White cards */
    
    --text-main: #0F172A;     /* Dark Slate */
    --text-muted: #64748B;    /* Medium Slate */
    --border: #E2E8F0;        /* Light border */
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-text: linear-gradient(to right, var(--primary), var(--accent));
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 10px 25px -5px rgba(124, 58, 237, 0.4);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-md: 12px;
    --radius-lg: 24px;
}

[data-theme="dark"] {
    /* DARK THEME OVERRIDES */
    --bg-main: #0B0F19;       /* Deep slate/navy dark */
    --bg-alt: #0F172A;        /* Slightly lighter slate for contrast */
    --surface: #1E293B;       /* Distinct glassy surface for cards */
    
    --text-main: #F8FAFC;     /* Bright White for headings */
    --text-muted: #94A3B8;    /* Slate 400 for body text; */
    --border: #334155;        /* High-visibility distinct border */
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px 5px rgba(139, 92, 246, 0.4);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    background-color: var(--bg-main);
    overflow-x: hidden;
    position: relative;
}

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   UTILITIES & COMPONENTS
   ======================================== */
/* Background Grid Pattern */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(100, 116, 139, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 116, 139, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

[data-theme="dark"] .bg-grid {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.text-primary { color: var(--primary); }
.bg-light { background-color: var(--bg-alt); }

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

.accent-text {
    color: var(--accent-light);
}

.text-white { color: #FFFFFF; }
.text-white-muted { color: rgba(255, 255, 255, 0.8); }

.section {
    padding: 100px 0;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 50px;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #FFF;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
    color: #FFF;
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Abstract Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(124, 58, 237, 0.3);
    top: -200px;
    left: -200px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.2);
    top: 200px;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.15); /* Soft green */
    bottom: 10%;
    left: 20%;
    animation-delay: -2s;
    animation-duration: 12s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.98);
}

[data-theme="dark"] .header {
    background: rgba(11, 15, 25, 0.85);
    border-bottom-color: rgba(51, 65, 85, 0.5);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(11, 15, 25, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logos */
.brand-logo-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    max-height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo-short {
    display: none; /* Hidden on desktop by default */
}

/* In light theme, logos are black - they show just fine */
/* In dark theme, invert them since the logos are black on white */
[data-theme="dark"] .brand-logo {
    filter: invert(1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.theme-toggle {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.theme-toggle:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.nav-right {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Glass Panel Graphic */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    transition: var(--transition);
}

[data-theme="dark"] .glass-panel {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.2);
}

.panel-header {
    height: 40px;
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    transition: var(--transition);
}

[data-theme="dark"] .panel-header {
    background: rgba(15, 23, 42, 0.8);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.panel-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 150px;
    width: 100%;
    max-width: 400px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
}

.chart-bar {
    flex: 1;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
}

.chart-bar:hover {
    background: var(--primary-light);
}

.panel-text {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.125rem;
}

/* ========================================
   MARQUEE SECTION
   ======================================== */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: "";
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--surface) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--surface) 0%, transparent 100%);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.client-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #94A3B8;
    margin: 0 40px;
    transition: var(--transition);
}

.client-logo:hover {
    color: var(--text-main);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   ABOUT US SECTION
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.floating-img-wrapper {
    position: relative;
}

.img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-main);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-main);
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

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

.service-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

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

.service-card p {
    margin-bottom: 0;
}

/* ========================================
   PROCESS TIMELINE SECTION
   ======================================== */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--surface);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 0 8px var(--bg-alt);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--primary);
    color: #fff;
}

.step-content {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    flex: 1;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.process-step:hover .step-content {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.step-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

/* ========================================
   TESTIMONIALS SECTION (NEW)
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.client-details h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-details p {
    font-size: 0.875rem;
    color: var(--primary-light);
    margin: 0;
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.results-section {
    background: linear-gradient(135deg, #0B0F19 0%, #1a0a3b 50%, #0d1a2e 100%);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.results-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.box-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.box-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.results-text {
    flex: 1;
    z-index: 1;
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    z-index: 1;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: #A78BFA;
    font-weight: 500;
}

/* ========================================
   CONTACT / APPOINTMENT SECTION
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.detail-item i {
    font-size: 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.contact-form-wrapper {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.advanced-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.advanced-form .form-group {
    margin-bottom: 24px;
}

.advanced-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.advanced-form input,
.advanced-form select,
.advanced-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-alt);
    transition: var(--transition);
    outline: none;
    color: var(--text-main);
}

.advanced-form input:focus,
.advanced-form select:focus,
.advanced-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    background: var(--surface);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f107'; /* FontAwesome angle-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

.advanced-form select {
    appearance: none;
    -webkit-appearance: none;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
}

/* ========================================
   SECTORS SECTION
   ======================================== */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.sector-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition);
    cursor: default;
}

.sector-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(124, 58, 237, 0.25);
}

.sector-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.sector-pill:hover .sector-icon {
    background: var(--gradient-primary);
    color: #fff;
}

/* ========================================
   TOOLS SECTION
   ======================================== */
.tools-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.tools-category {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
}

.tools-category:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.tools-category-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tools-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.tool-badge:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.05);
}

/* ========================================
   SUPPORT SECTION
   ======================================== */
.support-section {
    background: linear-gradient(135deg, #0B0F19 0%, #1a0a3b 50%, #0d1a2e 100%);
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.support-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.support-inner {
    position: relative;
    z-index: 1;
}

.support-badge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.support-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #10B981;
    letter-spacing: 0.1em;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10B981;
    display: inline-block;
    animation: pulse-glow 1.5s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    50% { transform: scale(1.2); opacity: 0.9; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    transition: var(--transition);
}

.support-card:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.3);
}

.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(124, 58, 237, 0.2);
    color: #A78BFA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.support-card:hover .support-icon {
    background: var(--primary);
    color: #fff;
}

.support-card h3 {
    color: #F8FAFC;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.support-card p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.support-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-white {
    background: #FFFFFF;
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(139, 92, 246, 0.5);
}

.support-cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.support-cta-note strong {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin: 20px 0;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 50%;
    color: var(--text-main);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ======================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .box-glass { flex-direction: column; text-align: center; }
    .stat-item { text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .experience-badge { bottom: -15px; right: 0; }
    .logo-full { display: none; }
    .logo-short { display: block; max-height: 35px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease;
    }
    .nav-links.active { left: 0; }
    .mobile-toggle { display: block; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    
    .process-timeline::before { left: 20px; }
    .process-step { gap: 20px; }
    .step-number { width: 40px; height: 40px; font-size: 1rem; }
    
    .advanced-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-wrapper { padding: 24px; }
    
    .cta-form { flex-direction: column; border-radius: 12px; background: transparent; padding: 0; }
    .cta-form input { padding: 16px 24px; border-radius: 12px; margin-bottom: 16px; }
    .cta-form .btn { border-radius: 12px; width: 100%; }
}
