/* HashMap Website - Premium Design System */

:root {
    /* Brand Colors - South African Inspired */
    --color-green: #1B8B4E;
    --color-green-light: #22c55e;
    --color-green-dark: #15803d;
    --color-gold: #F5A623;
    --color-gold-light: #fbbf24;
    --color-red: #C93C3C;
    --color-maroon: #6B3A3A;

    /* Neutral Palette */
    --color-black: #0a0a0a;
    --color-gray-950: #0f0f0f;
    --color-gray-900: #171717;
    --color-gray-800: #262626;
    --color-gray-700: #404040;
    --color-gray-600: #525252;
    --color-gray-500: #737373;
    --color-gray-400: #a3a3a3;
    --color-gray-300: #d4d4d4;
    --color-gray-200: #e5e5e5;
    --color-gray-100: #f5f5f5;
    --color-white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1B8B4E 0%, #22c55e 50%, #F5A623 100%);
    --gradient-gold: linear-gradient(135deg, #F5A623 0%, #fbbf24 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #171717 100%);
    --gradient-radial: radial-gradient(ellipse at center, rgba(27, 139, 78, 0.15) 0%, transparent 70%);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(27, 139, 78, 0.3);
    --shadow-glow-gold: 0 0 40px rgba(245, 166, 35, 0.3);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-300);
    background-color: var(--color-black);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--color-gray-400);
    line-height: 1.7;
}

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

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

ul {
    list-style: none;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-24) 0;
    position: relative;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-green);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-green-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 600;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    transition: all var(--duration-normal) var(--ease-out);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled::before {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.navbar-logo img {
    height: 56px;
    width: auto;
}

.navbar-logo span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.navbar-menu a:not(.btn) {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-300);
    position: relative;
    padding: var(--space-2) 0;
}

.navbar-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: width var(--duration-normal) var(--ease-out);
}

.navbar-menu a:not(.btn):hover,
.navbar-menu a:not(.btn).active {
    color: var(--color-white);
}

.navbar-menu a:not(.btn):hover::after,
.navbar-menu a:not(.btn).active::after {
    width: 100%;
}

.navbar-menu .btn {
    padding: var(--space-3) var(--space-6);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--space-2);
    z-index: 1001;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a1a0f;
}

/* Background - hidden */
.hero-bg {
    display: none;
}

/* Grid pattern overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Floating orbs - hidden */
.hero-orb {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(27, 139, 78, 0.1);
    border: 1px solid rgba(27, 139, 78, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-green-light);
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-green-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero h1 .highlight {
    color: var(--color-green-light);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    margin-bottom: var(--space-10);
    max-width: 600px;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-chart {
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

.hero-chart svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(245, 166, 35, 0.15));
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s var(--ease-out) 1.2s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-dot-pulse {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        r: 6;
        opacity: 1;
    }
    50% {
        r: 8;
        opacity: 0.8;
    }
}

.hero-stats {
    display: flex;
    gap: var(--space-12);
    margin-top: var(--space-16);
    padding-top: var(--space-10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-top: var(--space-1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== LOGOS/CLIENTS SECTION ===== */
.logos-section {
    padding: var(--space-16) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.logos-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gray-600);
    margin-bottom: var(--space-8);
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-16);
    flex-wrap: wrap;
    opacity: 0.4;
}

.logos-grid span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-400);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--color-black);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--color-green), transparent);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-16);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-green-light);
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 139, 78, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(27, 139, 78, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(27, 139, 78, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-green);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: var(--space-6);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-green-light);
    transition: gap var(--duration-fast) var(--ease-out);
}

.service-card:hover .service-link {
    gap: var(--space-3);
}

.service-link svg {
    width: 16px;
    height: 16px;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-gray-950) 100%);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

.why-content {
    max-width: 500px;
}

.why-content h2 {
    margin-bottom: var(--space-6);
}

.why-content > p {
    font-size: 1.125rem;
    margin-bottom: var(--space-10);
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.why-feature {
    display: flex;
    gap: var(--space-4);
}

.why-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(27, 139, 78, 0.1);
    border: 1px solid rgba(27, 139, 78, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-green-light);
}

.why-feature h4 {
    font-size: 1rem;
    margin-bottom: var(--space-1);
}

.why-feature p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
}

/* Visual element */
.why-visual {
    position: relative;
    height: 500px;
}

.why-visual-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
    padding: var(--space-6);
}

.why-card-1 {
    top: 0;
    right: 0;
    width: 280px;
    animation: floatCard 6s ease-in-out infinite;
}

.why-card-2 {
    bottom: 60px;
    left: 0;
    width: 300px;
    animation: floatCard 6s ease-in-out infinite 2s;
}

.why-card-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    background: linear-gradient(135deg, rgba(27, 139, 78, 0.2) 0%, rgba(27, 139, 78, 0.05) 100%);
    border-color: rgba(27, 139, 78, 0.3);
    animation: floatCard 6s ease-in-out infinite 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.why-card-3 {
    animation: floatCardCenter 6s ease-in-out infinite 4s;
}

@keyframes floatCardCenter {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
}

.why-card-stat {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
}

.why-card-label {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.why-card-icon {
    width: 40px;
    height: 40px;
    background: var(--color-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
}

.why-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: var(--space-20) 0;
    background: var(--color-gray-950);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.stat-item {
    text-align: center;
    padding: var(--space-8);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-green-light);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
    background: #0a1a0f;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(27, 139, 78, 0.15) 0%, transparent 60%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin-bottom: var(--space-4);
}

.cta-section p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-black);
    padding-top: var(--space-20);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-16);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-logo-wrap span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    transition: all var(--duration-fast) var(--ease-out);
}

.footer-social a:hover {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
    color: var(--color-green-light);
}

.footer-bottom {
    margin-top: var(--space-16);
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-6);
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.footer-bottom-links a:hover {
    color: var(--color-gray-400);
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    color: var(--color-green-light);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Page Header for inner pages */
.page-header {
    padding: 160px 0 80px;
    background: #0a1a0f;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(27, 139, 78, 0.1) 0%, transparent 60%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    margin-bottom: var(--space-4);
    animation: fadeInUp 0.6s var(--ease-out) both;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

/* ===== SECTION VARIANTS ===== */
.section-light {
    background: var(--color-gray-950);
}

.section-dark {
    background: #0a1a0f;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

.section-dark .container {
    position: relative;
    z-index: 1;
}

/* ===== ABOUT INTRO SECTION ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-content h2 {
    margin-bottom: var(--space-6);
}

.about-content p {
    margin-bottom: var(--space-4);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-content p:last-of-type {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 139, 78, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(27, 139, 78, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(27, 139, 78, 0.1);
    border: 1px solid rgba(27, 139, 78, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-green-light);
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-3);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.feature-item {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.feature-item:hover {
    border-color: rgba(27, 139, 78, 0.2);
    background: linear-gradient(135deg, rgba(27, 139, 78, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(27, 139, 78, 0.1);
    border: 1px solid rgba(27, 139, 78, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-green-light);
}

.feature-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
}

/* ===== SERVICE DETAIL SECTION ===== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.section:nth-child(even) .service-detail {
    direction: rtl;
}

.section:nth-child(even) .service-detail > * {
    direction: ltr;
}

.service-detail-content h2 {
    margin-bottom: var(--space-4);
}

.service-detail-content > p {
    font-size: 1.0625rem;
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.service-detail-content ul {
    margin-bottom: var(--space-6);
}

.service-detail-content li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    color: var(--color-gray-400);
}

.service-detail-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
}

.service-detail-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.service-detail-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 139, 78, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
}

/* Tech Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tech-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(27, 139, 78, 0.1);
    border: 1px solid rgba(27, 139, 78, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--color-green-light);
    font-weight: 500;
}

/* ===== TRAINING FORMATS ===== */
.training-formats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.format-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.format-card:hover {
    transform: translateY(-8px);
    border-color: rgba(27, 139, 78, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.format-card svg {
    width: 48px;
    height: 48px;
    color: var(--color-green-light);
    margin-bottom: var(--space-4);
}

.format-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
}

.format-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
}

.contact-form h2 {
    margin-bottom: var(--space-2);
}

.contact-form > p {
    color: var(--color-gray-500);
    margin-bottom: var(--space-8);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-300);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--duration-fast) var(--ease-out);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(27, 139, 78, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23737373' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

.form-group select option {
    background: var(--color-gray-900);
    color: var(--color-white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    padding: var(--space-6);
}

.contact-info h2 {
    margin-bottom: var(--space-2);
}

.contact-info > p {
    color: var(--color-gray-500);
    margin-bottom: var(--space-8);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    transition: all var(--duration-normal) var(--ease-out);
}

.contact-info-card:hover {
    border-color: rgba(27, 139, 78, 0.2);
}

.contact-info-card svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-green-light);
    margin-top: 2px;
}

.contact-info-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.9375rem;
    color: var(--color-gray-400);
}

.contact-info-card a:hover {
    color: var(--color-green-light);
}

.contact-social {
    margin-top: var(--space-10);
}

.contact-social h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

/* ===== CHECK LIST ===== */
.check-list {
    margin-top: var(--space-4);
}

.check-list li {
    position: relative;
    padding-left: var(--space-8);
    margin-bottom: var(--space-3);
    color: var(--color-gray-400);
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-green-light);
    font-weight: 600;
}
