
/* ============================================
   DJ LEKANDO - Premium Website Styles
   Since 2000 - UAE's Premier DJ & Events
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Montserrat:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --primary-black: #0a0a0a;
    --secondary-black: #111111;
    --card-black: #1a1a1a;
    --border-dark: #2a2a2a;
    --gold-primary: #d4af37;
    --gold-light: #f0d878;
    --gold-neon: #ffd700;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --blue-electric: #00d4ff;
    --blue-glow: rgba(0, 212, 255, 0.3);
    --red-accent: #ff3366;
    --red-glow: rgba(255, 51, 102, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d878 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
    --shadow-blue: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', 'Montserrat', sans-serif;
    background: var(--primary-black);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    direction: rtl;
}

body[dir="ltr"] {
    direction: ltr;
}

::selection {
    background: var(--gold-primary);
    color: var(--primary-black);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Animations */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px var(--gold-glow), 0 0 40px var(--gold-glow); }
    50% { box-shadow: 0 0 30px var(--gold-glow), 0 0 60px var(--gold-glow); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px var(--gold-glow), 0 0 20px var(--gold-glow); }
    50% { text-shadow: 0 0 20px var(--gold-glow), 0 0 40px var(--gold-glow); }
}

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

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

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

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-dark);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
    animation: glowPulse 3s ease-in-out infinite;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--gold-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.3rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: 'Cairo', 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--gold-glow), 0 0 60px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    box-shadow: inset 0 0 10px var(--gold-glow);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.btn-blue {
    background: linear-gradient(135deg, var(--blue-electric), #0099cc);
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--blue-glow), 0 0 60px var(--blue-glow);
}

.lang-switch {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.lang-switch:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--primary-black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 51, 102, 0.03) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-title .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px var(--gold-glow));
}

.hero-title .highlight {
    color: var(--blue-electric);
    text-shadow: 0 0 20px var(--blue-glow);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

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

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    text-shadow: 0 0 20px var(--gold-glow);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0;
}

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

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    animation: glowPulse 2s ease-in-out infinite;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold-primary);
}

.section-label::before {
    right: calc(100% + 15px);
}

.section-label::after {
    left: calc(100% + 15px);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Packages */
.packages-section {
    background: var(--secondary-black);
    position: relative;
}

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

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

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

.package-card.featured {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.package-card.featured::before {
    transform: scaleX(1);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.package-card:hover .package-icon {
    background: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.package-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.package-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 0.3rem;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.package-discount {
    display: inline-block;
    background: rgba(255, 51, 102, 0.15);
    color: var(--red-accent);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

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

.package-features li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.package-cta {
    width: 100%;
}

/* About */
.about-section {
    background: var(--primary-black);
}

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

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-dark);
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-main .dj-visual {
    font-size: 8rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.about-image-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.8) 100%);
    pointer-events: none;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--card-black);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-gold);
    animation: float 6s ease-in-out infinite;
}

.about-experience .years {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
}

.about-experience .text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.about-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.about-feature:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Audio */
.audio-section {
    background: var(--secondary-black);
    position: relative;
}

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

.audio-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.audio-tab {
    padding: 0.8rem 2rem;
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: 'Cairo', 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.audio-tab:hover,
.audio-tab.active {
    background: var(--gold-primary);
    color: var(--primary-black);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.audio-card {
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.audio-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

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

.audio-cover {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--blue-electric));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.audio-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.audio-info .audio-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.audio-waveform {
    height: 40px;
    background: var(--primary-black);
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 1rem;
    overflow: hidden;
}

.wave-bar {
    width: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
    opacity: 0.6;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(2) { animation-delay: 0.1s; height: 60%; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 80%; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: 40%; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: 90%; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; height: 50%; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; height: 70%; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; height: 30%; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; height: 85%; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; height: 55%; }
.wave-bar:nth-child(11) { animation-delay: 1.0s; height: 75%; }
.wave-bar:nth-child(12) { animation-delay: 1.1s; height: 45%; }

.audio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audio-play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: var(--primary-black);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
}

.audio-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--gold-glow), 0 0 40px var(--gold-glow);
}

.audio-progress {
    flex: 1;
    margin: 0 1rem;
    height: 4px;
    background: var(--border-dark);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.audio-progress-bar {
    height: 100%;
    width: 35%;
    background: var(--gradient-gold);
    border-radius: 2px;
    position: relative;
}

.audio-progress-bar::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
}

.audio-time {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 80px;
    text-align: left;
}

.audio-actions {
    display: flex;
    gap: 0.5rem;
}

.audio-action-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: var(--primary-black);
    border: 1px solid var(--border-dark);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

.audio-action-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Services */
.services-section {
    background: var(--primary-black);
}

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

.service-card {
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--gold-primary);
    box-shadow: var(--shadow-gold);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Cities */
.cities-section {
    background: var(--secondary-black);
    position: relative;
}

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

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.city-card {
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.city-card:hover {
    border-color: var(--blue-electric);
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.city-card i {
    font-size: 2rem;
    color: var(--blue-electric);
    margin-bottom: 0.8rem;
    display: block;
}

.city-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.city-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    background: var(--primary-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Georgia', serif;
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.1rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 700;
}

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

/* Contact */
.contact-section {
    background: var(--secondary-black);
    position: relative;
}

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

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

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item div h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-item div span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--primary-black);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Cairo', 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow);
}

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

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition-smooth);
    text-decoration: none;
    animation: glowPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 1px solid var(--border-dark);
    padding: 4rem 0 2rem;
}

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

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--card-black);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-column h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom .highlight {
    color: var(--gold-primary);
}

/* Invoice */
.invoice-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    color: #333;
    padding: 3rem;
    border-radius: 0;
    font-family: 'Cairo', 'Montserrat', sans-serif;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.invoice-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #0a0a0a;
}

.invoice-logo span {
    color: #d4af37;
}

.invoice-type {
    background: #d4af37;
    color: #0a0a0a;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.invoice-box {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
}

.invoice-box h4 {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.invoice-box p {
    font-weight: 700;
    color: #0a0a0a;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.invoice-table th {
    background: #0a0a0a;
    color: #d4af37;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

.invoice-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.invoice-table tr:nth-child(even) {
    background: #f8f8f8;
}

.invoice-total {
    text-align: right;
    margin-bottom: 2rem;
}

.invoice-total h3 {
    font-size: 1.5rem;
    color: #0a0a0a;
}

.invoice-total .amount {
    color: #d4af37;
    font-size: 2rem;
    font-weight: 900;
}

.invoice-footer {
    border-top: 2px solid #d4af37;
    padding-top: 1.5rem;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.invoice-qr {
    width: 100px;
    height: 100px;
    background: #f0f0f0;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

/* Admin Panel */
.admin-body {
    background: #0f0f0f;
    font-family: 'Cairo', 'Montserrat', sans-serif;
    direction: rtl;
}

.admin-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    border-left: 1px solid #2a2a2a;
    padding: 2rem 0;
    z-index: 100;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 0 1.5rem 2rem;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 1.5rem;
}

.admin-sidebar-header .logo {
    justify-content: center;
}

.admin-nav {
    list-style: none;
    padding: 0 1rem;
}

.admin-nav li {
    margin-bottom: 0.3rem;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    color: #b0b0b0;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.admin-nav a i {
    width: 24px;
    text-align: center;
}

.admin-main {
    margin-right: 280px;
    padding: 2rem;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2a2a2a;
}

.admin-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.admin-stat-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    border-color: #d4af37;
}

.admin-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.admin-stat-card .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.admin-stat-card .stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
}

.admin-table-container {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.admin-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #2a2a2a;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: #111;
    color: #d4af37;
    padding: 1rem 1.5rem;
    text-align: right;
    font-weight: 700;
    font-size: 0.9rem;
}

.admin-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #222;
    color: #b0b0b0;
}

.admin-table tr:hover td {
    background: rgba(212, 175, 55, 0.03);
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-confirmed {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.status-completed {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    animation: textGlow 2s ease-in-out infinite;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: var(--border-dark);
    border-radius: 3px;
    overflow: hidden;
}

.loading-bar-inner {
    height: 100%;
    width: 0%;
    background: var(--gradient-gold);
    border-radius: 3px;
    animation: loadingProgress 2s ease-in-out forwards;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-stats { gap: 2rem; }
    .package-card.featured { transform: scale(1); }
    .about-features { grid-template-columns: 1fr; }
    .admin-sidebar {
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-right: 0; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .section { padding: 4rem 0; }
    .packages-grid, .services-grid, .audio-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .about-experience {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }
    .admin-stats-grid { grid-template-columns: 1fr; }
    .invoice-container { padding: 1.5rem; }
    .invoice-details { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .btn { padding: 0.7rem 1.5rem; font-size: 0.85rem; }
    .package-card { padding: 1.5rem; }
    .contact-form { padding: 1.5rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; }
}

@media print {
    .navbar, .whatsapp-float, .scroll-indicator, .footer-social, .btn {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
    .invoice-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
