/* ========================================
   Proxy Solar - Ultra Enhanced Styles v3
   Premium Dark Theme with Stunning Effects
   ======================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: #030303;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: rgba(255, 127, 17, 0.4);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff7f11, #c74a08);
    border-radius: 5px;
    border: 2px solid #080808;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff9c37, #ff7f11);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.gradient-text {
    background: linear-gradient(135deg, #ffb366, #ff7f11, #f06307);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animated {
    background: linear-gradient(135deg, #ffb366, #ff7f11, #f06307, #ffb366);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========================================
   Epic Preloader
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-bg {
    position: absolute;
    inset: 0;
    background: #030303;
}

.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    position: relative;
    width: 120px;
    height: 120px;
}

.preloader-sun {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-core {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #ff9c37, #ff7f11, #f06307);
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(255, 127, 17, 0.6),
        0 0 60px rgba(255, 127, 17, 0.4),
        0 0 100px rgba(255, 127, 17, 0.2);
    animation: sun-pulse 2s ease-in-out infinite;
}

.sun-rays-loader {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: #ff7f11;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.sun-rays-loader::before,
.sun-rays-loader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

.sun-rays-loader::before {
    inset: 8px;
    border-right-color: #ff9c37;
    animation: spin 1.5s linear reverse infinite;
}

.sun-rays-loader::after {
    inset: 16px;
    border-bottom-color: #f06307;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes sun-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.preloader-text {
    display: flex;
    gap: 2px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.preloader-text .letter {
    color: #fff;
    animation: letter-bounce 1.2s ease-in-out infinite;
}

.preloader-text .letter.accent {
    color: #ff7f11;
}

.preloader-text .letter:nth-child(1) { animation-delay: 0s; }
.preloader-text .letter:nth-child(2) { animation-delay: 0.05s; }
.preloader-text .letter:nth-child(3) { animation-delay: 0.1s; }
.preloader-text .letter:nth-child(4) { animation-delay: 0.15s; }
.preloader-text .letter:nth-child(5) { animation-delay: 0.2s; }
.preloader-text .letter:nth-child(6) { animation-delay: 0.25s; }
.preloader-text .letter:nth-child(7) { animation-delay: 0.3s; }
.preloader-text .letter:nth-child(8) { animation-delay: 0.35s; }
.preloader-text .letter:nth-child(9) { animation-delay: 0.4s; }
.preloader-text .letter:nth-child(10) { animation-delay: 0.45s; }

@keyframes letter-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.preloader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff7f11, #ff9c37);
    border-radius: 2px;
    animation: progress-load 2s ease-in-out forwards;
}

@keyframes progress-load {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ========================================
   Cursor Glow
   ======================================== */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 127, 17, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-glow { display: none; }
}

/* ========================================
   Animated Background
   ======================================== */
.bg-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 127, 17, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(240, 99, 7, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(199, 74, 8, 0.02) 0%, transparent 50%);
}

.sun-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.sun-glow-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 127, 17, 0.15) 0%, rgba(240, 99, 7, 0.05) 50%, transparent 70%);
    animation: float-glow 20s ease-in-out infinite;
}

.sun-glow-2 {
    bottom: 20%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 156, 55, 0.1) 0%, transparent 60%);
    animation: float-glow 25s ease-in-out infinite reverse;
}

.sun-glow-3 {
    top: 50%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 99, 7, 0.08) 0%, transparent 60%);
    animation: float-glow 30s ease-in-out infinite;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 127, 17, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 127, 17, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -20px;
    width: 4px;
    height: 4px;
    background: #ff7f11;
    border-radius: 50%;
    animation: float-up 20s linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.aurora {
    position: absolute;
    width: 100%;
    height: 50%;
    filter: blur(100px);
}

.aurora-1 {
    top: 0;
    background: linear-gradient(180deg, rgba(255, 127, 17, 0.05) 0%, transparent 100%);
    animation: aurora-shift 15s ease-in-out infinite;
}

.aurora-2 {
    bottom: 0;
    background: linear-gradient(0deg, rgba(240, 99, 7, 0.03) 0%, transparent 100%);
    animation: aurora-shift 20s ease-in-out infinite reverse;
}

@keyframes aurora-shift {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

/* ========================================
   Floating Sale Badge
   ======================================== */
.floating-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    cursor: pointer;
    text-decoration: none;
}

.badge-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(255, 127, 17, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: badge-pulse 2s ease-in-out infinite;
}

.badge-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7f11, #f06307);
    border-radius: 50%;
    box-shadow: 
        0 4px 20px rgba(255, 127, 17, 0.4),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    animation: badge-bounce 3s ease-in-out infinite;
}

.badge-icon {
    color: white;
    margin-bottom: -2px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.badge-discount {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: white;
}

.badge-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0; }
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .floating-badge {
        bottom: 20px;
        right: 20px;
    }
    .badge-content {
        width: 65px;
        height: 65px;
    }
    .badge-discount {
        font-size: 1rem;
    }
    .badge-icon { display: none; }
}

/* ========================================
   Navigation
   ======================================== */
.nav-glass {
    background: rgba(3, 3, 3, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-glass.scrolled {
    background: rgba(3, 3, 3, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.logo-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(255, 127, 17, 0.3);
    border-radius: 50%;
    animation: logo-ring-pulse 3s ease-in-out infinite;
}

.logo-pulse {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(255, 127, 17, 0.1);
    border-radius: 50%;
    animation: logo-ring-pulse 3s ease-in-out infinite 0.5s;
}

@keyframes logo-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Nav Links */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff7f11, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

/* Nav CTA Button */
.btn-nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff7f11, #f06307);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-nav-cta .btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 127, 17, 0.3);
}

.btn-nav-cta:hover .btn-glow {
    opacity: 1;
}

/* Mobile Menu Button */
.btn-mobile-menu {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.btn-mobile-menu.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.btn-mobile-menu.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background: rgba(255, 127, 17, 0.1);
    color: #ff7f11;
}

.btn-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ff7f11, #f06307);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    margin-top: 0.5rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-product {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.1;
}

.product-float {
    position: relative;
    animation: hero-float 6s ease-in-out infinite;
}

.hero-product-img {
    width: 500px;
    max-width: 50vw;
    filter: drop-shadow(0 0 50px rgba(255, 127, 17, 0.3));
}

.product-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(255, 127, 17, 0.2) 0%, transparent 70%);
    filter: blur(50px);
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-30px) rotate(2deg); }
}

@media (max-width: 1024px) {
    .hero-product { display: none; }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 127, 17, 0.1);
    border: 1px solid rgba(255, 127, 17, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ff7f11;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ff7f11;
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-badge .badge-text {
    color: #ff9c37;
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-badge .badge-timer {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #ff7f11, #f06307);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

/* Hero Title */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line-1 {
    color: white;
}

/* Hero Subtitle */
.hero-subtitle {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.hero-subtitle .highlight {
    color: #ff9c37;
    font-weight: 600;
}

/* Countdown */
.countdown-wrapper {
    margin-bottom: 2.5rem;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 127, 17, 0.1);
    border: 1px solid rgba(255, 127, 17, 0.2);
    border-radius: 16px;
    min-width: 80px;
}

.countdown-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #ff7f11;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: rgba(255, 127, 17, 0.5);
}

@media (max-width: 640px) {
    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }
    .countdown-value {
        font-size: 1.5rem;
    }
}

/* Hero CTAs */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero-primary,
.btn-hero-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff7f11, #f06307);
    color: white;
}

.btn-hero-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f06307, #c74a08);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 127, 17, 0.3);
}

.btn-hero-primary:hover .btn-bg {
    opacity: 1;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-secondary .btn-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 127, 17, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 127, 17, 0.1);
    transform: translateY(-3px);
}

.btn-hero-secondary:hover .btn-border {
    opacity: 1;
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 127, 17, 0.1);
    border: 1px solid rgba(255, 127, 17, 0.2);
    border-radius: 12px;
    color: #ff7f11;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #ff7f11;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(8, 8, 8, 0.5);
}

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

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 127, 17, 0.1);
    border: 1px solid rgba(255, 127, 17, 0.2);
    border-radius: 16px;
    color: #ff7f11;
}

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ff7f11;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Section Styles
   ======================================== */
.section-padding {
    padding: 6rem 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 127, 17, 0.1);
    border: 1px solid rgba(255, 127, 17, 0.2);
    border-radius: 50px;
    color: #ff9c37;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ========================================
   Products Section
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 127, 17, 0.1);
}

.product-card.featured {
    border-color: transparent;
}

.featured-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #ff7f11, #f06307, #ff9c37, #ff7f11);
    background-size: 300% 300%;
    animation: gradient-border 4s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes gradient-border {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50px;
    color: white;
}

.badge-hot { background: linear-gradient(135deg, #ef4444, #dc2626); }
.badge-popular { background: linear-gradient(135deg, #ff7f11, #f06307); }
.badge-pro { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.badge-best { background: linear-gradient(135deg, #eab308, #ca8a04); }

/* Product Image */
.product-image {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.image-glow {
    position: absolute;
    inset: 20%;
    background: radial-gradient(circle, rgba(255, 127, 17, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .image-glow {
    opacity: 1;
}

.product-image img {
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay span {
    padding: 0.5rem 1rem;
    background: #ff7f11;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.product-card:hover .image-overlay span {
    transform: translateY(0);
}

/* Product Content */
.product-content {
    padding: 1.5rem;
    padding-top: 0;
}

.product-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: #ff9c37;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* Product Pricing */
.product-pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.price-current {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: white;
}

.price-old {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.price-discount {
    padding: 0.25rem 0.5rem;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
}

/* Product Button */
.btn-product {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 127, 17, 0.2), rgba(240, 99, 7, 0.1));
    border: 1px solid rgba(255, 127, 17, 0.3);
    color: #ff9c37;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: linear-gradient(135deg, #ff7f11, #f06307);
    color: white;
    border-color: transparent;
}

/* ========================================
   Power Section
   ======================================== */
.power-section {
    padding: 6rem 0;
    background: rgba(8, 8, 8, 0.5);
}

.power-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .power-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .power-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.power-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.power-item:hover {
    background: rgba(255, 127, 17, 0.1);
    border-color: rgba(255, 127, 17, 0.2);
    transform: translateY(-5px);
}

.power-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 127, 17, 0.1);
    border-radius: 12px;
    color: #ff7f11;
}

.power-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.power-item.highlight {
    background: linear-gradient(135deg, rgba(255, 127, 17, 0.2), rgba(240, 99, 7, 0.1));
    border-color: rgba(255, 127, 17, 0.3);
}

.power-item.highlight .power-icon {
    background: linear-gradient(135deg, #ff7f11, #f06307);
    color: white;
}

.power-item.highlight span {
    color: #ff9c37;
    font-weight: 600;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item {
        height: 200px;
    }
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 640px) {
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gallery-title {
    font-weight: 600;
    color: white;
}

.gallery-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.gallery-zoom {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff7f11;
    border-radius: 10px;
    color: white;
}

.gallery-item.add-more {
    background: rgba(15, 15, 15, 0.5);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-more-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: #ff7f11;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: #ff7f11;
}

.lightbox-nav.prev { left: -80px; }
.lightbox-nav.next { right: -80px; }

@media (max-width: 768px) {
    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-section {
    background: rgba(8, 8, 8, 0.5);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.why-content .section-title {
    text-align: left;
}

.why-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 127, 17, 0.05);
    border-color: rgba(255, 127, 17, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 127, 17, 0.2), rgba(240, 99, 7, 0.1));
    border-radius: 12px;
    color: #ff7f11;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Specs Card */
.specs-wrapper {
    position: relative;
}

.specs-card {
    position: relative;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
}

.specs-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 127, 17, 0.1) 0%, transparent 60%);
    filter: blur(50px);
}

.specs-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 127, 17, 0.05);
}

.specs-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.specs-header h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.specs-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.specs-body {
    position: relative;
    padding: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.spec-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.spec-row span:first-child {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.spec-row span:last-child {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.spec-row.highlight {
    background: rgba(255, 127, 17, 0.1);
    margin-top: 0.5rem;
}

.spec-row.highlight span:last-child {
    color: #ff9c37;
}

/* ========================================
   Order Form Section
   ======================================== */
.order-section {
    position: relative;
}

.form-wrapper {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
}

/* Form Progress */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 127, 17, 0.02);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.step-check {
    display: none;
    color: white;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #ff7f11, #f06307);
    border-color: transparent;
}

.progress-step.active .step-number {
    color: white;
}

.progress-step.completed .step-circle {
    background: #22c55e;
    border-color: transparent;
}

.progress-step.completed .step-number {
    display: none;
}

.progress-step.completed .step-check {
    display: block;
}

.step-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: rgba(255, 255, 255, 0.8);
}

.progress-line {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.line-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ff7f11, #22c55e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.progress-step.completed + .progress-line .line-fill {
    transform: scaleX(1);
}

@media (max-width: 640px) {
    .progress-line {
        width: 40px;
    }
    .step-label {
        display: none;
    }
}

/* Form Steps */
.order-form {
    padding: 2rem;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

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

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 127, 17, 0.2), rgba(240, 99, 7, 0.1));
    border-radius: 14px;
    color: #ff7f11;
}

.step-header h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.step-header p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Package Selector */
.package-selector {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.package-option input {
    display: none;
}

.package-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card:hover {
    background: rgba(255, 127, 17, 0.05);
    border-color: rgba(255, 127, 17, 0.2);
}

.package-option input:checked + .package-card {
    background: rgba(255, 127, 17, 0.1);
    border-color: #ff7f11;
}

.package-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 4px;
    color: white;
}

.package-badge.hot { background: #ef4444; }
.package-badge.popular { background: #ff7f11; }
.package-badge.pro { background: #8b5cf6; }
.package-badge.best { background: #eab308; }

.package-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.package-name {
    font-weight: 600;
    color: white;
}

.package-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.package-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #ff9c37;
}

.package-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: transparent;
    transition: all 0.3s ease;
}

.package-option input:checked + .package-card .package-check {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

@media (max-width: 640px) {
    .package-card {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }
    .package-badge {
        grid-column: 1;
    }
    .package-check {
        grid-row: span 2;
    }
    .package-price {
        justify-self: start;
    }
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group.full {
    grid-column: span 2;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full {
        grid-column: span 1;
    }
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.input-wrapper.textarea .input-icon {
    top: 1rem;
    transform: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 2.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #ff7f11;
    background: rgba(255, 127, 17, 0.05);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-wrapper select {
    appearance: none;
    cursor: pointer;
}

.input-wrapper.select::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.input-hint {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

/* Terms Checkbox */
.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    cursor: pointer;
}

.terms-checkbox input {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.terms-checkbox input:checked + .checkbox-custom {
    background: #ff7f11;
    border-color: #ff7f11;
}

.terms-checkbox input:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.checkbox-label a {
    color: #ff9c37;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn-prev,
.btn-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-next {
    background: linear-gradient(135deg, rgba(255, 127, 17, 0.2), rgba(240, 99, 7, 0.1));
    border: 1px solid rgba(255, 127, 17, 0.3);
    color: #ff9c37;
}

.btn-next:hover {
    background: linear-gradient(135deg, #ff7f11, #f06307);
    border-color: transparent;
    color: white;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff7f11, #f06307);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 127, 17, 0.3);
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ========================================
   Locations Section
   ======================================== */
.locations-section {
    background: rgba(8, 8, 8, 0.5);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

.location-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 127, 17, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.location-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 127, 17, 0.2), rgba(240, 99, 7, 0.1));
    border-radius: 20px;
    color: #ff7f11;
}

.location-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
}

.location-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 127, 17, 0.1);
    border: 1px solid rgba(255, 127, 17, 0.2);
    border-radius: 10px;
    color: #ff9c37;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-link:hover {
    background: #ff7f11;
    border-color: transparent;
    color: white;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 6rem 0;
}

.cta-card {
    position: relative;
    padding: 4rem 3rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 127, 17, 0.2);
    border-radius: 32px;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 127, 17, 0.15) 0%, transparent 60%);
    filter: blur(60px);
}

.cta-content {
    position: relative;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff7f11, #f06307);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-cta .btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 127, 17, 0.3);
}

.btn-cta:hover .btn-glow {
    opacity: 1;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: rgba(8, 8, 8, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.footer-logo h3 span {
    color: #ff7f11;
}

.footer-logo p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff9c37;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-contact li svg {
    color: #ff7f11;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Toast Notification
   ======================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10001;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast.error {
    border-color: rgba(239, 68, 68, 0.3);
}

.toast.success {
    border-color: rgba(34, 197, 94, 0.3);
}

.toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast.error .toast-icon { color: #ef4444; }
.toast.success .toast-icon { color: #22c55e; }

.toast-message {
    font-size: 0.9rem;
    color: white;
}

/* ========================================
   Success Modal
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.98), rgba(15, 15, 15, 0.98));
    border: 1px solid rgba(255, 127, 17, 0.2);
    border-radius: 24px;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.icon-circle {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    color: white;
    animation: icon-pop 0.5s ease 0.2s backwards;
}

@keyframes icon-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.icon-rings .ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: ring-expand 1.5s ease-out infinite;
}

.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 0.3s; }
.ring-3 { animation-delay: 0.6s; }

@keyframes ring-expand {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.modal-content h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
}

.modal-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.countdown-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ff7f11;
}

.btn-modal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff7f11, #f06307);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 127, 17, 0.3);
}

/* ========================================
   Responsive Utilities
   ======================================== */
@media (max-width: 640px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
}