/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ROYAL LUXURY PALETTE (Gold & Obsidian) */
    --primary-gold: #D4AF37;
    /* Metallic Gold */
    --royal-gold: #FFD700;
    /* Bright Gold Accent */
    --deep-gold: #C5A028;
    /* Shadow Gold */
    --bronze-accent: #CD7F32;
    /* Rich Bronze */

    /* Gradients - Premium Metallic */
    --gradient-primary: linear-gradient(135deg, #BF953F 0%, #FCF6BA 40%, #B38728 60%, #FBF5B7 100%);
    /* Gold Sheen */
    --gradient-secondary: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    /* Premium Dark */
    --gradient-dark: linear-gradient(135deg, #000000 0%, #080808 100%);
    --gradient-royal: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7);

    /* Royal Backgrounds */
    --bg-primary: #020202;
    /* Pure Void Black */
    --bg-secondary: #080808;
    /* Soft Black */
    --bg-tertiary: #0F0F0F;
    /* Deep Grey */
    --bg-card: rgba(20, 20, 20, 0.8);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    /* Platinum */
    --text-muted: #888888;
    /* Silver */
    --text-gold: #D4AF37;

    /* Smoked Glass - Royal Tint */
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(212, 175, 55, 0.3);
    /* Gold Tint */

    /* Premium Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 50px rgba(212, 175, 55, 0.25);
    /* Subtle Gold Glow */
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.4);

    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Cinematic Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===========================
   LOADING SCREEN - WOW FACTOR!
   =========================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1A0F0A 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

#wave-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content */
    opacity: 0.6;
    /* Subtle blending */
}

/* ROYAL LINE ART LOADER */
.royal-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* Crown Animation */
.crown-container {
    width: 150px;
    height: 100px;
    margin-bottom: 40px;
    position: relative;
}

.crown-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.crown-path {
    fill: transparent;
    stroke: #D4AF37;
    /* Metallic Gold */
    stroke-width: 2;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: crownDraw 3s cubic-bezier(0.4, 0, 0.2, 1) forwards, crownFill 1s ease-out 3s forwards;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    /* Sharp shadow, no glow */
}

@keyframes crownDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes crownFill {
    to {
        fill: rgba(212, 175, 55, 0.1);
        /* Very subtle tint fill */
    }
}

/* Text Reveal */
.text-reveal-container {
    text-align: center;
    overflow: hidden;
}

.royal-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: #D4AF37;
    /* Solid Gold */
    letter-spacing: 0.2em;
    margin: 0;
    opacity: 0;
    transform: translateY(100%);
    animation: textSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;
    background: linear-gradient(to bottom, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.royal-separator {
    width: 0;
    height: 2px;
    background: #D4AF37;
    margin: 15px auto;
    animation: separatorExpand 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s forwards;
}

.royal-subtitle {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: #888;
    /* Silver/Platinum */
    letter-spacing: 0.5em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out 2.5s forwards;
}

@keyframes textSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes separatorExpand {
    to {
        width: 100px;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove old particles if present */
.loading-screen::before {
    display: none;
}





/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.brand-icon {
    font-size: 1.8rem;
    animation: rotate-icon 3s ease-in-out infinite;
}

@keyframes rotate-icon {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ===========================
   HERO SECTION - MODERN & WOW!
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    overflow: hidden;
    /* Deep Modern Background */
    background: radial-gradient(circle at 50% 50%, #1A0F0A 0%, #000000 100%);
}

/* 3D Floating Elements Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    perspective: 1000px;
}

/* Floating Vinyl Discs */
.hero-background::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background:
        radial-gradient(circle at center, #111 0%, #111 30%, #222 31%, #111 32%, #111 100%),
        repeating-radial-gradient(#333 0, #333 2px, #111 3px, #111 4px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    transform: rotateX(45deg) rotateY(-20deg);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 100px rgba(205, 127, 50, 0.2);
    animation: floatingVinyl 10s ease-in-out infinite;
    opacity: 0.6;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background:
        radial-gradient(circle at center, #111 0%, #111 30%, #222 31%, #111 32%, #111 100%),
        repeating-radial-gradient(#333 0, #333 2px, #111 3px, #111 4px);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    transform: rotateX(60deg) rotateY(20deg);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(184, 115, 51, 0.2);
    animation: floatingVinyl 12s ease-in-out infinite reverse;
    opacity: 0.5;
}

@keyframes floatingVinyl {

    0%,
    100% {
        transform: rotateX(45deg) rotateY(-20deg) translateY(0);
    }

    50% {
        transform: rotateX(50deg) rotateY(-15deg) translateY(-20px);
    }
}

/* Floating Music Notes Particles */
.hero::after {
    content: '♪ ♫ ♩ ♬';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: rgba(205, 127, 50, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    pointer-events: none;
    z-index: 0;
    animation: floatingNotes 15s linear infinite;
    letter-spacing: 15vw;
    filter: blur(1px);
}

@keyframes floatingNotes {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-20vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Glowing Aura Behind Text */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(205, 127, 50, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: auraPulse 4s ease-in-out infinite;
}

@keyframes auraPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(205, 127, 50, 0.1);
    border: 1px solid rgba(205, 127, 50, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.1);
    animation: fade-in-up 0.8s ease-out;
}

.hero-badge .badge-icon {
    font-size: 0.8rem;
    color: var(--warm-gold);
    animation: starSpin 3s linear infinite;
    display: inline-block;
}

@keyframes starSpin {
    100% {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fade-in-up 0.8s ease-out 0.2s backwards;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #DAA520 0%, #CD7F32 50%, #8B4513 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Shimmer Effect on Text */
.hero-title .gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg) translateX(-150%);
    animation: textShimmer 3s infinite;
}

@keyframes textShimmer {

    0%,
    80% {
        transform: skewX(-20deg) translateX(-150%);
    }

    100% {
        transform: skewX(-20deg) translateX(150%);
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fade-in-up 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fade-in-up 0.8s ease-out 0.6s backwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: #000;
    /* Contrast for Gold */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    animation: shine 4s linear infinite;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background-position: right center;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-border);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-card {
    position: absolute;
    font-size: 3rem;
    animation: float-random 8s ease-in-out infinite;
    opacity: 0.1;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

.card-4 {
    top: 40%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes float-random {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(20px, 20px) rotate(5deg);
    }
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
    padding: 100px 20px;
    background: var(--bg-secondary);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    place-items: center;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    animation: fade-in-up 0.6s ease forwards;
    opacity: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(197, 160, 40, 0.1) 100%);
    border: 2px solid var(--primary-gold);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '✓';
    color: var(--royal-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing {
    padding: 100px 20px;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing .container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    width: 100%;
    place-items: center;
    justify-content: center;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    animation: fade-in-up 0.6s ease forwards;
    opacity: 0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(197, 160, 40, 0.15) 100%);
    border: 2px solid var(--primary-gold);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 2rem;
    color: var(--text-secondary);
}

.amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.check-icon {
    flex-shrink: 0;
    stroke: var(--primary-gold);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.pricing-btn:hover {
    background: var(--glass-border);
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.pricing-btn.primary:hover {
    box-shadow: 0 8px 24px rgba(205, 127, 50, 0.6);
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */
.portfolio {
    padding: 100px 20px;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.portfolio .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    width: 100%;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #CD7F32 50%, #B87333 100%);
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.portfolio-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(205, 127, 50, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(205, 127, 50, 0.6);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    padding: 100px 20px;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    display: inline-block;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    margin-top: 10px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 60px 20px 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-social-link:hover {
    color: var(--text-primary);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: scale(1) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        transition: left var(--transition-normal);
        border-top: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .services-grid,
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }


    .loading-title {
        font-size: 2.5rem;
    }

    .audio-visualizer {
        height: 180px;
        gap: 10px;
    }

    .wave-bar {
        width: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .audio-visualizer {
        height: 120px;
        gap: 8px;
    }

    .wave-bar {
        width: 12px;
    }

    .loading-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        min-width: unset;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   STAGGERED ANIMATIONS FOR CARDS
   =========================== */

/* Service Cards Animation Delays */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Pricing Cards Animation Delays */
.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.25s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.4s;
}

.pricing-card:nth-child(4) {
    animation-delay: 0.55s;
}

/* Portfolio Items Animation */
.portfolio-item {
    /* Initial state - hidden */
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animated state when visible */
.portfolio-item.animate-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    visibility: visible !important;
}

/* Staggered animation delays */
.portfolio-item:nth-child(1) {
    transition-delay: 0s;
}

.portfolio-item:nth-child(2) {
    transition-delay: 0.15s;
}

.portfolio-item:nth-child(3) {
    transition-delay: 0.3s;
}

.portfolio-item:nth-child(4) {
    transition-delay: 0.45s;
}

/* ===========================
   VIDEO MODAL
   =========================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: rotate(90deg);
}
/* Developer Credit in Footer */
.developer-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.highlight-gold {
    color: var(--primary-gold);
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
