/* ==========================================================================
   Nelami Groupe — Style System (Vanilla CSS Custom Theme)
   Aesthetic: Modern Dark Mode, Glassmorphism, Neon Glow Accents
   ========================================================================== */

/* --- Design Tokens / Root Variables --- */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Color Palette */
    --bg-darker: #020204;
    --bg-dark: #050508;
    --bg-card: rgba(18, 12, 12, 0.45);
    --bg-glass: rgba(6, 6, 9, 0.65);
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-glass-hover: rgba(255, 255, 255, 0.12);

    --color-text-main: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-text-dim: #6b7280;

    /* Neon Accent Colors based on Logo (Red: #C21A24 / Yellow: #F9A01B) */
    --primary: #c21a24;
    --primary-glow: rgba(194, 26, 36, 0.35);
    --secondary: #f9a01b;
    --secondary-glow: rgba(249, 160, 27, 0.35);
    
    --purple: #c21a24;
    --blue: #f9a01b;
    --cyan: #ea580c;
    --emerald: #fbbf24;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #c21a24 0%, #f97316 60%, #f9a01b 100%);
    --gradient-btn: linear-gradient(135deg, #c21a24 0%, #f9a01b 100%);
    --gradient-purple: linear-gradient(135deg, #c21a24 0%, #ea580c 100%);
    --gradient-blue: linear-gradient(135deg, #f9a01b 0%, #fbbf24 100%);
    --gradient-emerald: linear-gradient(135deg, #ea580c 0%, #f9a01b 100%);

    /* Transitions & FX */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --glow-shadow: 0 0 30px rgba(194, 26, 36, 0.25);
}


/* --- Base & Reset Rules --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-darker);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--bg-darker);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Global Utilities & Layouts --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Gradients and Text effects */
.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 40px rgba(192, 132, 252, 0.35);
}

.text-purple { color: var(--purple); }
.text-blue { color: var(--blue); }
.text-cyan { color: var(--cyan); }
.text-emerald { color: var(--emerald); }

/* Ambient Glow Blobs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -2;
    opacity: 0.45;
    pointer-events: none;
    transition: all 1s ease;
}

#glow-1 {
    top: -100px;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

#glow-2 {
    top: 600px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

#glow-3 {
    bottom: 200px;
    right: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Custom Interactive Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s;
}

.custom-cursor-glow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(194, 26, 36, 0.4);
    background-color: rgba(194, 26, 36, 0.02);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.08s linear, width 0.3s, height 0.3s, background-color 0.3s;
}

/* --- Components & Glassmorphism --- */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-radius: 16px;
    transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background: var(--gradient-btn);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(249, 160, 27, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249, 160, 27, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-glass-hover);
    transform: translateY(-3px);
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: background 0.3s ease;
}

.main-header.scrolled {
    background: rgba(5, 5, 8, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

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

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 550;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: #fff;
}

.nav-btn {
    border: 1px solid var(--primary);
    padding: 0.55rem 1.35rem;
    border-radius: 9999px;
    background: rgba(194, 26, 36, 0.05);
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-bounce);
}

.nav-btn:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-2px);
}

.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: 170px;
    padding-bottom: 120px;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--purple);
    animation: pulse 1.8s infinite;
}

.slogan-badge {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
}

/* Hero Visual / Dashboard mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card-wrapper {
    width: 100%;
    background: rgba(10, 11, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.visual-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(194, 26, 36, 0.35), transparent 40%, rgba(249, 160, 27, 0.35));
    border-radius: 22px;
    z-index: -1;
    pointer-events: none;
}

.visual-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
}

.visual-header span[class^="dot-"] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.visual-title {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    color: var(--color-text-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.visual-body {
    position: relative;
    display: flex;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}

.glass-card-wrapper:hover .hero-image {
    transform: scale(1.02);
}

/* Tooltip Hotspots */
.hotspot {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--cyan);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
    animation: pulseGlow 2.5s infinite;
}

.hotspot::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(5, 5, 8, 0.95);
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    font-family: var(--font-body);
}

.hotspot:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.hotspot:nth-child(2) { background-color: var(--purple); box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.2); }
.hotspot:nth-child(3) { background-color: var(--blue); box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2); }

/* --- Section Formatting --- */
section[id] {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #fff;
}

.purple-glow { background: var(--gradient-purple); box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3); }
.blue-glow { background: var(--gradient-blue); box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3); }
.cyan-glow { background: var(--gradient-blue); background-image: var(--gradient-blue); box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3); } /* fallback blue */
.emerald-glow { background: var(--gradient-emerald); box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3); }

.service-title-text {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* --- Showcase / Tabs Section --- */
.showcase-tabs-container {
    padding: 3rem;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--color-text-muted);
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.tab-btn.active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(194, 26, 36, 0.4);
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.tab-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.tab-text p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.tab-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.tab-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 550;
    font-size: 0.95rem;
}

/* Code Editor / Visual Demo Mockups inside tabs */
.code-editor-glass {
    background: #06070a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: monospace;
}

.editor-header {
    height: 38px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.4rem;
}

.editor-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.editor-file {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--color-text-dim);
}

.editor-body {
    padding: 1.5rem;
    font-size: 0.85rem;
    color: #cbd5e1;
    overflow-x: auto;
}

/* Syntax Highlighting Mock */
.code-keyword { color: #f472b6; }
.code-function { color: #38bdf8; }
.code-string { color: #34d399; }

/* Telemetry Box Mock */
.telemetry-box {
    background: #06070a;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.telemetry-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.telemetry-label {
    width: 120px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.bar-bg {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease-out;
}

.blue-fill { background: var(--gradient-blue); }

.telemetry-val {
    width: 45px;
    text-align: right;
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyan);
}

.telemetry-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    color: var(--emerald);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Impact Metrics Mock */
.impact-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 200px;
}

.metric-circle-container {
    display: flex;
    gap: 2rem;
}

.metric-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(6, 182, 212, 0.2);
    background: rgba(6, 182, 212, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.08);
}

.metric-num {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--cyan);
}

.metric-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.15rem;
}

/* --- Stats Section --- */
.stats-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple);
    margin-left: 0.1rem;
}

.stat-label {
    margin-top: 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* --- About Section --- */
.about-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 100%;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interactive-node-canvas {
    width: 100%;
    height: 360px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.about-glow-blob {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
    opacity: 0.3;
    animation: drift 12s infinite alternate ease-in-out;
}

.philosophy-card {
    padding: 3rem;
    z-index: 2;
    text-align: center;
    max-width: 85%;
}

.card-quote {
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(249, 160, 27, 0.15);
    line-height: 0;
    display: block;
    margin-bottom: 1.5rem;
}

.philosophy-card p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-author {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-dim);
}

.about-paragraph {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.accordion-container {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
    transition: border-color var(--transition-fast);
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.accordion-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: left;
}

.accordion-trigger i {
    transition: transform var(--transition-bounce);
    color: var(--color-text-dim);
}

.accordion-trigger.active i {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.accordion-content.open {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
    padding-bottom: 1.25rem;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: stretch;
}

.contact-info {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #fff 60%, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info > p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
    transform: translateX(6px);
    box-shadow: 0 0 20px rgba(249, 160, 27, 0.15);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(249, 160, 27, 0.08);
    border: 1px solid rgba(249, 160, 27, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.info-item:hover .info-icon {
    background: var(--secondary);
    color: #020204;
    box-shadow: 0 0 15px var(--secondary);
}

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-dim);
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.info-value {
    display: block;
    font-size: 1rem;
    color: var(--color-text-main);
    font-weight: 550;
}

.social-wrapper {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    background: rgba(249, 160, 27, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(249, 160, 27, 0.2);
}

/* Contact Form UI */
.contact-form-wrapper {
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 17, 28, 0.65) 0%, rgba(5, 5, 8, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    transition: all var(--transition-normal);
}

.contact-form-wrapper:hover {
    border-color: rgba(249, 160, 27, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(249, 160, 27, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-form.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: var(--color-text-main);
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    max-width: 100%;
    background: rgba(2, 2, 4, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.95rem 1.25rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 12px rgba(249, 160, 27, 0.25);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: var(--color-text-dim);
}

/* Custom Select Dropdown Styling */
.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
}

.select-chevron {
    position: absolute;
    right: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-text-dim);
    font-size: 0.8rem;
}

.form-submit-btn {
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Success Form Feedback */
.form-success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3.5rem;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-success-message.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.success-icon-container {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.06);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--emerald);
    margin-bottom: 2rem;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-success-message h3 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-success-message p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 360px;
    line-height: 1.6;
}

/* --- Footer --- */
.main-footer {
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 3.5rem;
    background-color: #030305;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .logo {
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 550;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.footer-links-column h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-column ul a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links-column ul a:hover {
    color: #fff;
}

.footer-newsletter h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
    padding: 0.2rem;
    transition: border-color var(--transition-fast);
}

.newsletter-form:focus-within {
    border-color: var(--primary);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 0.7rem 1rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    flex-grow: 1;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: var(--primary);
    border: none;
    border-radius: 6px;
    width: 38px;
    height: 38px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--purple);
}

/* --- Premium Newsletter Form --- */
.premium-newsletter-form {
    display: flex;
    background: rgba(2, 2, 4, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 9999px;
    padding: 0.35rem 0.35rem 0.35rem 1.5rem;
    max-width: 500px;
    margin: 2.5rem auto 0 auto;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.premium-newsletter-form:focus-within {
    border-color: rgba(249, 160, 27, 0.4);
    box-shadow: 0 10px 30px rgba(249, 160, 27, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.premium-newsletter-form input {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 0.5rem 0 !important;
    color: #fff !important;
    flex-grow: 1;
    font-size: 0.95rem;
    font-family: inherit;
    width: 100%;
}

.premium-newsletter-form button {
    border-radius: 9999px !important;
    padding: 0.85rem 2.25rem !important;
    white-space: nowrap;
    margin-left: 0.5rem;
}

@media (max-width: 480px) {
    .premium-newsletter-form {
        border-radius: 12px;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        gap: 0.75rem;
        background: rgba(5, 5, 8, 0.7);
    }
    
    .premium-newsletter-form input {
        padding: 0.75rem 0.5rem !important;
        border-bottom: 1px solid var(--border-glass) !important;
        border-radius: 0 !important;
    }
    
    .premium-newsletter-form button {
        border-radius: 8px !important;
        width: 100%;
        margin-left: 0;
    }
}

/* --- Animations Keyframes --- */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
    70% { transform: scale(1.1); opacity: 0.9; box-shadow: 0 0 0 8px rgba(168, 85, 247, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(6, 182, 212, 0); }
    100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.15); }
    100% { transform: translate(-20px, 20px) scale(0.9); }
}


/* --- Hero Slider (Trigon Style) --- */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.slide-container {
    z-index: 3;
    position: relative;
}

.slide-content {
    max-width: 650px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.slide-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1.2rem;
}

/* Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 80px;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Dots */
.slider-dots {
    position: absolute;
    left: 80px;
    bottom: 60px;
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dots .dot {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    width: 45px;
    background: var(--primary);
}

/* --- About Diversity Card --- */
.diversity-card {
    width: 100%;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.diversity-content {
    position: relative;
    z-index: 2;
}

.diversity-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.diversity-sub {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.diversity-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.div-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.div-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.div-stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.div-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-dim);
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Partners Carousel (Marquee) --- */
.partners-section {
    padding: 100px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.partners-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    display: flex;
}

.partners-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: 220px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-glass-hover);
    transform: translateY(-2px);
}

.partner-logo svg {
    max-width: 100%;
    max-height: 38px;
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.partner-logo:hover svg {
    opacity: 0.95;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-260px * 6)); /* Width + Gap */
    }
}

/* --- Careers Page Specifics --- */
.careers-hero {
    padding-top: 180px;
    padding-bottom: 90px;
    text-align: center;
    position: relative;
}

.careers-hero .hero-description {
    max-width: 600px;
}

.positions-section {
    padding-bottom: 100px;
}

.careers-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.job-card {
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glass-hover);
}

.job-details {
    flex-grow: 1;
}

.job-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.job-meta span i {
    color: var(--primary);
}

.job-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.apply-section {
    padding: 100px 0;
    background: rgba(5, 5, 8, 0.4);
    border-top: 1px solid var(--border-glass);
}


/* --- Language Selector (Careers Header) --- */
.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 0.25rem 0.75rem 0.25rem 2rem;
    margin-left: 1.5rem;
}

@media (max-width: 768px) {
    .language-selector {
        margin-left: 0.5rem;
        padding: 0.2rem 0.5rem 0.2rem 1.6rem;
    }
}

.language-selector select {
    background: transparent;
    border: none;
    color: var(--color-text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 5px;
}

.lang-icon {
    position: absolute;
    left: 0.75rem;
    color: var(--primary);
    font-size: 0.9rem;
    pointer-events: none;
}

@media (max-width: 768px) {
    .lang-icon {
        left: 0.5rem;
    }
}

/* --- Left Side Floating Drawer Trigger & Drawer --- */
.side-menu-container {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

@media (max-width: 1024px) {
    .side-menu-container {
        display: none; /* Hide on tablets and mobile */
    }
}

.side-menu-trigger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.side-menu-trigger:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

.side-menu-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

/* Side Drawer */
.side-drawer {
    position: fixed;
    left: -320px;
    top: 0;
    width: 320px;
    height: 100vh;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-glass);
    z-index: 10000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
}

.side-drawer.open {
    left: 0;
}

.side-drawer-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-drawer-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.side-drawer-content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.side-drawer-logo {
    margin-bottom: 50px;
}

.side-drawer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.drawer-link:hover {
    color: #fff;
    padding-left: 10px;
}

.side-drawer-socials {
    margin-top: auto;
    display: flex;
    gap: 1rem;
}

/* --- Hero Watermark (Right Bottom Corner) --- */
.hero-watermark {
    position: absolute;
    right: 50px;
    bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 5;
    user-select: none;
    line-height: 1;
}

@media (max-width: 768px) {
    .hero-watermark {
        right: 30px;
        bottom: 15px;
        font-size: 3.2rem;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    }
}


/* --- Responsive Adaptations (Media Queries) --- */
@media (max-width: 1024px) {
    .hero-slider-section {
        height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .slide {
        position: relative;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 40px 0;
        min-height: auto;
    }
    
    .slide.active {
        display: flex;
    }
    
    .slide-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .slide-actions {
        justify-content: center;
    }
    
    .slider-controls {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
    
    .slider-dots {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-visual {
        min-height: auto;
        height: auto;
    }

    .interactive-node-canvas {
        height: 280px;
    }

    .diversity-stats-grid {
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-container {
        grid-template-columns: 1.2fr 0.8fr 1fr;
    }
    .footer-newsletter {
        grid-column: span 3;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hero-title, .slide-title {
        font-size: 2.2rem;
    }

    .header-container {
        height: 70px;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(5, 5, 8, 0.98);
        border-bottom: 1px solid var(--border-glass);
        overflow: hidden;
        transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.open {
        height: calc(100vh - 70px);
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .tab-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .showcase-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .showcase-tabs-container {
        padding: 1.5rem;
    }

    .diversity-card {
        padding: 2rem 1.5rem;
    }

    .diversity-stats-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 1.75rem;
    }

    .job-card .btn {
        width: 100%;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-newsletter {
        grid-column: span 1;
    }
}

/* --- Google Translate UI Overrides --- */
.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-banner {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
    color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
    display: none !important;
}

/* --- Application Journey --- */
.journey-step {
    transition: all var(--transition-fast);
}

.journey-step:hover {
    border-color: var(--secondary) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 160, 27, 0.15);
}

@media (max-width: 1150px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* --- Dropdown Select Options Styling --- */
select option {
    background-color: #0b0c10 !important;
    color: #ffffff !important;
    font-family: var(--font-body);
}
