/* ==================== MENTARIS - Premium Recruitment Website ==================== */
/* Typography: Satoshi (Headers) + Montserrat (Body/Descriptions) */
/* Color Palette: Midnight Blue, Electric Teal, Pure White, Accent Slate */

:root {
    /* Brand Color Palette */
    --midnight-blue: #0B1221;
    --electric-teal: #08D8C9;
    --electric-teal-dark: #06B8AB;
    --pure-white: #FFFFFF;
    --off-white: #F8F8F8;
    --accent-slate: #1C2739;
    --dark-slate: #121D33;
    
    /* Luxury Accents */
    --gold-shimmer: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(212, 175, 55, 0.3) 100%);
    --premium-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    
    /* Gradients */
    --gradient-teal: linear-gradient(135deg, #08D8C9 0%, #06B8AB 100%);
    --gradient-teal-light: linear-gradient(135deg, #0AF0E0 0%, #08D8C9 100%);
    --gradient-dark: linear-gradient(180deg, #0B1221 0%, #1C2739 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(8, 216, 201, 0.08) 0%, rgba(28, 39, 57, 0.3) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    
    /* Typography */
    --font-header: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-unit: 8px;
    --space-xs: calc(var(--space-unit) * 2);
    --space-sm: calc(var(--space-unit) * 3);
    --space-md: calc(var(--space-unit) * 5);
    --space-lg: calc(var(--space-unit) * 8);
    --space-xl: calc(var(--space-unit) * 13);
    --space-2xl: calc(var(--space-unit) * 21);
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}


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

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

body {
    font-family: var(--font-body);
    color: var(--pure-white);
    background-color: var(--midnight-blue);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== Premium Preloader ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0B1221 0%, #1C2739 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.preloader-logo {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: auto;
    animation: pulseLetter 2s ease-in-out infinite;
}

@keyframes pulseLetter {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.preloader-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.preloader-text {
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--pure-white);
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.preloader-progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(8, 216, 201, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-teal);
    border-radius: 2px;
    animation: progressFill 2s ease-in-out infinite;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* ==================== Particle Canvas Background ==================== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.5;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.025;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" /%3E%3C/svg%3E');
    pointer-events: none;
}

/* ==================== CLIENT-FIRST CONTAINER ==================== */
.container-max {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* ==================== Premium Navigation ==================== */
.navbar-luxury {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: var(--transition-smooth);
}

.navbar-luxury.scrolled {
    padding: 15px 0;
    background: rgba(11, 18, 33, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(8, 216, 201, 0.1);
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-icon {
    height: 24px;
    width: auto;
    margin-right: 8px;
    flex-shrink: 0;
}

.logo-text-header {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pure-white);
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav-link-luxury {
    color: var(--pure-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.4s ease;
}

.nav-link-luxury::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--electric-teal);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-luxury:hover {
    color: var(--electric-teal);
}

.nav-link-luxury:hover::after {
    width: 100%;
}

/* Navigation Button */
.btn-luxury-nav {
    position: relative;
    padding: 14px 32px;
    background: transparent;
    color: var(--electric-teal);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--electric-teal);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-luxury-nav .btn-text {
    position: relative;
    z-index: 2;
}

.btn-luxury-nav .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 216, 201, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-luxury-nav:hover {
    transform: translateY(-2px);
    background: rgba(8, 216, 201, 0.1);
    color: var(--electric-teal);
    box-shadow: 0 5px 20px rgba(8, 216, 201, 0.2);
}

.btn-luxury-nav:hover .btn-shine {
    left: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--pure-white);
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 18, 33, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* ==================== CLIENT-FIRST BUTTONS ==================== */

/* Primary Button - Teal Modern Style */
.button-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background: var(--electric-teal);
    color: var(--midnight-blue);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button-primary .btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.button-primary .btn-icon {
    transition: transform 0.3s ease;
}

.button-primary .btn-glow {
    display: none;
}

.button-primary .btn-shine {
    display: none;
}

.button-primary::before {
    display: none;
}

.button-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--electric-teal-dark);
    box-shadow: 
        0 10px 30px rgba(8, 216, 201, 0.4),
        0 0 40px rgba(8, 216, 201, 0.3);
}

.button-primary:hover::before {
    display: none;
}

.button-primary:hover .btn-shine {
    display: none;
}

.button-primary:hover .btn-icon {
    transform: translateX(5px);
}

/* Secondary Button - Clean Outline */
.button-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background: transparent;
    color: var(--pure-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1.5px solid var(--electric-teal);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button-secondary .btn-text {
    position: relative;
    z-index: 2;
}

.button-secondary .btn-border {
    display: none;
}

.button-secondary::before {
    display: none;
}

.button-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(8, 216, 201, 0.15);
    color: var(--electric-teal);
    border-color: var(--electric-teal);
    box-shadow: 
        0 10px 25px rgba(8, 216, 201, 0.2),
        0 0 30px rgba(8, 216, 201, 0.15);
}

.button-secondary:hover::before {
    display: none;
}

.button-secondary:hover .btn-border {
    display: none;
}

/* Light Button for Dark Backgrounds */
.btn-luxury-light {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background: var(--pure-white);
    color: var(--midnight-blue);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-luxury-light:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--electric-teal);
    color: var(--midnight-blue);
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(8, 216, 201, 0.4);
}

/* Ghost Button */
.btn-luxury-ghost {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 35px;
    background: transparent;
    color: var(--pure-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1.5px solid var(--pure-white);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-luxury-ghost:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--electric-teal);
    background: rgba(8, 216, 201, 0.1);
    color: var(--electric-teal);
    box-shadow: 
        0 10px 25px rgba(8, 216, 201, 0.2),
        0 0 30px rgba(8, 216, 201, 0.15);
}

.btn-large {
    padding: 20px 50px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

.btn-mobile {
    width: 90%;
    max-width: 350px;
}

/* ==================== HERO SECTION ==================== */
.hero_section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 80px 140px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(8, 216, 201, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(28, 39, 57, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--electric-teal);
    margin-bottom: 25px;
    display: inline-block;
}

.heading-xl {
    font-family: var(--font-header);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--pure-white);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 45px;
    max-width: 550px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-logo-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 300px;
}

/* Logo Showcase Animation */
.logo-showcase {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbit rings */
.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(8, 216, 201, 0.2);
}

.orbit-1 {
    width: 280px;
    height: 280px;
    animation: orbitRotate 25s linear infinite;
}

.orbit-2 {
    width: 340px;
    height: 340px;
    border-style: dashed;
    border-color: rgba(8, 216, 201, 0.15);
    animation: orbitRotateReverse 35s linear infinite;
}

.orbit-3 {
    width: 220px;
    height: 220px;
    border-color: rgba(8, 216, 201, 0.25);
    animation: orbitRotate 20s linear infinite reverse;
}

/* Orbit dots */
.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--electric-teal);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--electric-teal), 0 0 40px rgba(8, 216, 201, 0.4);
}

.dot-1 {
    animation: dotOrbit1 25s linear infinite, dotPulse 2s ease-in-out infinite;
}

.dot-2 {
    animation: dotOrbit2 35s linear infinite reverse, dotPulse 2s ease-in-out infinite 0.5s;
    width: 8px;
    height: 8px;
}

.dot-3 {
    animation: dotOrbit3 28s linear infinite, dotPulse 2s ease-in-out infinite 1s;
    width: 8px;
    height: 8px;
}

.dot-4 {
    animation: dotOrbit4 28s linear infinite reverse, dotPulse 2s ease-in-out infinite 1.5s;
    width: 6px;
    height: 6px;
}

.dot-5 {
    animation: dotOrbit5 28s linear infinite, dotPulse 2s ease-in-out infinite 0.3s;
    width: 7px;
    height: 7px;
}

.dot-6 {
    animation: dotOrbit6 20s linear infinite, dotPulse 2s ease-in-out infinite 0.8s;
    width: 5px;
    height: 5px;
}

.dot-7 {
    animation: dotOrbit7 20s linear infinite reverse, dotPulse 2s ease-in-out infinite 1.2s;
    width: 4px;
    height: 4px;
}

/* Center logo */
.logo-center {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-logo {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(8, 216, 201, 0.4));
    animation: logoPulse 3s ease-in-out infinite;
}

/* Keyframe animations */
@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 25px rgba(8, 216, 201, 0.4));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 35px rgba(8, 216, 201, 0.6));
    }
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbitRotateReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.7;
        box-shadow: 0 0 15px var(--electric-teal), 0 0 30px rgba(8, 216, 201, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 25px var(--electric-teal), 0 0 50px rgba(8, 216, 201, 0.5);
    }
}

@keyframes dotOrbit1 {
    from {
        transform: rotate(0deg) translateX(140px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(140px) rotate(-360deg);
    }
}

@keyframes dotOrbit2 {
    from {
        transform: rotate(0deg) translateX(170px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(170px) rotate(-360deg);
    }
}

@keyframes dotOrbit3 {
    from {
        transform: rotate(0deg) translateX(140px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(140px) rotate(-360deg);
    }
}

@keyframes dotOrbit4 {
    from {
        transform: rotate(120deg) translateX(140px) rotate(-120deg);
    }
    to {
        transform: rotate(480deg) translateX(140px) rotate(-480deg);
    }
}

@keyframes dotOrbit5 {
    from {
        transform: rotate(240deg) translateX(140px) rotate(-240deg);
    }
    to {
        transform: rotate(600deg) translateX(140px) rotate(-600deg);
    }
}

@keyframes dotOrbit6 {
    from {
        transform: rotate(0deg) translateX(110px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(110px) rotate(-360deg);
    }
}

@keyframes dotOrbit7 {
    from {
        transform: rotate(180deg) translateX(110px) rotate(-180deg);
    }
    to {
        transform: rotate(540deg) translateX(110px) rotate(-540deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.6;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--electric-teal), transparent);
    animation: scrollLineAnim 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--electric-teal);
}

/* ==================== VALUE PROPOSITION SECTION ==================== */
.section-dark {
    position: relative;
    padding: 180px 0;
    background: var(--midnight-blue);
    overflow: hidden;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--electric-teal);
    margin-bottom: 20px;
    display: inline-block;
}

.heading-l {
    font-family: var(--font-header);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pure-white);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.divider-luxury {
    width: 80px;
    height: 3px;
    background: var(--gradient-teal);
    margin: 0 auto 30px;
    border-radius: 4px;
}

.body-m {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ==================== CLIENT-FIRST GRID SYSTEM ==================== */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Value Cards */
.value-card-luxury {
    position: relative;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(28, 39, 57, 0.4) 0%, rgba(11, 18, 33, 0.8) 100%);
    border: 1px solid rgba(8, 216, 201, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.value-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.value-card-luxury:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--electric-teal);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(8, 216, 201, 0.2),
        inset 0 1px 0 rgba(8, 216, 201, 0.1);
}

.value-number {
    font-family: var(--font-header);
    font-size: 48px;
    font-weight: 700;
    color: var(--pure-white);
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1;
}

.value-icon-luxury {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 216, 201, 0.1);
    border: 1px solid rgba(8, 216, 201, 0.2);
    border-radius: 14px;
    color: var(--electric-teal);
    font-size: 24px;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.value-card-luxury:hover .value-icon-luxury {
    transform: scale(1.15) rotate(5deg);
    background: rgba(8, 216, 201, 0.2);
    border-color: var(--electric-teal);
    box-shadow: 0 0 30px rgba(8, 216, 201, 0.3);
}

.value-title {
    font-family: var(--font-header);
    font-size: 20px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 18px;
    line-height: 1.4;
}

.value-description {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* ==================== SERVICES SECTION ==================== */
.section-light {
    position: relative;
    padding: 180px 0;
    background: var(--accent-slate);
}

.service_cards {
    position: relative;
    margin-bottom: 60px;
}

.service-card-premium {
    position: relative;
    padding: 60px 45px;
    background: linear-gradient(135deg, rgba(11, 18, 33, 0.8) 0%, rgba(18, 29, 51, 0.6) 100%);
    border: 1px solid rgba(8, 216, 201, 0.15);
    border-radius: 20px;
    text-decoration: none;
    display: block;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card-premium:hover {
    transform: translateY(-12px);
    border-color: var(--electric-teal);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(8, 216, 201, 0.25),
        inset 0 1px 0 rgba(8, 216, 201, 0.2);
}

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

.service-icon-premium {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 216, 201, 0.08);
    border: 1px solid rgba(8, 216, 201, 0.2);
    border-radius: 16px;
    color: var(--electric-teal);
    font-size: 28px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.service-card-premium:hover .service-icon-premium {
    transform: scale(1.2) rotate(-5deg);
    background: rgba(8, 216, 201, 0.15);
    border-color: var(--electric-teal);
    box-shadow: 0 0 40px rgba(8, 216, 201, 0.4);
}

.service-title-premium {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-description-premium {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.service-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--electric-teal);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: gap 0.4s ease;
}

.service-card-premium:hover .service-link-premium {
    gap: 15px;
}

/* Explore Services Wrapper */
.explore-services-wrapper {
    margin-top: 60px;
    text-align: center;
}

/* ==================== Video Section ==================== */
.video-section {
    background: var(--accent-slate);
    position: relative;
    overflow: hidden;
}

.video-section-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(8, 216, 201, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(8, 216, 201, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.video-section.section-spacer {
    padding: 80px 0;
}

.video-section .section-intro {
    margin-bottom: 50px;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-glow {
    display: none;
}

@keyframes videoGlowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.video-container {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 18, 33, 0.8) 0%, rgba(18, 29, 51, 0.6) 100%);
    border: 1px solid rgba(8, 216, 201, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.video-container:hover {
    transform: translateY(-12px);
    border-color: var(--electric-teal);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(8, 216, 201, 0.25),
        inset 0 1px 0 rgba(8, 216, 201, 0.2);
}

.featured-video {
    width: 100%;
    height: auto;
    display: block;
    background: var(--midnight-blue);
}

.featured-video:focus {
    outline: none;
}

/* Custom video controls styling */
.video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.video-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(8, 216, 201, 0.9);
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-btn:hover {
    background: rgba(8, 216, 201, 1);
    transform: scale(1.1);
}

.video-btn svg {
    width: 32px;
    height: 32px;
    color: var(--midnight-blue);
}

/* Hover-only state for controls */
.video-controls.hover-only {
    opacity: 0;
    pointer-events: none;
}

.video-container:hover .video-controls.hover-only {
    opacity: 1;
    pointer-events: auto;
}

/* Video progress bar */
.video-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-progress-container.visible {
    opacity: 1;
}

.video-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.video-progress {
    height: 100%;
    width: 0%;
    background: rgba(8, 216, 201, 1);
    border-radius: 2px;
    transition: width 0.1s linear;
    position: relative;
}

.video-progress-handle {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: grab;
}

.video-progress-bar:hover .video-progress-handle {
    opacity: 1;
}

.video-progress-handle:active {
    cursor: grabbing;
    transform: translateY(-50%) scale(1.2);
}

.video-progress-bar:hover {
    height: 6px;
}

.video-progress-bar:hover .video-progress-handle {
    width: 14px;
    height: 14px;
    right: -7px;
}

.video-border-effect {
    display: none;
}

@media (max-width: 768px) {
    .video-section .section-intro {
        margin-bottom: 40px;
    }

    .video-container {
        border-radius: 16px;
    }

    .video-border-effect {
        border-radius: 18px;
    }

    .video-glow {
        inset: -10px;
        filter: blur(30px);
    }
}

@media (max-width: 480px) {
    .video-section .section-intro {
        margin-bottom: 30px;
    }

    .video-container {
        border-radius: 12px;
    }

    .video-border-effect {
        border-radius: 14px;
    }

    .video-glow {
        display: none;
    }
}

/* ==================== SPOT Ai Section ==================== */
.spotai-section {
    background: var(--dark-slate);
    position: relative;
    overflow: hidden;
}

.section-spacer {
    padding: 120px 0;
}

.spotai-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(8, 216, 201, 0.03), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(8, 216, 201, 0.03), transparent 50%);
}

.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--electric-teal);
    display: inline-block;
}

.heading-m {
    font-family: var(--font-header);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--pure-white);
}

.pillars-container {
    position: relative;
}

.pillar-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(8, 216, 201, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.pillar-item:hover {
    transform: translateX(8px);
    border-color: var(--electric-teal);
    background: rgba(255, 255, 255, 0.05);
}

.pillar-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 216, 201, 0.1);
    border-radius: 12px;
    color: var(--electric-teal);
    font-size: 24px;
}

.pillar-content h4 {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.pillar-content p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* Metrics Container */
.metrics-container {
    background: linear-gradient(135deg, rgba(28, 39, 57, 0.6) 0%, rgba(11, 18, 33, 0.8) 100%);
    border: 1px solid rgba(8, 216, 201, 0.15);
    border-radius: 20px;
    padding: 40px;
}

.metric-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(11, 18, 33, 0.5);
    border: 1px solid rgba(8, 216, 201, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.metric-box:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(8, 216, 201, 0.4);
    background: rgba(11, 18, 33, 0.8);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(8, 216, 201, 0.15);
}

.metric-value {
    font-family: var(--font-header);
    font-size: 52px;
    font-weight: 700;
    color: var(--electric-teal);
    line-height: 1;
    margin-bottom: 12px;
}

.metric-symbol {
    font-size: 32px;
}

.metric-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.metric-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ==================== Trust Section ==================== */
.trust-section {
    background: var(--off-white);
    position: relative;
}

.trust-section h2 {
    color: var(--midnight-blue);
}

.section-description {
    max-width: 700px;
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(11, 18, 33, 0.7);
    line-height: 1.8;
}

.trust-logo {
    background: #fff;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(8, 216, 201, 0.1);
    transition: all 0.4s ease;
}

.trust-logo i {
    font-size: 3rem;
    opacity: 0.6;
    color: var(--midnight-blue);
    transition: all 0.4s ease;
}

.trust-logo:hover {
    transform: translateY(-4px);
    border: 2px solid var(--electric-teal);
    box-shadow: 0 10px 30px rgba(8, 216, 201, 0.2);
}

.trust-logo:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Brand Colors on Hover */
.trust-logo:hover .fa-microsoft {
    color: #00A4EF !important;
}

.trust-logo:hover .fa-google {
    color: #4285F4 !important;
}

.trust-logo:hover .fa-amazon {
    color: #FF9900 !important;
}

.trust-logo:hover .fa-meta {
    color: #0081FB !important;
}

.trust-logo:hover .fa-apple {
    color: #000000 !important;
}

.trust-logo:hover .fa-facebook {
    color: #1877F2 !important;
}

.trust-logo:hover .fa-salesforce {
    color: #00A1E0 !important;
}

.trust-logo:hover .fa-youtube {
    color: #FF0000 !important;
}

/* ==================== CONTACT CTA SECTION (cta_banner) ==================== */
.cta_banner {
    position: relative;
    padding: 180px 0;
    background: linear-gradient(135deg, #0B1221 0%, #1C2739 100%);
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(8, 216, 201, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(8, 216, 201, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label-light {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--electric-teal);
    margin-bottom: 25px;
    display: inline-block;
}

.contact-title {
    font-family: var(--font-header);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pure-white);
    margin-bottom: 30px;
}

.contact-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* ==================== Premium Contact Form ==================== */
.contact-form-container {
    position: relative;
    background: linear-gradient(135deg, rgba(28, 39, 57, 0.6) 0%, rgba(11, 18, 33, 0.8) 100%);
    border: 1px solid rgba(8, 216, 201, 0.2);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(8, 216, 201, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(8, 216, 201, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: formBackgroundMove 20s linear infinite;
    z-index: 0;
}

@keyframes formBackgroundMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

.premium-contact-form {
    position: relative;
    z-index: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    animation: formFieldSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes formFieldSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--electric-teal);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label i {
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(11, 18, 33, 0.5);
    border: 1px solid rgba(8, 216, 201, 0.15);
    border-radius: 12px;
    color: var(--pure-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--electric-teal);
    background: rgba(11, 18, 33, 0.7);
    box-shadow:
        0 0 0 3px rgba(8, 216, 201, 0.1),
        0 8px 20px rgba(8, 216, 201, 0.15);
    animation: inputPulseGlow 2s ease-in-out infinite;
}

@keyframes inputPulseGlow {
    0%, 100% {
        box-shadow:
            0 0 0 3px rgba(8, 216, 201, 0.1),
            0 8px 20px rgba(8, 216, 201, 0.15);
    }
    50% {
        box-shadow:
            0 0 0 3px rgba(8, 216, 201, 0.2),
            0 8px 30px rgba(8, 216, 201, 0.25);
    }
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2308D8C9' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-select option {
    background: var(--midnight-blue);
    color: var(--pure-white);
    padding: 10px;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.form-input:focus ~ .input-border,
.form-select:focus ~ .input-border,
.form-textarea:focus ~ .input-border {
    width: 100%;
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.btn-home-link {
    padding: 14px 40px;
}

.btn-submit-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    background: var(--electric-teal);
    color: var(--midnight-blue);
    border: none;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(8, 216, 201, 0.3),
        0 0 30px rgba(8, 216, 201, 0.2);
}

.btn-submit-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-submit-icon {
    transition: transform 0.3s ease;
}

.btn-submit-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-teal-light);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-submit-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
}

.btn-submit-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(8, 216, 201, 0.5),
        0 0 50px rgba(8, 216, 201, 0.4);
}

.btn-submit-premium:hover .btn-submit-glow {
    opacity: 1;
}

.btn-submit-premium:hover .btn-submit-shine {
    left: 100%;
    transition: left 0.6s ease;
}

.btn-submit-premium:hover .btn-submit-icon {
    transform: translateX(6px);
}

.btn-submit-premium:active {
    transform: translateY(-2px) scale(1);
    transition: all 0.1s ease;
}

/* Form Privacy Note */
.form-privacy-note {
    text-align: center;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-privacy-note i {
    color: var(--electric-teal);
    font-size: 14px;
}

/* ==================== FOOTER (footer_global) ==================== */
.footer_global {
    position: relative;
    padding: 100px 0 50px;
    background: var(--midnight-blue);
    border-top: 1px solid rgba(8, 216, 201, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
}

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

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
}

.footer-logo-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

.footer-logo-text {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pure-white);
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 35px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    border-color: var(--electric-teal);
    background: rgba(8, 216, 201, 0.15);
    color: var(--electric-teal);
    box-shadow: 0 5px 20px rgba(8, 216, 201, 0.3);
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-header);
    color: var(--electric-teal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-column a:hover {
    color: var(--electric-teal);
    padding-left: 8px;
    transform: translateX(3px);
}

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

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.15);
}

/* ==================== Animations ==================== */
@keyframes scrollLineAnim {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(15px);
        opacity: 1;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* UPDATED: Subtle fade from left to right on scroll */
.fade-reveal {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-reveal.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 30px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 700px;
        width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-logo-animation {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo-showcase {
        width: 320px;
        height: 320px;
    }

    .orbit-1 { width: 240px; height: 240px; }
    .orbit-2 { width: 290px; height: 290px; }
    .orbit-3 { width: 190px; height: 190px; }

    .showcase-logo {
        width: 120px;
    }

    .dot-4, .dot-5 {
        width: 6px;
        height: 6px;
    }
    .dot-6 {
        width: 4px;
        height: 4px;
    }
    .dot-7 {
        width: 3px;
        height: 3px;
    }

    @keyframes dotOrbit1 {
        from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
    }
    @keyframes dotOrbit2 {
        from { transform: rotate(0deg) translateX(145px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(145px) rotate(-360deg); }
    }
    @keyframes dotOrbit3 {
        from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
    }
    @keyframes dotOrbit4 {
        from { transform: rotate(120deg) translateX(120px) rotate(-120deg); }
        to { transform: rotate(480deg) translateX(120px) rotate(-480deg); }
    }
    @keyframes dotOrbit5 {
        from { transform: rotate(240deg) translateX(120px) rotate(-240deg); }
        to { transform: rotate(600deg) translateX(120px) rotate(-600deg); }
    }
    @keyframes dotOrbit6 {
        from { transform: rotate(0deg) translateX(95px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(95px) rotate(-360deg); }
    }
    @keyframes dotOrbit7 {
        from { transform: rotate(180deg) translateX(95px) rotate(-180deg); }
        to { transform: rotate(540deg) translateX(95px) rotate(-540deg); }
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spotai-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .spotai-left {
        position: relative;
        top: 0;
        text-align: center;
    }
    
    .divider-left {
        margin: 0 auto 40px;
    }
    
    .spotai-pillars {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container-max {
        padding: 0 30px;
    }
    
    .navbar-content {
        padding: 0 30px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero_section {
        padding: 120px 0 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    
    .hero-label {
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .heading-xl {
        font-size: clamp(32px, 8vw, 48px);
        text-align: center;
        width: 100%;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-align: center;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        align-items: center;
        gap: 15px;
    }
    
    .hero-actions .button-primary,
    .hero-actions .button-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero-logo-animation {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .logo-showcase {
        width: 260px;
        height: 260px;
    }

    .orbit-1 {
        width: 200px;
        height: 200px;
    }

    .orbit-2 {
        width: 240px;
        height: 240px;
    }

    .orbit-3 {
        width: 160px;
        height: 160px;
    }

    .showcase-logo {
        width: 100px;
    }

    .orbit-dot {
        width: 8px;
        height: 8px;
    }

    .dot-2 {
        width: 6px;
        height: 6px;
    }

    .dot-3, .dot-5 {
        width: 6px;
        height: 6px;
    }

    .dot-4 {
        width: 5px;
        height: 5px;
    }

    .dot-6 {
        width: 4px;
        height: 4px;
    }

    .dot-7 {
        width: 3px;
        height: 3px;
    }

    @keyframes dotOrbit1 {
        from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
    }
    @keyframes dotOrbit2 {
        from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
    }
    @keyframes dotOrbit3 {
        from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
    }
    @keyframes dotOrbit4 {
        from { transform: rotate(120deg) translateX(100px) rotate(-120deg); }
        to { transform: rotate(480deg) translateX(100px) rotate(-480deg); }
    }
    @keyframes dotOrbit5 {
        from { transform: rotate(240deg) translateX(100px) rotate(-240deg); }
        to { transform: rotate(600deg) translateX(100px) rotate(-600deg); }
    }
    @keyframes dotOrbit6 {
        from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
    }
    @keyframes dotOrbit7 {
        from { transform: rotate(180deg) translateX(80px) rotate(-180deg); }
        to { transform: rotate(540deg) translateX(80px) rotate(-540deg); }
    }

    .heading-l {
        font-size: clamp(28px, 7vw, 42px);
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card-luxury {
        padding: 40px 30px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card-premium {
        padding: 45px 35px;
    }
    
    .metrics-container {
        padding: 30px 20px;
    }

    .spotai-section {
        padding: 80px 0;
    }

    .trust-section {
        padding: 80px 0;
    }

    .trust-logo {
        height: 100px;
    }

    .trust-logo i {
        font-size: 2.5rem;
    }
    
    .footer-links-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .btn-large {
        padding: 18px 40px;
        font-size: 11px;
    }

    .section-dark,
    .section-light {
        padding: 120px 0;
    }

    .cta_banner {
        padding: 120px 0 100px;
    }

    /* Contact Form Responsive */
    .contact-form-container {
        padding: 40px 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .btn-submit-premium {
        width: 100%;
        max-width: 400px;
        padding: 18px 50px;
    }
}

@media (max-width: 480px) {
    .container-max {
        padding: 0 20px;
    }
    
    .navbar-content {
        padding: 0 20px;
    }
    
    .hero_section {
        padding: 100px 0 60px;
    }
    
    .hero-content-wrapper {
        padding: 0 20px;
    }
    
    .heading-xl {
        font-size: clamp(28px, 9vw, 36px);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
        padding: 0;
    }
    
    .hero-actions {
        max-width: 100%;
        padding: 0;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .logo-neural {
        width: 180px;
        height: 180px;
    }

    .pillar-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .pillar-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }

    .pillar-content h4 {
        font-size: 16px;
    }

    .pillar-content p {
        font-size: 13px;
    }

    .metric-value {
        font-size: 44px;
    }

    .metric-symbol {
        font-size: 28px;
    }

    .trust-logo {
        height: 90px;
    }

    .trust-logo i {
        font-size: 2rem;
    }

    /* Contact Form Mobile */
    .contact-form-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .form-grid {
        gap: 20px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 14px 18px;
        font-size: 14px;
    }

    .form-label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .btn-submit-premium {
        padding: 16px 40px;
        font-size: 12px;
    }

    .form-privacy-note {
        font-size: 11px;
        flex-direction: column;
        gap: 5px;
    }
}

/* ==================== Custom Scrollbar ==================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--midnight-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--electric-teal);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--electric-teal-dark);
}

/* ==================== Selection Color ==================== */
::selection {
    background: var(--electric-teal);
    color: var(--midnight-blue);
}

::-moz-selection {
    background: var(--electric-teal);
    color: var(--midnight-blue);
}

/* ==================== Scroll to Top Button ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--electric-teal);
    color: var(--midnight-blue);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(8, 216, 201, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: var(--electric-teal-dark);
    box-shadow:
        0 10px 30px rgba(8, 216, 201, 0.4),
        0 0 40px rgba(8, 216, 201, 0.3);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* ==================== WhatsApp Chat Button ==================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 998;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.1);
    background: #20ba5a;
    color: #fff;
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.5),
        0 0 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:active {
    transform: translateY(-2px) scale(1.05);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: var(--midnight-blue);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}