/* ========================================
   MelodiiPeComanda.ro - Main Stylesheet
   Dark Theme with Glass Effect & Neon Accents
======================================== */

/* CSS Variables */
:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --anthracite: #2d2d3a;
    --anthracite-light: #3d3d4a;

    /* Neon Accent Colors */
    --neon-purple: #a855f7;
    --neon-magenta: #ec4899;
    --neon-pink: #f472b6;
    --neon-violet: #8b5cf6;
    --neon-blue: #6366f1;

    /* Gradients */
    --gradient-neon: linear-gradient(135deg, var(--neon-purple), var(--neon-magenta));
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    --gradient-anthracite: linear-gradient(135deg, #2d2d3a 0%, #1a1a25 50%, #0a0a0f 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

/* Hide browser autofill icons */
input::-webkit-contacts-auto-fill-button,
input::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    height: 0;
    width: 0;
    margin: 0;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-anthracite);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Prevent horizontal overflow globally */
section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Glass Effect */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* Neon Text */
.neon-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

/* Neon Button */
.btn-neon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 1;
}

.btn-neon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: var(--gradient-neon);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 3s linear infinite;
}

.btn-neon::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #a855f7 100%);
    border-radius: 48px;
    z-index: -1;
    transition: all var(--transition-normal);
}

.btn-neon:hover::after {
    background: linear-gradient(135deg, #fb923c 0%, #f472b6 50%, #c084fc 100%);
}

.btn-neon:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5), 0 0 60px rgba(236, 72, 153, 0.3);
    transform: translateY(-2px);
}

.btn-neon span {
    position: relative;
    z-index: 2;
}

.btn-neon i {
    margin-right: 8px;
}

.btn-neon.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-neon.btn-full {
    width: 100%;
}

/* Nav Buttons Container */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-auth-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.nav-auth-btn:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--neon-purple);
    color: var(--text-primary);
}

.nav-auth-btn i {
    color: var(--neon-purple);
}

.btn-neon-small {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 30px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-neon-small::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: var(--gradient-neon);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-neon-small:hover {
    background: var(--gradient-neon);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

/* Animated Border */
@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Floating Notes Animation */
.floating-notes {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 24px;
    color: var(--neon-purple);
    opacity: 0.2;
    animation: floatNote 15s linear infinite;
}

.note:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.note:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; color: var(--neon-magenta); }
.note:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 16s; }
.note:nth-child(4) { left: 50%; animation-delay: 6s; animation-duration: 13s; color: var(--neon-pink); }
.note:nth-child(5) { left: 65%; animation-delay: 8s; animation-duration: 15s; }
.note:nth-child(6) { left: 75%; animation-delay: 10s; animation-duration: 11s; color: var(--neon-violet); }
.note:nth-child(7) { left: 85%; animation-delay: 12s; animation-duration: 17s; }
.note:nth-child(8) { left: 95%; animation-delay: 14s; animation-duration: 14s; color: var(--neon-magenta); }

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

/* ========================================
   Navigation
======================================== */
.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: var(--container-width);
    z-index: 1000;
    padding: 12px 15px;
    border-radius: 100px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    top: 15px;
    padding: 10px 15px;
    background: rgba(10, 10, 15, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    padding: 5px 15px;
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.logo:hover {
    background: rgba(255, 255, 255, 0.05);
}

.logo-icon {
    font-size: 2.2rem;
    color: #ffffff;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 25px rgba(236, 72, 153, 0.6));
    animation: iconGlow 2s ease-in-out infinite alternate, iconSpin 8s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconGlow {
    0% {
        filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 25px rgba(236, 72, 153, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.9)) drop-shadow(0 0 30px rgba(168, 85, 247, 0.7));
    }
}

@keyframes iconSpin {
    0%, 80% {
        transform: rotateY(0deg);
    }
    90% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.logo-img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    animation: iconGlow 2s ease-in-out infinite alternate, iconSpin 8s ease-in-out infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 50px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 50px;
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: var(--text-primary);
    background: var(--gradient-neon);
}

/* CTA Button in Navbar */
.navbar .btn-neon {
    padding: 12px 25px;
    font-size: 0.9rem;
    border-radius: 50px;
}

.navbar .btn-neon::after {
    border-radius: 50px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Responsive Navbar */
@media (max-width: 1100px) {
    .nav-links {
        gap: 1px;
    }

    .nav-links a {
        padding: 7px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        width: calc(100% - 40px);
        padding: 10px 15px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar .btn-neon {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 10px 15px;
    }

    .navbar.scrolled {
        top: 0;
    }

    .logo-img {
        height: 35px;
        width: 35px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .nav-container {
        gap: 10px;
    }

    .nav-buttons {
        gap: 8px;
        flex-shrink: 0;
    }

    .hamburger {
        padding: 8px;
        flex-shrink: 0;
    }

    .nav-auth-btn span {
        display: none;
    }

    .nav-auth-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar .btn-neon span {
        display: none;
    }

    .navbar .btn-neon {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar .btn-neon::before {
        display: none;
    }

    .navbar .btn-neon::after {
        border-radius: 50%;
        inset: 0;
    }

    .navbar .btn-neon i {
        margin: 0;
        position: relative;
        z-index: 2;
    }

    .content-inner {
        padding-top: 100px !important;
    }
}

@media (max-width: 576px) {
    .navbar {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 8px 12px;
    }

    .nav-container {
        gap: 8px;
    }

    .logo {
        padding: 5px 8px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        font-size: 1.3rem;
    }

    .hamburger {
        padding: 6px;
    }

    .hamburger span {
        width: 18px;
    }

    .navbar .btn-neon span {
        display: none;
    }

    .navbar .btn-neon {
        padding: 0 !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .navbar .btn-neon::before {
        display: none !important;
    }

    .navbar .btn-neon::after {
        border-radius: 50% !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .navbar .btn-neon i {
        margin: 0;
        font-size: 1rem;
        position: relative;
        z-index: 2;
    }

    .nav-auth-btn {
        width: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50% !important;
    }

    .nav-auth-btn i {
        font-size: 1rem;
    }

    .content-inner {
        padding-top: 90px !important;
    }
}

/* ========================================
   Hero Slider - Full Width Modern
======================================== */
.hero-slider-fullwidth {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

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

.fullwidth-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.fullwidth-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Full Width Image */
.slide-image-fullwidth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image-fullwidth img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1);
    animation: none;
}

.fullwidth-slide.active .slide-image-fullwidth img {
    animation: slowZoom 8s ease-out forwards;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

/* Gradient Overlay - Dark on Left for Text */
.slide-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.85) 25%,
        rgba(10, 10, 15, 0.6) 50%,
        rgba(10, 10, 15, 0.3) 70%,
        rgba(10, 10, 15, 0.1) 100%
    );
    z-index: 1;
}

/* Also add bottom gradient for better contrast */
.slide-gradient-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 100%);
}

/* Content Positioning */
.slide-content-fullwidth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
}

.slide-content-fullwidth .content-wrapper {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
    margin: 0 auto;
}

.content-inner {
    max-width: 650px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
    padding-top: 120px; /* Space for fixed navbar header */
}

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

/* Slide Tag */
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neon-purple);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.slide-tag i {
    font-size: 1rem;
}

/* Neon Text Glow Effect */
.neon-text-glow {
    display: inline;
    color: rgba(255, 255, 255, 0.95);
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
}

.slide-content-fullwidth h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.slide-content-fullwidth p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 550px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Live Orders Animation */
.hero-stat-live {
    transition: opacity 0.3s ease;
}

.hero-stat-live.fade-out {
    opacity: 0;
}

.hero-stat-live .live-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-live .live-order {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-stat-live .live-minutes {
    color: var(--neon-purple);
    font-weight: 600;
}

/* Counter Animation */
.counter-wrapper {
    overflow: hidden;
    position: relative;
}

.counter-number {
    transition: transform 0.4s ease;
}

.counter-number-new {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
}

.counter-number.counter-slide-up {
    transform: translateY(-100%);
}

.counter-number-new.counter-slide-in {
    transform: translateY(0);
}

/* Music Equalizer Animation */
.music-equalizer {
    position: absolute;
    bottom: 120px;
    right: 10%;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    z-index: 5;
    opacity: 0.7;
}

.music-equalizer span {
    width: 6px;
    background: var(--gradient-neon);
    border-radius: 3px;
    animation: equalizerBounce 1s ease-in-out infinite;
}

.music-equalizer span:nth-child(1) { animation-delay: 0s; height: 20px; }
.music-equalizer span:nth-child(2) { animation-delay: 0.1s; height: 35px; }
.music-equalizer span:nth-child(3) { animation-delay: 0.2s; height: 25px; }
.music-equalizer span:nth-child(4) { animation-delay: 0.3s; height: 45px; }
.music-equalizer span:nth-child(5) { animation-delay: 0.4s; height: 30px; }
.music-equalizer span:nth-child(6) { animation-delay: 0.5s; height: 50px; }
.music-equalizer span:nth-child(7) { animation-delay: 0.6s; height: 35px; }
.music-equalizer span:nth-child(8) { animation-delay: 0.7s; height: 45px; }
.music-equalizer span:nth-child(9) { animation-delay: 0.8s; height: 25px; }
.music-equalizer span:nth-child(10) { animation-delay: 0.9s; height: 40px; }

@keyframes equalizerBounce {
    0%, 100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
}

/* Slider Navigation */
.fullwidth-slider-nav {
    position: absolute;
    bottom: 50px;
    right: 18%;
    left: auto;
    transform: none;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: var(--gradient-neon);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    transform: scale(1.1);
}

/* Progress Dots & Bar */
.slider-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.progress-dots {
    display: flex;
    gap: 12px;
}

.progress-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.progress-dot::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: var(--gradient-neon);
    transform: scale(0);
    transition: transform var(--transition-normal);
}

.progress-dot.active::before,
.progress-dot:hover::before {
    transform: scale(1);
}

.progress-dot.active {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.progress-bar-container {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-neon);
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: floatUpDown 2s ease-in-out infinite;
}

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

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gradient-neon);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.scroll-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Full Width Slider */
@media (max-width: 1200px) {
    .slide-content-fullwidth h1 {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .slide-gradient-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 15, 0.7) 0%,
            rgba(10, 10, 15, 0.85) 50%,
            rgba(10, 10, 15, 0.95) 100%
        );
    }

    .slide-content-fullwidth {
        align-items: flex-end;
        padding-bottom: 150px;
        justify-content: center;
    }

    .slide-content-fullwidth .content-wrapper {
        padding: 0 20px;
    }

    .content-inner {
        max-width: 100%;
        text-align: center;
    }

    .slide-content-fullwidth h1 {
        font-size: 2.8rem;
    }

    .slide-content-fullwidth p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .music-equalizer {
        display: none;
    }

    .scroll-indicator {
        right: 50%;
        transform: translateX(50%);
        bottom: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider-fullwidth {
        min-height: 100vh;
    }

    .slide-content-fullwidth h1 {
        font-size: 2.2rem;
    }

    .slide-content-fullwidth p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-neon.btn-large,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

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

    .fullwidth-slider-nav {
        bottom: 30px;
        gap: 15px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
    }

    .progress-bar-container {
        width: 100px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .slide-content-fullwidth h1 {
        font-size: 1.8rem;
    }

    .slide-tag {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .slide-content-fullwidth {
        padding-bottom: 120px;
    }

    .slide-content-fullwidth .content-wrapper {
        padding: 0 15px;
    }
}

/* ========================================
   Stats Section
======================================== */
.stats-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-neon);
}

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

.stat-card {
    text-align: center;
    padding: 40px 30px;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    font-size: 1.8rem;
    color: var(--neon-purple);
    flex-shrink: 0;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    min-width: 80px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 10px;
    line-height: 1.3;
}

/* ========================================
   Section Header
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    background-image: linear-gradient(var(--bg-secondary), var(--bg-secondary)), var(--gradient-neon);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.4), inset 0 0 15px rgba(168, 85, 247, 0.1);
    }
    33% {
        box-shadow: 0 0 15px rgba(236, 72, 153, 0.4), inset 0 0 15px rgba(236, 72, 153, 0.1);
    }
    66% {
        box-shadow: 0 0 15px rgba(244, 114, 182, 0.4), inset 0 0 15px rgba(244, 114, 182, 0.1);
    }
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Services Section
======================================== */
.services-section {
    padding: var(--section-padding);
    background: var(--gradient-anthracite);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .btn-neon-small {
    margin-top: auto;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
}

.service-card.featured {
    border: 2px solid transparent;
    background:
        linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
        var(--gradient-neon) border-box;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-neon);
    padding: 8px 40px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--neon-purple);
}

/* ========================================
   How It Works Section
======================================== */
.how-it-works {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.steps-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    flex: 0 0 220px;
    min-height: 320px;
    padding: 40px 25px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    z-index: 0;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-grow: 1;
    line-height: 1.4;
    overflow: hidden;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.connector-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-neon);
    opacity: 0.5;
}

.connector-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-purple);
    border-radius: 50%;
    margin-left: -5px;
}

/* ========================================
   Portfolio Section
======================================== */
.portfolio-section {
    padding: var(--section-padding);
    background: var(--gradient-anthracite);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-neon);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

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

.portfolio-item {
    overflow: hidden;
    transition: all var(--transition-normal);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all var(--transition-slow);
}

/* Portfolio Video Styles */
.portfolio-video {
    position: relative;
    overflow: hidden;
}

.portfolio-video video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.portfolio-item:hover .portfolio-video video {
    transform: scale(1.1);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(168, 85, 247, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

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

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--neon-purple);
    font-size: 1.5rem;
    cursor: pointer;
    transform: scale(0.8);
    transition: all var(--transition-normal);
}

.portfolio-item:hover .play-btn {
    transform: scale(1);
}

.play-btn:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.portfolio-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient-neon);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Portfolio Footer - Tag + Share on same row */
.portfolio-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Portfolio Share Buttons */
.portfolio-share {
    display: flex;
    gap: 6px;
}

.portfolio-share .share-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.8rem;
}

.portfolio-share .share-btn:hover {
    transform: scale(1.3);
    background: var(--gradient-neon);
    color: #fff;
}

/* ========================================
   Pricing Section
======================================== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .btn-neon {
    margin-top: auto;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
}

.pricing-card.featured {
    border: 2px solid transparent;
    background:
        linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
        var(--gradient-neon) border-box;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--neon-purple);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.price .currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--neon-purple);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* ========================================
   Section Separator
======================================== */
.section-separator {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-magenta), var(--neon-purple), transparent);
}

.section-separator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-magenta), var(--neon-purple), transparent);
}

.separator-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    max-width: 150px;
}

.separator-text {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.separator-text i {
    color: var(--neon-purple);
    font-size: 1.2rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.separator-text span {
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

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

@media (max-width: 768px) {
    .separator-content {
        flex-direction: column;
        gap: 15px;
    }

    .separator-line {
        width: 100px;
        max-width: 100px;
    }

    .separator-text {
        padding: 12px 20px;
    }

    .separator-text span {
        font-size: 0.9rem;
    }
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--gradient-anthracite);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    padding: 50px;
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-content {
    margin-bottom: 30px;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-purple);
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonials-dots .dot.active {
    background: var(--gradient-neon);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

/* ========================================
   Order Section
======================================== */
.order-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.order-image {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.order-image img {
    width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5))
            drop-shadow(0 0 40px rgba(168, 85, 247, 0.3));
    animation: danceBounce 1.2s ease-in-out infinite;
}

@keyframes danceBounce {
    0% { transform: translateY(0); }
    15% { transform: translateY(-2px); }
    30% { transform: translateY(0); }
    45% { transform: translateY(-2px); }
    60% { transform: translateY(0); }
    100% { transform: translateY(0); }
}

@keyframes float-image {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5))
                drop-shadow(0 0 40px rgba(168, 85, 247, 0.3));
    }
    50% {
        transform: translateY(-10px);
        filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.7))
                drop-shadow(0 0 60px rgba(168, 85, 247, 0.4));
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.4),
                    0 0 60px rgba(168, 85, 247, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.6),
                    0 0 80px rgba(168, 85, 247, 0.3);
    }
}

.order-image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.order-image-decoration .music-note {
    position: absolute;
    font-size: 2rem;
    animation: float-notes 4s ease-in-out infinite;
    opacity: 0.8;
}

.order-image-decoration .music-note:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.order-image-decoration .music-note:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1.3s;
}

.order-image-decoration .music-note:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 2.6s;
}

@keyframes float-notes {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 1;
    }
}

.order-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.order-info > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.order-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.order-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
}

.order-features .feature i {
    font-size: 1.5rem;
    color: var(--neon-purple);
}

.trust-badges {
    display: flex;
    gap: 15px;
}

.trust-badges img {
    height: 40px;
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.trust-badges img:hover {
    opacity: 1;
}

.order-form {
    padding: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group label i {
    color: var(--neon-purple);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

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

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

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

/* ========================================
   Contact Section
======================================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--gradient-anthracite);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--neon-purple);
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-neon);
    border-color: transparent;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
    transform: translateY(-5px);
}

.contact-image {
    position: relative;
}

.contact-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 25px 30px;
    text-align: center;
}

.floating-card i {
    font-size: 2rem;
    color: var(--neon-purple);
    margin-bottom: 10px;
}

.floating-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.floating-card strong {
    color: var(--text-primary);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--bg-primary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/back.jpg') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.footer > * {
    position: relative;
    z-index: 1;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--neon-purple);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

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

.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--neon-purple);
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-purple);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-neon);
    border: none;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.newsletter-form button:hover {
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

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

.footer-bottom-links a:hover {
    color: var(--neon-purple);
}

/* ========================================
   Audio Player
======================================== */
.audio-player {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.audio-player.active {
    bottom: 30px;
}

.player-info {
    flex: 0 0 auto;
    max-width: 180px;
}

.now-playing {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.track-name {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.player-progress {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 100px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--glass-border);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-neon);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.player-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.player-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #a855f7 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);
}

.player-btn i {
    font-size: 1.1rem;
}

.player-main .time-display {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
}

.player-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 8px;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.player-close:hover {
    color: var(--text-primary);
}

/* Mobile player adjustments */
@media (max-width: 576px) {
    .audio-player {
        width: calc(100% - 20px);
        padding: 12px 15px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .player-info {
        flex: 1;
        max-width: calc(100% - 50px);
    }

    .player-progress {
        order: 3;
        width: 100%;
        margin-top: 8px;
    }

    .player-main {
        gap: 10px;
    }

    .player-btn {
        width: 40px;
        height: 40px;
    }

    .player-main .time-display {
        font-size: 0.85rem;
    }
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-card {
        padding: 40px 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .slide-content,
    .slide-image {
        margin: 0;
    }

    .slide-content {
        max-width: 90%;
        padding: 30px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-image {
        display: none;
    }

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

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .step-connector {
        display: none;
    }

    .step {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .order-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-neon,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

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

    .order-form {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-image .floating-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }

    .audio-player {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .player-progress {
        width: 100%;
        order: 3;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 20px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slider-controls {
        bottom: 30px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-content p {
        font-size: 1.1rem;
    }

    .order-info h2,
    .contact-info h2 {
        font-size: 2rem;
    }
}

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* ========================================
   Enhanced Mobile Responsive Styles
======================================== */

/* Mobile Menu Improvements */
@media (max-width: 992px) {
    .nav-links.active {
        position: fixed;
        top: 80px;
        left: 15px;
        right: 15px;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 25px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        gap: 10px;
        z-index: 999;
    }

    .nav-links.active a {
        display: block;
        padding: 15px 20px;
        font-size: 1rem;
        text-align: center;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
    }

    .nav-links.active a:hover {
        background: var(--gradient-neon);
    }
}

/* Mobile Hero Slider */
@media (max-width: 768px) {
    .hero-slider-fullwidth {
        height: 100vh;
        min-height: 700px;
        max-height: 100vh;
    }

    .slide-content-fullwidth {
        padding: 100px 0 180px;
    }

    .slide-content-fullwidth .content-wrapper {
        padding: 0 20px;
    }

    .content-inner {
        text-align: center;
    }

    .slide-content-fullwidth h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .slide-content-fullwidth p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .slide-tag {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-neon.btn-large {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
    }

    .btn-outline-light {
        padding: 14px 25px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding-top: 25px;
    }

    .hero-stat {
        text-align: center;
        min-width: 80px;
    }

    .hero-stat strong {
        font-size: 1.2rem;
    }

    .hero-stat span {
        font-size: 0.75rem;
    }

    /* Slider Navigation Mobile */
    .fullwidth-slider-nav {
        bottom: 30px;
        gap: 15px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .progress-bar-container {
        width: 80px;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .navbar {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 6px 10px;
    }

    .nav-container {
        gap: 6px;
    }

    .logo {
        padding: 4px 6px;
    }

    .logo-text {
        font-size: 0.85rem;
    }

    .logo-icon {
        font-size: 1.1rem;
    }

    .hamburger {
        padding: 5px;
    }

    .hamburger span {
        width: 16px;
    }

    .navbar .btn-neon {
        width: 34px;
        height: 34px;
        padding: 8px;
        border-radius: 50%;
    }

    .navbar .btn-neon::after {
        border-radius: 50%;
    }

    .nav-auth-btn {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        padding: 0;
    }

    .content-inner {
        padding-top: 80px !important;
    }

    .slide-content-fullwidth h1 {
        font-size: 1.6rem;
    }

    .slide-content-fullwidth p {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .hero-stat strong {
        font-size: 1rem;
    }

    .btn-neon.btn-large {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

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

/* Stats Section Mobile */
@media (max-width: 768px) {
    .stats-section {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* Services Mobile */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .featured-badge {
        font-size: 0.6rem;
        padding: 6px 35px;
        right: -32px;
        top: 18px;
    }
}

/* How It Works Mobile */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .step {
        padding: 30px 20px;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .step-number {
        font-size: 3rem;
    }
}

/* Portfolio Mobile */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-filters {
        gap: 8px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .portfolio-image img {
        height: 200px;
    }

    .portfolio-info {
        padding: 20px;
    }

    .portfolio-info h4 {
        font-size: 1rem;
    }
}

/* Pricing Mobile */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 35px 25px;
    }

    .price .amount {
        font-size: 3rem;
    }

    .pricing-features li {
        padding: 10px 0;
        font-size: 0.9rem;
    }
}

/* Testimonials Mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 10px;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .author-info {
        text-align: center;
    }
}

/* Order Form Mobile */
@media (max-width: 768px) {
    .order-section {
        padding: 60px 0;
    }

    .order-image img {
        width: 220px;
        height: auto;
    }

    .order-image-decoration .music-note {
        font-size: 1.5rem;
    }

    .order-info h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .order-info > p {
        text-align: center;
    }

    .order-features {
        align-items: center;
    }

    .order-features .feature {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
        margin-bottom: 30px;
    }

    .order-form {
        padding: 25px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Contact Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-info h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-info > p {
        text-align: center;
    }

    .contact-methods {
        gap: 15px;
    }

    .contact-item {
        padding: 20px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    .social-links {
        justify-content: center;
    }

    .contact-image img {
        border-radius: 20px;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-links h4,
    .footer-newsletter h4 {
        margin-bottom: 15px;
    }

    .footer-newsletter {
        text-align: center;
    }

    .footer-newsletter p {
        justify-content: center;
    }

    .footer-newsletter .social-links {
        justify-content: center;
    }

    .newsletter-form {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-bottom-links {
        gap: 15px;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-neon:hover,
    .btn-outline-light:hover,
    .nav-btn:hover,
    .filter-btn:hover {
        transform: none;
    }

    .portfolio-overlay {
        opacity: 0;
    }

    .portfolio-item:hover .portfolio-overlay,
    .portfolio-item:active .portfolio-overlay {
        opacity: 1;
        background: rgba(168, 85, 247, 0.6);
    }

    .play-btn {
        transform: scale(1);
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider-fullwidth {
        min-height: 100vh;
    }

    .slide-content-fullwidth {
        padding: 80px 0 100px;
    }

    .slide-content-fullwidth h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        display: none;
    }

    .fullwidth-slider-nav {
        bottom: 15px;
    }
}

/* ========================================
   Authentication Pages Styles
======================================== */

/* Auth Section */
.auth-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    background: var(--gradient-anthracite);
}

.auth-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 5px;
}

.auth-tab {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.auth-tab:hover {
    color: var(--text-primary);
}

.auth-tab.active {
    background: var(--gradient-neon);
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

/* Auth Form Container */
.auth-form-container {
    display: none;
}

.auth-form-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Auth Header */
.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group {
    margin-bottom: 0;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-form .form-group label i {
    margin-right: 8px;
    color: var(--neon-purple);
}

.auth-form .form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.auth-form .form-group input::placeholder {
    color: var(--text-muted);
}

/* Password Input with Toggle */
.password-input {
    position: relative;
}

.password-input input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-normal);
}

.toggle-password:hover {
    color: var(--neon-purple);
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: var(--transition-normal);
    width: 0;
}

.strength-bar.weak {
    background: #ef4444;
}

.strength-bar.fair {
    background: #f59e0b;
}

.strength-bar.good {
    background: #10b981;
}

.strength-bar.strong {
    background: linear-gradient(90deg, #10b981, #22c55e);
}

.strength-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: var(--transition-normal);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-neon);
    border-color: transparent;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: var(--neon-purple);
    text-decoration: none;
}

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

/* Forgot Link */
.forgot-link {
    color: var(--neon-purple);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

.forgot-link:hover {
    color: var(--neon-magenta);
    text-decoration: underline;
}

/* Full Width Button */
.btn-full {
    width: 100%;
    justify-content: center;
}

/* Auth Divider */
.auth-divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    background: #1a1a25;
    padding: 0 15px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Social Auth */
.social-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.social-auth-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-auth-btn.google:hover {
    border-color: #ea4335;
    color: #ea4335;
}

.social-auth-btn.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

/* Account Type Selector */
.account-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

.account-type-option {
    cursor: pointer;
}

.account-type-option input {
    display: none;
}

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
}

.type-card i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.type-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.account-type-option.active .type-card,
.account-type-option input:checked + .type-card {
    border-color: var(--neon-purple);
    background: rgba(168, 85, 247, 0.1);
}

.account-type-option.active .type-card i,
.account-type-option input:checked + .type-card i {
    color: var(--neon-purple);
}

/* Business Fields */
.business-fields {
    animation: slideDown 0.3s ease;
}

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

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-outline:hover {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

/* Auth Notification */
.auth-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.auth-notification.show {
    transform: translateX(0);
}

.auth-notification.success {
    border-color: #10b981;
}

.auth-notification.success i {
    color: #10b981;
}

.auth-notification.error {
    border-color: #ef4444;
}

.auth-notification.error i {
    color: #ef4444;
}

.auth-notification.info {
    border-color: var(--neon-purple);
}

.auth-notification.info i {
    color: var(--neon-purple);
}

/* Auth Mobile Responsive */
@media (max-width: 576px) {
    .auth-section {
        padding: 100px 15px 40px;
    }

    .auth-wrapper {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .auth-tabs {
        gap: 5px;
    }

    .auth-tab {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .auth-header h2 {
        font-size: 1.5rem;
    }

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

    .account-type-selector {
        grid-template-columns: 1fr;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-notification {
        left: 15px;
        right: 15px;
        top: 80px;
    }
}

/* ========================================
   Account Page Styles
======================================== */

/* Account Section */
.account-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: var(--gradient-anthracite);
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Account Sidebar */
.account-sidebar {
    padding: 30px 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.user-profile {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: white;
}

.user-fullname {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.user-email {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.user-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    background: rgba(168, 85, 247, 0.2);
    color: var(--neon-purple);
}

.user-type.business {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Account Navigation */
.account-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.account-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.account-nav-item.active {
    background: rgba(168, 85, 247, 0.2);
    color: var(--neon-purple);
}

.account-nav-item.active i {
    color: var(--neon-purple);
}

.account-nav-item.logout {
    color: #ef4444;
    margin-top: 10px;
}

.account-nav-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* User Menu Button in Navbar */
.nav-user {
    display: flex;
    align-items: center;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.user-menu-btn:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: var(--neon-purple);
}

.user-menu-btn i {
    font-size: 1.2rem;
    color: var(--neon-purple);
}

/* Account Content */
.account-content {
    min-height: 500px;
}

.account-panel {
    display: none;
}

.account-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.panel-header {
    margin-bottom: 30px;
}

.panel-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-header h2 i {
    color: var(--neon-purple);
}

.panel-header p {
    color: var(--text-muted);
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-purple);
}

.stat-icon.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.stat-icon.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Quick Actions */
.quick-actions {
    margin-bottom: 40px;
}

.quick-actions h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.action-btn:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--neon-purple);
}

.action-btn i {
    color: var(--neon-purple);
}

/* Recent Orders */
.recent-orders h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Orders List */
.orders-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Order Card */
.order-card {
    padding: 20px;
}

.order-card.compact {
    padding: 15px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.order-number {
    font-weight: 600;
    color: var(--neon-purple);
}

.order-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 15px;
}

.order-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.order-status.pending,
.order-status.confirmed {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.order-status.in-progress,
.order-status.review {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

.order-status.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.order-status.cancelled {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.order-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.order-occasion {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-price {
    text-align: right;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-purple);
}

.order-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.order-actions {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    text-decoration: none;
}

.btn-small:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-small.primary {
    background: var(--gradient-neon);
    border: none;
}

.btn-small.primary:hover {
    opacity: 0.9;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state.small {
    padding: 30px 20px;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    margin-bottom: 20px;
}

/* Settings Form */
.settings-form {
    max-width: 700px;
}

.form-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.form-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--neon-purple);
}

.form-actions {
    margin-top: 30px;
}

/* Billing Section */
.billing-info {
    display: grid;
    gap: 25px;
}

.billing-card {
    padding: 25px;
}

.billing-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.billing-card h3 i {
    color: var(--neon-purple);
}

.billing-details p {
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.invoices-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.invoices-section h3 i {
    color: var(--neon-purple);
}

/* Account Page Mobile */
@media (max-width: 992px) {
    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: relative;
        top: 0;
    }

    .account-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .account-nav-item {
        padding: 10px 15px;
    }

    .account-nav-item span {
        display: none;
    }

    .account-nav-item i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .account-section {
        padding: 100px 15px 40px;
    }

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

    .action-buttons {
        flex-direction: column;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .order-price {
        text-align: left;
    }

    .form-section {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .user-profile {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .user-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .panel-header h2 {
        font-size: 1.4rem;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

/* ========================================
   Legal Pages Styles
======================================== */

.legal-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: var(--gradient-anthracite);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-body {
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-article {
    margin-bottom: 40px;
}

.legal-article h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--neon-purple);
    display: inline-block;
}

.legal-article h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 25px 0 15px;
}

.legal-article p {
    margin-bottom: 15px;
}

.legal-article ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-article li {
    margin-bottom: 10px;
    position: relative;
}

.legal-article li::marker {
    color: var(--neon-purple);
}

.legal-article a {
    color: var(--neon-purple);
    text-decoration: none;
    transition: var(--transition-normal);
}

.legal-article a:hover {
    color: var(--neon-magenta);
    text-decoration: underline;
}

.legal-article strong {
    color: var(--text-primary);
}

/* Legal Table */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-table th {
    background: rgba(168, 85, 247, 0.2);
    color: var(--text-primary);
    font-weight: 600;
}

.legal-table td {
    background: rgba(0, 0, 0, 0.2);
}

.legal-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Legal Page Mobile */
@media (max-width: 768px) {
    .legal-section {
        padding: 100px 15px 40px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-header h1 {
        font-size: 1.8rem;
    }

    .legal-article h2 {
        font-size: 1.2rem;
    }

    .legal-table {
        font-size: 0.8rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 576px) {
    .legal-content {
        padding: 25px 15px;
    }

    .legal-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .legal-header h1 {
        font-size: 1.5rem;
    }

    .legal-article {
        margin-bottom: 30px;
    }

    .legal-table {
        display: block;
        overflow-x: auto;
    }
}

/* ========================================
   Checkout Page Styles
======================================== */

.checkout-section {
    min-height: 100vh;
    padding: 140px 0 60px;
    background: var(--gradient-anthracite);
}

.checkout-header {
    text-align: center;
    margin-bottom: 20px;
}

.checkout-header h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.checkout-header h1 i {
    color: var(--neon-purple);
}

/* Checkout Steps */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.checkout-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto !important;
    min-height: auto !important;
    padding: 0 !important;
    width: auto !important;
    background: none !important;
    border-radius: 0 !important;
}

.checkout-steps .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition-normal);
}

.checkout-steps .step.active .step-number {
    background: var(--gradient-neon);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.checkout-steps .step.completed .step-number {
    background: #10b981;
    border-color: transparent;
}

.checkout-steps .step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.checkout-steps .step-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.checkout-steps .step.active .step-label,
.checkout-steps .step.completed .step-label {
    color: var(--text-primary);
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    max-width: 60px;
}

/* Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* Checkout Main */
.checkout-main {
    min-height: auto;
}

.checkout-step-panel {
    display: none;
}

.checkout-step-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.step-header {
    margin-bottom: 30px;
}

.step-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.step-header p {
    color: var(--text-muted);
}

/* Order Summary Card */
.order-summary-card {
    padding: 25px;
    margin-bottom: 20px;
}

.order-product {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.product-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.product-details {
    flex: 1;
}

.product-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.product-details p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.product-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li i {
    color: #10b981;
    font-size: 0.75rem;
}

.product-price {
    text-align: right;
}

.product-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-purple);
}

/* Order Details Form */
.order-details-form {
    padding: 25px;
    margin-bottom: 30px;
}

.order-details-form h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.order-details-form h3 i {
    color: var(--neon-purple);
}

.details-summary {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    color: var(--text-primary);
    font-weight: 500;
}

.edit-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-purple);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.edit-details-btn:hover {
    color: var(--neon-magenta);
}

/* Billing Form */
.billing-form {
    padding: 30px;
}

.billing-type-toggle {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

/* Use Order Data Checkbox */
.use-order-data-section {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
}

.use-order-data-label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    cursor: pointer;
}

.use-order-data-label .label-text {
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.use-order-data-label .label-text i {
    color: var(--neon-purple);
}

.use-order-data-label input[type="checkbox"]:checked + .checkmark + .label-text {
    color: var(--neon-purple);
}

/* Order Data Preview */
.order-data-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.order-data-preview .preview-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.15);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.order-data-preview .preview-item i {
    color: var(--neon-purple);
    font-size: 0.8rem;
}

.order-data-preview .preview-item span {
    font-weight: 500;
}

/* Terms Error Highlight */
.terms-group.terms-error {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid #ef4444;
    border-radius: 10px;
    padding: 15px;
    animation: shake 0.5s ease-in-out;
}

.terms-group.terms-error .checkbox-label {
    color: #ef4444 !important;
}

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

.billing-type-btn {
    flex: 1;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.billing-type-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.billing-type-btn.active {
    border-color: var(--neon-purple);
    background: rgba(168, 85, 247, 0.1);
    color: var(--text-primary);
}

.billing-type-btn.active i {
    color: var(--neon-purple);
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-buttons .btn-outline {
    flex: 0 0 auto;
}

.form-buttons .btn-neon {
    flex: 1;
}

/* Payment Methods */
.payment-methods {
    padding: 25px;
    margin-bottom: 20px;
}

.payment-option {
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-normal);
    margin-bottom: 15px;
}

.payment-option:last-child {
    margin-bottom: 0;
}

.payment-option:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.payment-option.active {
    border-color: var(--neon-purple);
    background: rgba(168, 85, 247, 0.05);
}

.payment-option input {
    display: none;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--neon-purple);
}

.payment-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.payment-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.payment-logos {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.payment-logos img {
    height: 25px;
    opacity: 0.7;
}

/* Card Payment Form */
.card-payment-form {
    padding: 25px;
    margin-bottom: 20px;
}

.card-payment-form h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.card-payment-form h3 i {
    color: #10b981;
}

.stripe-info {
    padding: 15px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.stripe-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stripe-placeholder .stripe-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.card-errors {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Bank Transfer Info */
.bank-transfer-info {
    padding: 25px;
    margin-bottom: 20px;
}

.bank-transfer-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.bank-transfer-info h3 i {
    color: var(--neon-purple);
}

.bank-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.bank-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bank-detail:last-child {
    border-bottom: none;
}

.bank-detail .label {
    color: var(--text-muted);
    min-width: 100px;
}

.bank-detail .value {
    font-family: monospace;
    font-size: 0.95rem;
}

.copy-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--neon-purple);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-normal);
}

.copy-btn:hover {
    color: var(--neon-magenta);
}

.bank-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
}

.bank-notice i {
    color: #f59e0b;
    margin-top: 2px;
}

.bank-notice p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Stripe Payment Box */
.stripe-payment-box {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(99, 91, 255, 0.2);
}

.stripe-payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stripe-logo-section {
    flex-shrink: 0;
    padding: 10px 16px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stripe-logo {
    display: block;
    width: 65px;
    height: auto;
}

.stripe-cards {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stripe-cards img {
    height: 26px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.stripe-cards img:hover {
    opacity: 1;
}

.stripe-payment-info {
    margin-bottom: 25px;
}

.payment-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-info-icon i {
    font-size: 2rem;
    color: #635BFF;
}

.stripe-payment-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.stripe-payment-info > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 20px;
}

.stripe-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    margin: 0;
    padding: 0;
}

.stripe-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stripe-benefits li i {
    color: #10b981;
    font-size: 0.85rem;
}

.stripe-payment-amount {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    border-radius: 12px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.amount-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.amount-value {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stripe Pay Button */
.btn-stripe-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #635BFF 0%, #8B5CF6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(99, 91, 255, 0.4);
    margin-bottom: 15px;
}

.btn-stripe-pay:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 91, 255, 0.5);
    background: linear-gradient(135deg, #7C75FF 0%, #9D7AFF 100%);
}

.btn-stripe-pay:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-stripe-pay i:first-child {
    font-size: 1.1rem;
}

.btn-stripe-pay i:last-child {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stripe-redirect-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.stripe-redirect-note i {
    margin-right: 6px;
    color: #635BFF;
}

/* Stripe Secure Footer */
.stripe-secure-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stripe-secure-footer .secure-badges {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-bottom: 15px;
}

.stripe-link {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stripe-link i {
    margin-right: 5px;
    font-size: 0.75rem;
}

.stripe-link a {
    color: #635BFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stripe-link a:hover {
    color: #8B5CF6;
    text-decoration: underline;
}

/* Secure Badges */
.secure-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.secure-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.secure-badges i {
    color: #10b981;
}

/* Success Message */
#step-success.active {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon i {
    font-size: 3rem;
    color: #10b981;
}

.success-message h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.order-confirmation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 30px;
}

.order-confirmation .label {
    color: var(--text-muted);
}

.order-confirmation .value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-purple);
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Checkout Sidebar */
.checkout-sidebar {
    position: sticky;
    top: 100px;
    padding-top: 100px; /* Aliniază cu Stripe box */
}

.order-summary {
    padding: 25px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(99, 91, 255, 0.2);
    border-radius: 20px;
}

.order-summary h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.order-summary h3 i {
    color: #635BFF;
}

.summary-items {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.item-name {
    color: var(--text-secondary);
}

.item-price {
    font-weight: 500;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

.promo-code {
    display: flex;
    gap: 10px;
    width: 100%;
}

.promo-code input {
    flex: 1;
    min-width: 0;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.promo-code button {
    padding: 12px 15px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid var(--neon-purple);
    border-radius: 8px;
    color: var(--neon-purple);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-code button:hover {
    background: rgba(168, 85, 247, 0.3);
}

.summary-totals {
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.summary-row.discount {
    color: #10b981;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row.total span:last-child {
    color: var(--neon-purple);
}

.summary-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.summary-info i {
    color: var(--neon-purple);
    width: 16px;
}

/* Trust Info */
.trust-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(99, 91, 255, 0.2);
    border-radius: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: #635BFF;
    font-size: 1.1rem;
}

/* Checkout Mobile */
@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: relative;
        top: 0;
        order: -1;
        padding-top: 0;
    }

    .order-summary {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 100px 15px 40px;
    }

    .checkout-header h1 {
        font-size: 1.5rem;
    }

    .checkout-steps {
        gap: 10px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .order-product {
        flex-direction: column;
    }

    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .product-price {
        text-align: left;
        margin-top: 15px;
    }

    .billing-type-toggle {
        flex-direction: column;
    }

    .payment-content {
        flex-wrap: wrap;
    }

    .payment-logos {
        width: 100%;
        margin-left: 70px;
        margin-top: 10px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .form-buttons .btn-outline,
    .form-buttons .btn-neon {
        width: 100%;
    }

    .secure-badges {
        flex-wrap: wrap;
        gap: 15px;
    }

    .success-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .checkout-header {
        margin-bottom: 30px;
    }

    .order-summary-card,
    .order-details-form,
    .billing-form,
    .payment-methods,
    .card-payment-form,
    .stripe-banner {
        padding: 20px 15px;
    }

    .stripe-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .stripe-logo-section {
        padding: 12px 15px;
    }

    .stripe-info-text h4 {
        font-size: 1rem;
    }

    .stripe-info-text p {
        font-size: 0.85rem;
    }

    .stripe-cards {
        justify-content: center;
    }

    .btn-stripe {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
    }

    .promo-code {
        flex-direction: column;
    }
}

/* =====================================================
   NEW PERSUASIVE ELEMENTS STYLES
   ===================================================== */

/* Pricing Guarantee */
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    padding: 25px 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    text-align: center;
}

.pricing-guarantee i {
    font-size: 2.5rem;
    color: #10b981;
    flex-shrink: 0;
}

.pricing-guarantee p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.pricing-guarantee strong {
    color: #10b981;
}

/* Order Urgency */
.order-urgency {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 10px;
    margin-bottom: 25px;
    animation: pulse-urgency 2s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(239, 68, 68, 0.3);
    }
}

.order-urgency i {
    font-size: 1.5rem;
    color: #ef4444;
    animation: flame 0.5s ease-in-out infinite alternate;
}

@keyframes flame {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.order-urgency span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-header h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Form Disclaimer */
.form-disclaimer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-disclaimer i {
    color: #10b981;
    margin-right: 5px;
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .pricing-guarantee i {
        font-size: 2rem;
    }

    .pricing-guarantee p {
        font-size: 1rem;
    }

    .order-urgency {
        flex-direction: column;
        text-align: center;
    }

    .order-urgency i {
        font-size: 1.8rem;
    }
}

/* Footer Social Links in Newsletter area */
.footer-newsletter .social-links {
    margin-top: 20px;
}

.footer-newsletter p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-newsletter p i {
    color: var(--primary);
    width: 20px;
}

/* =====================================================
   ORDER FORM - ACCOUNT TYPE SELECTOR ADJUSTMENTS
   ===================================================== */

/* Make account-type-selector work inside order-form */
.order-form .account-type-selector {
    margin-bottom: 25px;
}

.order-form .business-fields {
    animation: slideDown 0.3s ease;
}

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

/* =====================================================
   SONG PLAYER PAGE STYLES
   ===================================================== */

.song-section {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: var(--bg-dark);
}

.song-loading,
.song-error {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(139, 92, 246, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

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

.song-error i {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 20px;
}

.song-error h2 {
    margin-bottom: 10px;
}

/* Song Header */
.song-header {
    text-align: center;
    margin-bottom: 40px;
}

.order-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.order-id {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.order-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }
.status-paid { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.status-generating { background: rgba(139, 92, 246, 0.2); color: var(--primary); }
.status-generated { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.status-completed { background: rgba(16, 185, 129, 0.3); color: #10b981; }

.song-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.song-occasion {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.song-occasion i {
    color: var(--primary);
    margin-right: 8px;
}

/* Revisions Info */
.revisions-info {
    max-width: 500px;
    margin: 0 auto 40px;
    padding: 25px;
    text-align: center;
}

.revisions-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.revision-item {
    text-align: center;
}

.revision-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.revision-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.revision-divider {
    font-size: 2rem;
    color: var(--text-muted);
}

.revisions-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.revisions-note i {
    color: var(--primary);
    margin-right: 5px;
}

/* Song Player */
.song-player-wrapper {
    max-width: 700px;
    margin: 0 auto 30px;
    padding: 30px;
    position: relative;
}

.song-version-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    padding: 5px 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.song-version-badge i {
    margin-right: 5px;
}

.song-player {
    display: flex;
    gap: 30px;
    align-items: center;
}

.player-artwork {
    flex-shrink: 0;
    position: relative;
}

.artwork-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: transform 0.3s ease;
}

.artwork-placeholder.playing {
    animation: rotate 4s linear infinite;
}

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

.artwork-animation {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
}

.artwork-animation span {
    width: 4px;
    height: 15px;
    background: var(--primary);
    border-radius: 2px;
    animation: wave 0.5s ease-in-out infinite alternate;
}

.artwork-animation span:nth-child(2) { animation-delay: 0.1s; }
.artwork-animation span:nth-child(3) { animation-delay: 0.2s; }
.artwork-animation span:nth-child(4) { animation-delay: 0.3s; }
.artwork-animation span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    from { height: 5px; }
    to { height: 20px; }
}

.player-main {
    flex: 1;
}

.player-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.player-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.player-controls-wrapper {
    margin-top: 20px;
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.player-progress .time-current,
.player-progress .time-total {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 40px;
}

.progress-bar-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-handle {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    position: absolute;
    right: -7px;
    top: -4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.2s;
}

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

.player-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.player-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.player-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.player-btn.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 1.3rem;
}

.player-btn.play-btn:hover {
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

/* Song Actions */
.song-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-approve {
    min-width: 200px;
}

.btn-revision {
    min-width: 180px;
}

/* Revision Form */
.revision-form-wrapper {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
}

.revision-form-wrapper h3 {
    margin-bottom: 10px;
}

.revision-form-wrapper h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.revision-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.revision-warning {
    margin-top: 20px;
    padding: 15px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #fbbf24;
}

.revision-warning i {
    margin-right: 8px;
}

/* Previous Versions */
.previous-versions {
    max-width: 600px;
    margin: 0 auto 40px;
}

.previous-versions h3 {
    margin-bottom: 20px;
}

.previous-versions h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.version-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    margin-bottom: 10px;
}

.version-number {
    font-weight: 600;
}

.version-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 15px;
}

/* Approved Message */
.approved-message {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 30px;
    text-align: center;
}

.approved-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 20px;
}

.approved-message h2 {
    margin-bottom: 15px;
    color: #10b981;
}

.approved-message p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Generating State */
.generating-state {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 30px;
    text-align: center;
}

.generating-animation {
    margin-bottom: 30px;
}

.music-wave {
    display: flex;
    justify-content: center;
    gap: 5px;
    height: 60px;
    align-items: flex-end;
}

.music-wave span {
    width: 8px;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 4px;
    animation: musicWave 0.8s ease-in-out infinite;
}

.music-wave span:nth-child(1) { animation-delay: 0s; }
.music-wave span:nth-child(2) { animation-delay: 0.1s; }
.music-wave span:nth-child(3) { animation-delay: 0.2s; }
.music-wave span:nth-child(4) { animation-delay: 0.3s; }
.music-wave span:nth-child(5) { animation-delay: 0.4s; }
.music-wave span:nth-child(6) { animation-delay: 0.5s; }
.music-wave span:nth-child(7) { animation-delay: 0.4s; }
.music-wave span:nth-child(8) { animation-delay: 0.3s; }
.music-wave span:nth-child(9) { animation-delay: 0.2s; }
.music-wave span:nth-child(10) { animation-delay: 0.1s; }

@keyframes musicWave {
    0%, 100% { height: 10px; }
    50% { height: 50px; }
}

.generating-state h2 {
    margin-bottom: 10px;
}

.generating-state p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.generating-bar {
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    animation: progressMove 1.5s ease-in-out infinite;
}

@keyframes progressMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* Waiting State */
.waiting-message {
    text-align: center;
    padding: 40px;
}

.waiting-message i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Song Page Responsive */
@media (max-width: 768px) {
    .song-header h1 {
        font-size: 1.8rem;
    }

    .song-player {
        flex-direction: column;
        text-align: center;
    }

    .artwork-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .song-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-approve,
    .btn-revision {
        width: 100%;
        max-width: 300px;
    }

    .form-actions {
        flex-direction: column;
    }

    .version-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ========================================
   COMPLETE MOBILE RESPONSIVE - iPhone/Android
======================================== */

/* iPhone SE, iPhone 8 (375px) */
@media (max-width: 375px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 12px;
    }

    .navbar {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 6px 10px;
    }

    .nav-container {
        gap: 6px;
    }

    .logo {
        padding: 4px 6px;
    }

    .logo-text {
        font-size: 0.8rem;
    }

    .logo-icon {
        font-size: 1rem;
    }

    .hamburger {
        padding: 5px;
    }

    .hamburger span {
        width: 16px;
    }

    .navbar .btn-neon {
        width: 32px;
        height: 32px;
        padding: 7px;
        border-radius: 50%;
    }

    .navbar .btn-neon::after {
        border-radius: 50%;
    }

    .nav-auth-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }

    .content-inner {
        padding-top: 75px !important;
    }

    .slide-content-fullwidth h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .slide-content-fullwidth p {
        font-size: 0.85rem;
    }

    .slide-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .btn-neon.btn-large {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .btn-outline-light {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

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

    .section-tag {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .step {
        padding: 25px 15px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step h3 {
        font-size: 1rem;
    }

    .portfolio-filters {
        flex-wrap: wrap;
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .portfolio-info h4 {
        font-size: 0.9rem;
    }

    .portfolio-info p {
        font-size: 0.75rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }

    .testimonial-author img {
        width: 40px;
        height: 40px;
    }

    .order-form {
        padding: 20px 15px;
    }

    .order-info h2 {
        font-size: 1.5rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .btn-submit {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-grid {
        gap: 25px;
    }

    .footer-brand p,
    .footer-links a,
    .footer-newsletter p {
        font-size: 0.85rem;
    }

    .audio-player {
        padding: 12px 15px;
        gap: 10px;
    }

    .player-info .track-name {
        font-size: 0.85rem;
    }

    .player-btn {
        width: 35px;
        height: 35px;
    }

    .player-btn.play-pause {
        width: 42px;
        height: 42px;
    }

    .time-display {
        font-size: 0.7rem;
    }
}

/* iPhone 12/13/14 Pro Max (428px) */
@media (min-width: 376px) and (max-width: 428px) {
    .slide-content-fullwidth h1 {
        font-size: 1.7rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .price .amount {
        font-size: 2.8rem;
    }
}

/* Android Small (320px - older devices) */
@media (max-width: 320px) {
    html {
        font-size: 13px;
    }

    .navbar {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 5px 8px;
    }

    .nav-container {
        gap: 5px;
    }

    .logo {
        padding: 3px 5px;
    }

    .logo-text {
        font-size: 0.75rem;
    }

    .logo-icon {
        font-size: 0.9rem;
    }

    .hamburger {
        padding: 4px;
    }

    .hamburger span {
        width: 14px;
        height: 1.5px;
    }

    .navbar .btn-neon {
        width: 30px;
        height: 30px;
        padding: 6px;
        border-radius: 50%;
    }

    .navbar .btn-neon::after {
        border-radius: 50%;
    }

    .nav-auth-btn {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }

    .content-inner {
        padding-top: 70px !important;
    }

    .slide-content-fullwidth h1 {
        font-size: 1.3rem;
    }

    .slide-content-fullwidth p {
        font-size: 0.8rem;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-neon.btn-large {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

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

    .portfolio-filters {
        display: none !important;
    }

    .audio-player {
        flex-direction: column;
        text-align: center;
    }

    .player-controls {
        order: 1;
    }

    .player-info {
        order: 2;
    }

    .player-progress {
        order: 3;
        width: 100%;
    }
}

/* Fix for iOS Safari bottom bar */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .audio-player {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }

    .footer {
        padding-bottom: calc(25px + env(safe-area-inset-bottom));
    }
}

/* Fix for notch on iPhone X+ */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar {
        padding-top: calc(10px + env(safe-area-inset-top));
    }

    .nav-links.active {
        top: calc(80px + env(safe-area-inset-top));
    }
}

/* Smooth scrolling for all devices */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .glass-card,
    .glass-effect {
        background: rgba(0, 0, 0, 0.9);
        border: 2px solid white;
    }

    .btn-neon {
        border: 2px solid white;
    }
}

/* Dark mode optimization (already dark theme) */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}

/* Touch improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-links a,
    .filter-btn,
    .social-link,
    .footer-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Remove hover states that don't work on touch */
    .service-card:hover,
    .step:hover,
    .pricing-card:hover,
    .stat-card:hover {
        transform: none;
    }

    /* Make buttons more tappable */
    .btn-neon,
    .btn-outline,
    .btn-submit {
        min-height: 48px;
    }

    /* Improve form interactions */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
    }

    /* Disable text selection on buttons */
    button,
    .btn-neon,
    .btn-outline,
    .filter-btn {
        -webkit-user-select: none;
        user-select: none;
    }
}

/* Orientation changes */
@media (orientation: portrait) {
    .hero-slider-fullwidth {
        min-height: 100svh;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .hero-slider-fullwidth {
        min-height: auto;
        height: 100vh;
    }

    .slide-content-fullwidth {
        padding: 70px 0 80px;
    }

    .slide-content-fullwidth h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .slide-content-fullwidth p {
        display: none;
    }

    .hero-stats {
        display: none;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .btn-neon.btn-large,
    .btn-outline-light {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Tablet Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .slide-content-fullwidth h1 {
        font-size: 2.5rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .order-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Print styles */
@media print {
    .navbar,
    .audio-player,
    .hamburger,
    .fullwidth-slider-nav,
    .portfolio-overlay,
    .social-links,
    .newsletter-form {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .glass-card,
    .glass-effect {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* ========================================
   FIXES - Desktop & Mobile Issues
======================================== */

/* Fix: Prevent horizontal overflow on all devices */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

/* Fix: Hero slider label position on desktop */
.slide-tag {
    margin-bottom: 25px;
}

/* Fix: Stats section - prevent overflow */
.stats-section {
    overflow: hidden;
}

.stats-grid {
    max-width: 100%;
}

.stat-card {
    min-width: 0; /* Allow flex items to shrink */
}

.stat-number {
    word-break: break-word;
}

/* Fix: Audio player for mobile - ensure full visibility and clickability */
.audio-player.active {
    bottom: 20px;
}

/* Fix: Service card buttons - make them more prominent */
.btn-neon-small {
    margin-top: 15px;
    background: var(--gradient-neon);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    gap: 8px;
}

.btn-neon-small::before {
    display: none;
}

.btn-neon-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5);
}

.btn-neon-small span,
.btn-neon-small i {
    position: relative;
    z-index: 1;
}

/* Mobile Specific Fixes */
@media (max-width: 768px) {
    /* Prevent any horizontal overflow */
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    section {
        overflow-x: hidden;
    }

    /* Steps horizontal slider on mobile */
    .how-it-works {
        overflow: hidden;
    }

    .how-it-works .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .steps-container {
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0 20px 20px;
        margin: 0;
        max-width: 100vw;
    }

    .steps-container::-webkit-scrollbar {
        display: none;
    }

    .steps-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .step {
        flex: 0 0 280px !important;
        width: 280px !important;
        max-width: 280px !important;
        min-height: 260px !important;
        scroll-snap-align: none;
        padding: 30px 20px;
    }

    .step:last-child {
        margin-right: 20px;
    }

    .step-connector {
        display: none !important;
    }

    /* Services horizontal slider on mobile */
    .services-section {
        overflow: hidden;
    }

    .services-section .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .services-section .section-header {
        padding: 0 15px;
    }

    .services-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0 20px 20px;
        margin: 0;
        max-width: 100vw;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .services-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .service-card {
        flex: 0 0 280px !important;
        width: 280px !important;
        max-width: 280px !important;
        min-height: 380px !important;
        scroll-snap-align: none;
        padding: 30px 20px;
    }

    .service-card:last-child {
        margin-right: 20px;
    }

    /* Fix: Audio player mobile - proper positioning */
    .audio-player {
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
        transform: none;
        padding: 12px 15px;
        gap: 10px;
        flex-wrap: wrap;
        border-radius: 15px;
    }

    .audio-player.active {
        bottom: 15px;
    }

    .player-info {
        flex: 1;
        min-width: 0;
    }

    .player-info .now-playing {
        font-size: 0.65rem;
    }

    .player-info .track-name {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }

    .player-controls {
        flex-shrink: 0;
    }

    .player-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .player-btn.play-pause {
        width: 40px;
        height: 40px;
    }

    .player-progress {
        width: 100%;
        order: 3;
        margin-top: 5px;
    }

    .player-close {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .time-display {
        font-size: 0.65rem;
    }

    /* Fix: Ensure nothing overflows */
    .hero-slider-fullwidth,
    .fullwidth-slide,
    .slide-content-fullwidth {
        max-width: 100vw;
        overflow: hidden;
    }

    .content-inner {
        max-width: 100%;
        padding: 0 10px;
        padding-top: 110px; /* Space for fixed navbar on mobile */
    }

    /* Fix: Hero stats mobile */
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .hero-stat {
        min-width: 70px;
        text-align: center;
    }

    .hero-stat strong {
        font-size: 1.1rem;
    }

    .hero-stat span {
        font-size: 0.65rem;
    }

    /* Fix: Service cards buttons */
    .service-card {
        padding-bottom: 25px;
    }

    .btn-neon-small {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    /* Fix: Prevent text overflow */
    h1, h2, h3, h4, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Extra small mobile */
@media (max-width: 375px) {
    /* Stats even smaller */
    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-icon {
        font-size: 1.2rem;
    }

    /* Audio player compact */
    .audio-player {
        padding: 10px 12px;
    }

    .player-info .track-name {
        max-width: 90px;
        font-size: 0.75rem;
    }

    .player-info .now-playing {
        font-size: 0.6rem;
    }

    .player-btn {
        width: 28px;
        height: 28px;
    }

    .player-btn.play-pause {
        width: 36px;
        height: 36px;
    }

    /* Hero stats compact */
    .hero-stats {
        gap: 12px;
    }

    .hero-stat strong {
        font-size: 1rem;
    }
}

/* iOS specific: Ensure audio player is above safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .audio-player.active {
        bottom: calc(15px + env(safe-area-inset-bottom));
    }
}

/* Android: Improve touch targets */
@media (hover: none) and (pointer: coarse) {
    .player-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .player-close {
        min-width: 32px;
        min-height: 32px;
        top: 5px;
        right: 5px;
    }

    .audio-player {
        padding-bottom: 15px;
    }
}

/* ========================================
   CRITICAL MOBILE FIXES
======================================== */

/* FIX: Cart button circle - force aspect ratio 1:1 */
@media (max-width: 768px) {
    .navbar .btn-neon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        aspect-ratio: 1 / 1 !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .navbar .btn-neon::before {
        display: none !important;
    }

    .navbar .btn-neon::after {
        width: 100% !important;
        height: 100% !important;
        inset: 0 !important;
        border-radius: 50% !important;
        aspect-ratio: 1 / 1 !important;
    }

    .navbar .btn-neon span {
        display: none !important;
    }

    .navbar .btn-neon i {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 1rem !important;
        position: relative;
        z-index: 2;
    }

    .nav-auth-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        aspect-ratio: 1 / 1 !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .nav-auth-btn span {
        display: none !important;
    }

    /* FIX: Horizontal swipe cards - allow vertical page scroll */
    .steps-container,
    .services-grid {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        overscroll-behavior-x: contain !important;
        scroll-snap-type: none !important;
        -webkit-overflow-scrolling: touch;
        /* Allow both pan directions so page can scroll */
        touch-action: pan-x pan-y !important;
        padding-left: 20px !important;
    }
}

@media (max-width: 576px) {
    .navbar .btn-neon {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
    }

    .nav-auth-btn {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
    }
}

/* FIX: Move slider text content down on mobile */
@media (max-width: 768px) {
    .slide-content-fullwidth {
        align-items: flex-start !important;
        padding-top: 0 !important;
    }

    .slide-content-fullwidth .content-wrapper {
        margin-top: 0 !important;
    }

    .content-inner {
        padding-top: 300px !important;
        margin-top: 0 !important;
    }

    /* Hide slider navigation arrows on mobile - they cover the stats */
    .fullwidth-slider-nav {
        display: none !important;
    }

    /* Add more padding below hero stats */
    .hero-stats {
        padding-bottom: 60px !important;
        margin-bottom: 60px !important;
    }

    /* Add margin to slider section bottom */
    .fullwidth-slider {
        margin-bottom: 40px !important;
    }

    /* Make slider overlay lighter at top, darker at bottom on mobile */
    .slide-gradient-overlay {
        background: linear-gradient(
            to bottom,
            rgba(10, 10, 15, 0.55) 0%,
            rgba(10, 10, 15, 0.7) 30%,
            rgba(10, 10, 15, 0.9) 70%,
            rgba(10, 10, 15, 0.98) 100%
        ) !important;
    }

    .slide-gradient-overlay::after {
        background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 100%) !important;
    }

    /* Mobile navbar adjustments */
    .logo-text {
        font-size: 1.32rem !important;
    }

    .logo-icon {
        font-size: 1.72rem !important;
    }

    .nav-buttons {
        gap: 8px !important;
        margin-right: 3px !important;
    }

    .nav-auth-btn,
    .navbar .btn-neon {
        width: 34px !important;
        height: 34px !important;
    }

    .hamburger {
        margin-left: 0 !important;
        padding: 6px !important;
    }

    /* FIX: Service cards - first card visible with left padding */
    .services-grid {
        scroll-snap-type: none !important;
        padding-left: 20px !important;
    }

    .service-card {
        scroll-snap-align: none !important;
    }

    /* FIX: Steps cards - padding left and first card visible */
    .steps-container {
        scroll-snap-type: none !important;
        padding-left: 20px !important;
    }

    .step {
        scroll-snap-align: none !important;
    }

}

/* Steps grid - step numbers */
.steps-grid .step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
}

.steps-grid .service-card {
    position: relative;
}

/* Mobile only br */
.mobile-only {
    display: none;
}

/* Mobile: larger order image */
@media (max-width: 768px) {
    .order-image img {
        width: 260px !important;
        height: 260px !important;
        max-width: 260px !important;
    }

    .mobile-only {
        display: block;
    }
}

/* Fix: Prevent scroll jumps on slider transitions */
.progress-dot,
.progress-dot:focus,
.fullwidth-slide,
.fullwidth-slide:focus {
    outline: none !important;
}

.hero-slider-fullwidth {
    overflow: hidden;
}

.fullwidth-slide {
    scroll-snap-align: none;
    scroll-margin: 0;
}

/* ========================================
   Partner Links Section
======================================== */
.partner-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 25px 0;
    margin-bottom: 20px;
    border-top: 1px solid var(--glass-border);
}

.partner-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.partner-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(168, 85, 247, 0.1);
}

.partner-link:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.25);
}

.partner-icon {
    font-size: 1rem;
    line-height: 1;
}

.partner-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 3px;
}

.partner-name {
    white-space: nowrap;
}

/* Partner Links - Responsive */
@media (max-width: 992px) {
    .partner-links {
        flex-wrap: wrap;
        gap: 10px;
    }

    .partner-title {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .partner-links {
        gap: 10px;
        padding: 20px 15px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-title {
        grid-column: 1 / -1;
    }

    .partner-link {
        padding: 12px 16px;
        font-size: 0.85rem;
        justify-content: center;
        width: 100%;
    }

    .partner-icon {
        font-size: 1.1rem;
    }

    .partner-icon-img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .partner-links {
        gap: 8px;
        padding: 15px 10px;
    }

    .partner-link {
        padding: 10px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .partner-icon {
        font-size: 1rem;
    }

    .partner-icon-img {
        width: 20px;
        height: 20px;
    }
}
