/* ========================================
   MODERN PROFESSIONAL BOOKING WEBSITE
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --dark-border: #334155;
    --text-light: #f8fafc;
    --text-gray: #cbd5e1;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

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

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar.menu-active {
    background: rgba(15, 23, 42, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-decoration {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-decoration i {
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
}

@media (min-width: 992px) {
    .logo-decoration {
        gap: 8px;
    }

    .logo-decoration i {
        font-size: 1.2rem;
    }
}

.logo-left i:first-child {
    animation: floatNote1 3s ease-in-out infinite;
}

.logo-left i:last-child {
    animation: floatNote2 3s ease-in-out infinite 0.5s;
}

.logo-right i:first-child {
    animation: floatNote2 3s ease-in-out infinite 0.3s;
}

.logo-right i:last-child {
    animation: floatNote1 3s ease-in-out infinite 0.8s;
}

@keyframes floatNote1 {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
        opacity: 1;
    }
}

@keyframes floatNote2 {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
        opacity: 1;
    }
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-light);
    background: rgba(139, 92, 246, 0.1);
}

.btn-nav-booking {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 10000;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
}

.hamburger:hover span {
    background: var(--primary-color);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0.3;
    pointer-events: none;
}

.hero-video iframe,
iframe.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 56.25vw;
    pointer-events: none;
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7), rgba(236, 72, 153, 0.6));
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: heroFloat 4s ease-in-out infinite;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
    color: var(--text-gray);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.hero-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    transition: var(--transition);
}

.hero-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.hero-social a:nth-child(1) {
    animation: socialPulse 3s ease-in-out infinite;
}

.hero-social a:nth-child(2) {
    animation: socialPulse 3s ease-in-out 0.5s infinite;
}

.hero-social a:nth-child(3) {
    animation: socialPulse 3s ease-in-out 1s infinite;
}

.hero-social a:nth-child(4) {
    animation: socialPulse 3s ease-in-out 1.5s infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--text-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.5;
    }
}

/* Hero Animations & Illustrations */
.hero-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.hero-icon-1 {
    top: 15%;
    left: 8%;
    animation: floatIcon1 6s ease-in-out infinite;
}

.hero-icon-2 {
    top: 25%;
    right: 12%;
    animation: floatIcon2 7s ease-in-out infinite;
}

.hero-icon-3 {
    top: 60%;
    left: 10%;
    animation: floatIcon3 8s ease-in-out infinite;
}

.hero-icon-4 {
    top: 70%;
    right: 15%;
    animation: floatIcon4 6.5s ease-in-out infinite;
}

.hero-icon-5 {
    top: 40%;
    left: 5%;
    animation: floatIcon5 7.5s ease-in-out infinite;
}

.hero-icon-6 {
    top: 50%;
    right: 8%;
    animation: floatIcon6 8.5s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: shapeFloat1 10s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -30px;
    background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
    animation: shapeFloat2 12s ease-in-out infinite;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    animation: shapeFloat3 9s ease-in-out infinite;
}

.hero-shape-4 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 15%;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    animation: shapeFloat4 11s ease-in-out infinite;
}

.hero-shape-5 {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 25%;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    animation: shapeFloat5 10.5s ease-in-out infinite;
}

.hero-shape-6 {
    width: 220px;
    height: 220px;
    top: 65%;
    right: 30%;
    background: linear-gradient(135deg, #f59e0b, var(--secondary-color));
    animation: shapeFloat6 13s ease-in-out infinite;
}

/* Floating Icon Animations */
@keyframes floatIcon1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-25px) rotate(3deg);
    }
}

@keyframes floatIcon2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-25px) rotate(-8deg) scale(1.05);
    }
    66% {
        transform: translateY(-15px) rotate(8deg) scale(0.95);
    }
}

@keyframes floatIcon3 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(15px) translateY(-20px) rotate(10deg);
    }
}

@keyframes floatIcon4 {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

@keyframes floatIcon5 {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateX(-5px) rotate(-5deg);
    }
    75% {
        transform: translateX(15px) rotate(7deg);
    }
}

@keyframes floatIcon6 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    40% {
        transform: translateY(-20px) rotate(-10deg);
    }
    80% {
        transform: translateY(-35px) rotate(5deg);
    }
}

/* Shape Float Animations */
@keyframes shapeFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -40px) scale(1.1);
    }
}

@keyframes shapeFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-40px, 30px) rotate(180deg);
    }
}

@keyframes shapeFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -30px) scale(1.15);
    }
    66% {
        transform: translate(-15px, -20px) scale(0.9);
    }
}

@keyframes shapeFloat4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-35px, -45px) rotate(90deg);
    }
}

@keyframes shapeFloat5 {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(25px, 20px);
    }
    50% {
        transform: translate(-20px, -30px);
    }
    75% {
        transform: translate(15px, -25px);
    }
}

@keyframes shapeFloat6 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(40px, -50px) scale(1.2) rotate(180deg);
    }
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3),
                    0 0 40px rgba(236, 72, 153, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
                    0 0 60px rgba(236, 72, 153, 0.4);
    }
}

/* Hero Content Float */
@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Social Icon Pulse */
@keyframes socialPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(139, 92, 246, 0);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
}

/* ========================================
   SECTION ANIMATIONS & ILLUSTRATIONS
   ======================================== */

/* About Section Animations */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.about-float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-icon-1 {
    top: 15%;
    left: 5%;
    animation: aboutFloat1 5s ease-in-out infinite;
}

.about-icon-2 {
    top: 30%;
    right: 8%;
    animation: aboutFloat2 6s ease-in-out infinite;
}

.about-icon-3 {
    bottom: 20%;
    left: 10%;
    animation: aboutFloat3 7s ease-in-out infinite;
}

.about-icon-4 {
    bottom: 35%;
    right: 5%;
    animation: aboutFloat4 5.5s ease-in-out infinite;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.about-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: aboutShapeFloat1 8s ease-in-out infinite;
}

.about-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 8%;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    animation: aboutShapeFloat2 10s ease-in-out infinite;
}

.about-shape-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 3%;
    background: linear-gradient(135deg, #8b5cf6, var(--secondary-color));
    animation: aboutShapeFloat3 9s ease-in-out infinite;
}

/* Services Section Animations */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.services-float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
}

.services-icon-1 {
    top: 20%;
    left: 10%;
    animation: servicesFloat1 6s ease-in-out infinite;
}

.services-icon-2 {
    bottom: 15%;
    right: 12%;
    animation: servicesFloat2 7s ease-in-out infinite;
}

.services-shape {
    position: absolute;
    opacity: 0.08;
}

.services-shape-1 {
    width: 250px;
    height: 250px;
    top: 5%;
    right: 3%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: servicesShapeFloat1 12s ease-in-out infinite;
}

.services-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: servicesShapeFloat2 10s ease-in-out infinite;
}

.services-shape-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    background: linear-gradient(135deg, #8b5cf6, var(--secondary-color));
    border-radius: 50%;
    animation: servicesShapeFloat3 11s ease-in-out infinite;
}

/* Packages Section Animations */
.packages-section {
    position: relative;
    overflow: hidden;
}

.packages-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.packages-float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    font-size: 1.3rem;
    color: rgba(255, 215, 0, 0.8);
}

.packages-icon-1 {
    top: 15%;
    left: 8%;
    animation: packagesFloat1 5s ease-in-out infinite;
}

.packages-icon-2 {
    top: 25%;
    right: 10%;
    animation: packagesFloat2 6s ease-in-out infinite;
}

.packages-icon-3 {
    bottom: 20%;
    right: 8%;
    animation: packagesFloat3 5.5s ease-in-out infinite;
}

.packages-shape {
    position: absolute;
    opacity: 0.1;
}

.packages-shape-1 {
    width: 220px;
    height: 220px;
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 50%;
    animation: packagesShapeFloat1 9s ease-in-out infinite;
}

.packages-shape-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 10%;
    background: linear-gradient(135deg, var(--primary-color), #ec4899);
    border-radius: 50%;
    animation: packagesShapeFloat2 11s ease-in-out infinite;
}

.packages-shape-3 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 5%;
    background: linear-gradient(135deg, #8b5cf6, var(--secondary-color));
    border-radius: 50%;
    animation: packagesShapeFloat3 10s ease-in-out infinite;
}

/* Testimonials Section Animations */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.testimonials-quote {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(139, 92, 246, 0.05);
}

.testimonials-quote-1 {
    top: 10%;
    left: 5%;
    animation: quoteFloat1 6s ease-in-out infinite;
}

.testimonials-quote-2 {
    bottom: 10%;
    right: 5%;
    animation: quoteFloat2 7s ease-in-out infinite;
}

.testimonials-float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(255, 85, 0, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(236, 72, 153, 0.3);
    font-size: 1.2rem;
    color: rgba(236, 72, 153, 0.8);
}

.testimonials-icon-1 {
    top: 20%;
    right: 12%;
    animation: testimonialsFloat1 5s ease-in-out infinite;
}

.testimonials-icon-2 {
    bottom: 25%;
    left: 10%;
    animation: testimonialsFloat2 6s ease-in-out infinite;
}

.testimonials-shape {
    position: absolute;
    opacity: 0.08;
    border-radius: 50%;
}

.testimonials-shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 8%;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    animation: testimonialsShapeFloat1 10s ease-in-out infinite;
}

.testimonials-shape-2 {
    width: 170px;
    height: 170px;
    bottom: 20%;
    right: 10%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: testimonialsShapeFloat2 12s ease-in-out infinite;
}

/* Booking Section Animations */
.booking-wrapper {
    position: relative;
    overflow: hidden;
}

.booking-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.booking-float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
}

.booking-icon-1 {
    top: 15%;
    left: 8%;
    animation: bookingFloat1 5.5s ease-in-out infinite;
}

.booking-icon-2 {
    top: 30%;
    right: 10%;
    animation: bookingFloat2 6.5s ease-in-out infinite;
}

.booking-icon-3 {
    bottom: 25%;
    right: 8%;
    animation: bookingFloat3 6s ease-in-out infinite;
}

.booking-shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}

.booking-shape-1 {
    width: 210px;
    height: 210px;
    top: 20%;
    right: 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: bookingShapeFloat1 11s ease-in-out infinite;
}

.booking-shape-2 {
    width: 190px;
    height: 190px;
    bottom: 15%;
    left: 8%;
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    animation: bookingShapeFloat2 10s ease-in-out infinite;
}

/* Keyframe Animations for All Sections */
@keyframes aboutFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes aboutFloat2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.1); }
}

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

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

@keyframes aboutShapeFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -30px) scale(1.1); }
}

@keyframes aboutShapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 25px) rotate(90deg); }
}

@keyframes aboutShapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -25px) scale(1.15); }
    66% { transform: translate(-15px, -20px) scale(0.9); }
}

@keyframes servicesFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

@keyframes servicesFloat2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.08); }
}

@keyframes servicesShapeFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        transform: translate(30px, -35px) scale(1.1);
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes servicesShapeFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(-35px, 30px) rotate(180deg);
        border-radius: 30% 60% 70% 40% / 30% 70% 40% 60%;
    }
}

@keyframes servicesShapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -40px) scale(1.2); }
}

@keyframes packagesFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-20px) rotate(15deg) scale(1.1); }
}

@keyframes packagesFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(-10deg); }
}

@keyframes packagesFloat3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.15); }
}

@keyframes packagesShapeFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -35px) rotate(120deg); }
}

@keyframes packagesShapeFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(35px, -40px) scale(1.2); }
}

@keyframes packagesShapeFloat3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(25px, 20px); }
    66% { transform: translate(-20px, -25px); }
}

@keyframes quoteFloat1 {
    0%, 100% { transform: translateY(0); opacity: 0.05; }
    50% { transform: translateY(-15px); opacity: 0.08; }
}

@keyframes quoteFloat2 {
    0%, 100% { transform: translateY(0); opacity: 0.05; }
    50% { transform: translateY(15px); opacity: 0.08; }
}

@keyframes testimonialsFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(8deg); }
}

@keyframes testimonialsFloat2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-22px) scale(1.1); }
}

@keyframes testimonialsShapeFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -35px) scale(1.15); }
}

@keyframes testimonialsShapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-35px, 30px) rotate(90deg); }
}

@keyframes bookingFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(-5deg); }
}

@keyframes bookingFloat2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.08); }
}

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

@keyframes bookingShapeFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -40px) scale(1.15); }
}

@keyframes bookingShapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(35px, -30px) rotate(180deg); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--dark-border);
}

.btn-outline-light:hover {
    background: var(--dark-card);
    border-color: var(--primary-color);
    color: var(--primary-light);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    background: var(--dark-card);
    padding: 60px 0;
    border-bottom: 1px solid var(--dark-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 15px;
    border: 1px solid var(--dark-border);
}

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

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ========================================
   SECTION STYLING
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 120px 0;
    background: var(--dark-bg);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
    border: 5px solid var(--dark-bg);
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.about-content {
    text-align: left;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 10px;
    border: 1px solid var(--dark-border);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 120px 0;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

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

.service-card {
    padding: 40px 30px;
    background: var(--dark-bg);
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    font-size: 2rem;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
}

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

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    padding: 120px 0;
    background: var(--dark-bg);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(4) {
    aspect-ratio: 16/9;
}

.gallery-item:nth-child(5) {
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 3rem;
    transform: scale(0.5);
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

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

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages-section {
    padding: 120px 0;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    position: relative;
    padding: 50px 35px;
    background: var(--dark-bg);
    border-radius: 25px;
    border: 2px solid var(--dark-border);
    transition: var(--transition);
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.package-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.package-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-gray);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.package-duration {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

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

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

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

.package-features i.fa-check {
    color: var(--success);
}

.package-features i.fa-times {
    color: var(--text-gray);
    opacity: 0.3;
}

.package-card .btn {
    margin-top: 20px;
    display: inline-block;
}

.package-note {
    text-align: center;
    padding: 20px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 15px;
    color: var(--text-gray);
    border: 1px solid var(--dark-border);
}

.package-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 120px 0;
    background: var(--dark-bg);
}

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

.testimonial-card {
    padding: 40px;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

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

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking-wrapper {
    padding: 120px 0;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.calendar-card,
.booking-card {
    padding: 40px;
    background: var(--dark-bg);
    border-radius: 25px;
    border: 1px solid var(--dark-border);
}

.calendar-card h3,
.booking-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-legend {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.calendar-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.available {
    background: var(--success);
}

.legend-dot.booked {
    background: var(--error);
}

/* Calendar Styling */
#calendar {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 20px;
}

.fc {
    --fc-border-color: var(--dark-border);
    --fc-button-bg-color: var(--primary-color);
    --fc-button-border-color: var(--primary-color);
    --fc-button-hover-bg-color: var(--primary-dark);
    --fc-button-hover-border-color: var(--primary-dark);
    --fc-button-active-bg-color: var(--primary-dark);
    --fc-button-active-border-color: var(--primary-dark);
    --fc-today-bg-color: rgba(139, 92, 246, 0.1);
}

.fc .fc-toolbar-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
}

.fc .fc-col-header-cell {
    background: var(--dark-card);
    color: var(--text-gray);
    font-weight: 600;
    padding: 12px 0;
}

.fc .fc-daygrid-day {
    background: var(--dark-bg);
}

.fc .fc-daygrid-day:hover {
    background: rgba(139, 92, 246, 0.05);
    cursor: pointer;
}

.fc .fc-daygrid-day-number {
    color: var(--text-light);
    padding: 8px;
}

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

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-card);
    border: 2px solid var(--dark-border);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.05);
}

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

.form-group select option {
    background: var(--dark-card);
    color: var(--text-light);
    padding: 10px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-note i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.alert i {
    font-size: 1.2rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: var(--text-gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 10px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

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

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom a {
    color: var(--primary-light);
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
    border: none;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo h2 {
        font-size: 1.7rem;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 15px;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 9999;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInMenu 0.3s ease forwards;
    }

    .nav-menu.active li {
        animation: slideInMenu 0.3s ease forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.35s; }

    @keyframes slideInMenu {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 10px;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(139, 92, 246, 0.2);
        transform: translateX(10px);
    }

    .btn-nav-booking {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white !important;
        margin-top: 10px;
    }

    .btn-nav-booking:hover {
        transform: translateX(0) scale(1.05);
    }

    .hamburger {
        display: flex;
        width: 26px;
        height: 20px;
    }

    .hamburger span {
        height: 2.5px;
    }

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

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

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

    body.menu-open {
        overflow: hidden;
    }

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

    .hero-buttons .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
        border-radius: 30px;
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        font-weight: 600;
    }

    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    }

    .hero-buttons .btn-outline {
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    /* Hero Animations Mobile */
    .hero-float-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .hero-icon-1 { top: 10%; left: 5%; }
    .hero-icon-2 { top: 20%; right: 5%; }
    .hero-icon-3 { top: 65%; left: 5%; }
    .hero-icon-4 { top: 75%; right: 8%; }
    .hero-icon-5 { display: none; }
    .hero-icon-6 { display: none; }

    .hero-shape-1 { width: 200px; height: 200px; }
    .hero-shape-2 { width: 150px; height: 150px; }
    .hero-shape-3 { width: 100px; height: 100px; }
    .hero-shape-4 { width: 180px; height: 180px; }
    .hero-shape-5 { width: 120px; height: 120px; }
    .hero-shape-6 { display: none; }

    /* Section Animations Mobile */
    .about-float-icon, .services-float-icon, .packages-float-icon,
    .testimonials-float-icon, .booking-float-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .about-shape, .services-shape, .packages-shape,
    .testimonials-shape, .booking-shape {
        width: 120px !important;
        height: 120px !important;
    }

    .testimonials-quote {
        font-size: 5rem;
    }

    /* Minimize Button Mobile - Smaller Size */
    .sc-minimize-btn {
        padding: 3px 6px;
        font-size: 0.6rem;
        align-self: flex-end;
        margin-left: auto;
        margin-right: 0;
    }

    .sc-minimize-btn i {
        font-size: 0.6rem;
    }

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

    .services-grid,
    .packages-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

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

    .gallery-item {
        aspect-ratio: 4/3 !important;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
    }

    .logo h2 {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 9px 20px;
        font-size: 0.85rem;
        border-radius: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        box-shadow: 0 3px 12px rgba(139, 92, 246, 0.35);
        transition: all 0.3s ease;
    }

    .hero-buttons .btn i {
        font-size: 0.9rem;
    }

    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
        box-shadow: 0 4px 16px rgba(139, 92, 246, 0.5);
    }

    .hero-buttons .btn-primary:active {
        transform: scale(0.98);
    }

    .hero-buttons .btn-outline {
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
    }

    /* Hero Animations Very Small Mobile */
    .hero-float-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .hero-shape-1 { width: 150px; height: 150px; }
    .hero-shape-2 { width: 120px; height: 120px; }
    .hero-shape-3 { width: 80px; height: 80px; }
    .hero-shape-4 { width: 140px; height: 140px; }
    .hero-shape-5 { width: 90px; height: 90px; }

    /* Section Animations Very Small Mobile */
    .about-float-icon, .services-float-icon, .packages-float-icon,
    .testimonials-float-icon, .booking-float-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .about-shape, .services-shape, .packages-shape,
    .testimonials-shape, .booking-shape {
        width: 90px !important;
        height: 90px !important;
    }

    .testimonials-quote {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .calendar-card,
    .booking-card {
        padding: 25px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 10px;
        left: 10px;
        font-size: 1rem;
    }
}

/* ========================================
   LOADING ANIMATION
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ========================================
   SOUNDCLOUD-STYLE AUDIO PLAYER
   ======================================== */
.audio-player-widget {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    top: auto !important;
    z-index: 9999;
    width: 320px;
    max-width: calc(100vw - 40px);
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    transition: none;
    overflow: visible;
}

/* Player Loading */
.player-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.player-loading.hide {
    opacity: 0;
    pointer-events: none;
}

.loading-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.loading-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.loading-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 4;
}

.loading-progress {
    fill: none;
    stroke: #ff5500;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.1s linear;
    filter: drop-shadow(0 0 8px rgba(255, 85, 0, 0.6));
}

.loading-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 85, 0, 0.8), 0 0 30px rgba(255, 85, 0, 0.5);
}

.audio-player-container {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.audio-player-container.loaded {
    opacity: 1;
}

.audio-player-widget.minimized {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5500 0%, #ff3300 50%, #ff6600 100%);
    box-shadow: 0 4px 20px rgba(255, 85, 0, 0.6),
                0 0 30px rgba(255, 85, 0, 0.4),
                inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.audio-player-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    transition: none;
    overflow: visible;
    border-radius: 0;
}

/* Player Steps Layout */
.player-step-1,
.player-step-2,
.player-step-3 {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(10px);
}

.player-step-1:hover,
.player-step-2:hover,
.player-step-3:hover {
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.player-step-1 {
    justify-content: space-between;
    animation: slideIn 0.5s ease forwards;
}

.player-step-2 {
    justify-content: space-between;
    gap: 10px;
    animation: slideIn 0.5s ease 0.15s forwards;
}

.player-step-3 {
    justify-content: space-between;
    gap: 10px;
    animation: slideIn 0.5s ease 0.3s forwards;
}

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

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
}

/* Minimize animations - smooth fade and scale */
.audio-player-widget.minimizing .player-step-1,
.audio-player-widget.minimizing .player-step-2,
.audio-player-widget.minimizing .player-step-3,
.audio-player-widget.minimizing .sc-minimize-btn {
    animation: slideOut 0.4s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.sc-skip-controls {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

/* Autoplay Toggle */
.autoplay-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.autoplay-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.autoplay-toggle input {
    display: none;
}

.autoplay-slider {
    width: 28px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 2px;
}

.autoplay-icon {
    position: absolute;
    font-size: 0.45rem;
    color: #ccc;
    left: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.autoplay-toggle input:checked + .autoplay-slider {
    background: #ff5500;
    box-shadow: 0 0 8px rgba(255, 85, 0, 0.5);
}

.autoplay-toggle input:checked + .autoplay-slider .autoplay-icon {
    left: 15px;
    color: #fff;
    transform: scale(1.1);
}

.autoplay-slider::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    left: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.autoplay-toggle input:checked + .autoplay-slider::before {
    left: 14px;
    background: #fff;
}

.autoplay-toggle:hover .autoplay-slider {
    background: rgba(255, 255, 255, 0.2);
}

.autoplay-toggle input:checked:hover + .autoplay-slider {
    background: #ff6600;
}

.autoplay-label {
    font-size: 0.65rem;
    color: #ccc;
    font-weight: 500;
    white-space: nowrap;
}

/* Play Button */
.sc-play-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff5500;
    border: none;
    color: white !important;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(255, 85, 0, 0.4);
}

.sc-play-btn:hover {
    background: #ff6600;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.7);
}

.sc-play-btn:active {
    transform: scale(0.95);
}

.sc-play-btn i {
    pointer-events: none;
    color: white !important;
    transition: transform 0.2s ease;
}

/* Track Info */
.sc-track-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    transition: all 0.3s ease;
}

.sc-artwork {
    width: 28px;
    height: 28px;
    border-radius: 3px;
    background: linear-gradient(135deg, #ff5500 0%, #ff8833 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white !important;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-artwork:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(255, 85, 0, 0.4);
}

.sc-artwork i {
    color: white !important;
}

.sc-details {
    flex: 1;
    min-width: 0;
}

.sc-title {
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.sc-artist {
    color: #999 !important;
    font-size: 0.6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

/* Waveform Container */
.sc-waveform-container {
    flex: 1;
    max-width: calc(100% - 110px);
    height: 32px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-waveform-container:hover {
    transform: scaleY(1.1);
}

.sc-waveform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
    height: 6px;
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.sc-waveform::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, #ff5500 0%, #ff6600 50%, #ff7700 100%);
    border-radius: 10px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.5);
}

.sc-wave-bar {
    flex: 1;
    min-width: 2px;
    max-width: 4px;
    background: transparent;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    position: relative;
    z-index: 1;
}

.sc-wave-bar:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.sc-wave-bar.played {
    background: transparent !important;
}

.sc-wave-bar.playing {
    background: transparent !important;
}

/* Time Display */
.sc-time-display {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #aaa !important;
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 85px;
    font-family: 'Courier New', monospace;
    flex-shrink: 0;
    transition: all 0.3s ease;
    justify-content: flex-end;
}

/* Volume Control */
.sc-volume-control {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 80px;
    transition: all 0.3s ease;
}

.sc-volume-btn {
    background: none;
    border: none;
    color: #ccc !important;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.sc-volume-btn:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.sc-volume-btn i {
    color: #ccc !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-volume-btn:hover i {
    color: #fff !important;
    transform: scale(1.15);
}

.sc-volume-slider {
    flex: 1;
}

.sc-volume-slider input[type="range"] {
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sc-volume-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sc-volume-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    background: #ff6600;
    box-shadow: 0 3px 8px rgba(255, 85, 0, 0.5);
}

.sc-volume-slider input[type="range"]::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* Extra Controls */
.sc-extra-controls {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.sc-control-btn {
    background: none;
    border: none;
    color: #ccc !important;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.sc-control-btn i {
    color: #ccc !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-control-btn:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.sc-control-btn:hover i {
    color: #fff !important;
}

.sc-control-btn:active {
    transform: scale(0.95);
}

/* Minimize Button */
.sc-minimize-btn {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: none;
    color: #ccc !important;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 6px 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    width: auto;
    margin-left: auto;
    margin-right: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(10px);
    animation: slideIn 0.5s ease 0.45s forwards;
}

.sc-minimize-btn i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ccc !important;
}

.sc-minimize-btn:hover {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.sc-minimize-btn:hover i {
    color: #fff !important;
    transform: rotate(180deg);
}

.audio-player-widget.minimized .sc-minimize-btn i {
    transform: scale(1.5);
    color: white !important;
    animation: equalizer-pulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
                 0 0 20px rgba(255, 85, 0, 0.4),
                 0 0 30px rgba(255, 85, 0, 0.3);
}

.audio-player-widget.minimized .sc-minimize-btn i::before {
    content: '\f001';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

@keyframes equalizer-pulse {
    0%, 100% {
        transform: scale(1.5) translateY(0);
        filter: brightness(1);
    }
    25% {
        transform: scale(1.6) translateY(-2px);
        filter: brightness(1.3);
    }
    50% {
        transform: scale(1.5) translateY(0);
        filter: brightness(1);
    }
    75% {
        transform: scale(1.6) translateY(-2px);
        filter: brightness(1.3);
    }
}

.audio-player-widget.minimized .audio-player-container {
    padding: 0;
    width: 50px;
    height: 50px;
    justify-content: center;
}

.audio-player-widget.minimized .sc-play-btn,
.audio-player-widget.minimized .sc-track-info,
.audio-player-widget.minimized .sc-waveform-container,
.audio-player-widget.minimized .sc-time-display,
.audio-player-widget.minimized .sc-volume-control,
.audio-player-widget.minimized .sc-extra-controls,
.audio-player-widget.minimized .player-step-1,
.audio-player-widget.minimized .player-step-2,
.audio-player-widget.minimized .player-step-3,
.audio-player-widget.minimized .sc-skip-controls {
    display: none;
    opacity: 0;
}

.audio-player-widget.minimized .sc-minimize-btn {
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-player-widget.minimized .sc-minimize-btn:hover {
    background: transparent;
    transform: scale(1.15) rotate(5deg);
}

.audio-player-widget.minimized .sc-minimize-btn:active {
    transform: scale(0.95);
}

/* Playlist Panel */
.sc-playlist-panel {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    width: 320px;
    max-width: 90vw;
    max-height: 380px;
    background: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sc-playlist-panel.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.audio-player-widget.minimized .sc-playlist-panel {
    display: none;
}

.sc-playlist-header {
    padding: 12px 16px;
    background: #333;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-playlist-header h4 {
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-playlist-header h4 i {
    color: #ff5500 !important;
}

.sc-playlist-close {
    background: none;
    border: none;
    color: #ccc !important;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-playlist-close i {
    color: #ccc !important;
}

.sc-playlist-close:hover {
    color: #fff !important;
}

.sc-playlist-close:hover i {
    color: #fff !important;
}

.sc-playlist-items {
    overflow-y: auto;
    flex: 1;
    padding: 10px;
}

.sc-playlist-items::-webkit-scrollbar {
    width: 8px;
}

.sc-playlist-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.sc-playlist-items::-webkit-scrollbar-thumb {
    background: #ff5500;
    border-radius: 4px;
}

.sc-playlist-items::-webkit-scrollbar-thumb:hover {
    background: #ff6600;
}

.sc-playlist-item {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.sc-playlist-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.01);
}

.sc-playlist-item.active {
    background: rgba(255, 85, 0, 0.15);
    border-left: 3px solid #ff5500;
    transform: scale(1);
}

.sc-playlist-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    transition: all 0.3s ease;
}

.sc-playlist-number {
    color: #999 !important;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.sc-playlist-item.active .sc-playlist-number {
    color: #ff5500 !important;
}

.sc-playlist-details {
    flex: 1;
    min-width: 0;
}

.sc-playlist-title {
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-playlist-artist {
    color: #999 !important;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-playlist-play-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 85, 0, 0.2);
    border: 1px solid rgba(255, 85, 0, 0.3);
    color: #ff5500 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    padding-left: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.sc-playlist-play-btn i {
    color: #ff5500 !important;
    transition: all 0.3s ease;
}

.sc-playlist-play-btn:hover {
    background: #ff5500;
    color: white !important;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.5);
}

.sc-playlist-play-btn:hover i {
    color: white !important;
}

.sc-playlist-play-btn:active {
    transform: scale(0.95);
}

.sc-playlist-item.active .sc-playlist-play-btn {
    background: #ff5500;
    color: white !important;
}

.sc-playlist-item.active .sc-playlist-play-btn i {
    color: white !important;
}

/* Hide audio elements */
#audioElement,
#scAudioElement {
    display: none !important;
}

/* Prevent download button on native controls */
audio::-webkit-media-controls-enclosure {
    overflow: hidden;
}

audio::-webkit-media-controls-panel {
    width: calc(100% + 32px);
}

audio::-internal-media-controls-download-button {
    display: none !important;
}

audio::-webkit-media-controls-download-button {
    display: none !important;
}

/* Mobile Responsive for SoundCloud Player */
@media (max-width: 1024px) {
    .audio-player-widget {
        width: 300px;
        max-width: calc(100vw - 30px);
        bottom: 15px;
        right: 15px;
    }

    .player-step-1,
    .player-step-2,
    .player-step-3 {
        gap: 6px;
        padding: 7px 10px;
    }

    .sc-waveform-container {
        height: 30px;
        max-width: calc(100% - 95px);
    }

    .sc-time-display {
        font-size: 0.7rem;
        min-width: 80px;
    }

    .sc-title {
        font-size: 0.75rem;
    }

    .sc-artist {
        font-size: 0.65rem;
    }

    .autoplay-label {
        font-size: 0.7rem;
    }

    .loading-circle {
        width: 80px;
        height: 80px;
    }

    .loading-percentage {
        font-size: 1rem;
    }

    .audio-player-widget.minimized {
        width: 45px;
        height: 45px;
    }

    .audio-player-widget.minimized .audio-player-container {
        width: 45px;
        height: 45px;
    }

    .audio-player-widget.minimized .sc-minimize-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }

    .audio-player-widget {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: calc(100% - 20px);
    }

    .audio-player-widget.minimized {
        bottom: 15px;
        right: 15px;
        left: auto;
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }

    .sc-playlist-panel {
        bottom: calc(100% + 8px);
        left: 0;
        right: 0;
    }

    .player-step-1,
    .player-step-2,
    .player-step-3 {
        gap: 6px;
        padding: 7px 10px;
        border-radius: 8px;
    }

    .sc-waveform-container {
        height: 28px;
        max-width: calc(100% - 90px);
    }

    .sc-time-display {
        font-size: 0.7rem;
        min-width: 75px;
    }

    .sc-title {
        font-size: 0.75rem;
    }

    .sc-artist {
        font-size: 0.65rem;
    }

    .autoplay-label {
        font-size: 0.7rem;
    }

    .loading-circle {
        width: 70px;
        height: 70px;
    }

    .loading-percentage {
        font-size: 0.9rem;
    }

    .sc-play-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .sc-play-btn i {
        color: white !important;
    }

    .sc-artwork {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .sc-title {
        font-size: 0.7rem;
        color: #fff !important;
    }

    .sc-artist {
        font-size: 0.6rem;
        color: #bbb !important;
    }

    .sc-waveform-container {
        height: 35px;
        padding: 0 6px;
    }

    .sc-volume-control {
        min-width: 70px;
        gap: 3px;
    }

    .sc-volume-btn {
        font-size: 0.75rem;
        padding: 4px;
    }

    .sc-time-display {
        min-width: 60px;
        font-size: 0.6rem;
        color: #fff !important;
    }

    .sc-time-display span {
        color: #fff !important;
    }

    .sc-control-btn {
        font-size: 0.75rem;
        padding: 5px;
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .sc-control-btn i {
        color: #fff !important;
    }

    .sc-minimize-btn {
        padding: 5px 6px;
        font-size: 0.8rem;
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .sc-minimize-btn i {
        color: #fff !important;
    }

    .sc-playlist-panel {
        width: 92vw;
        max-height: 300px;
    }

    .sc-playlist-header {
        padding: 10px 12px;
    }

    .sc-playlist-header h4 {
        font-size: 0.85rem;
    }

    .sc-playlist-item {
        padding: 8px;
        margin-bottom: 5px;
    }

    .sc-playlist-title {
        font-size: 0.8rem;
    }

    .sc-playlist-artist {
        font-size: 0.7rem;
    }

    .sc-playlist-play-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 75px;
    }

    .audio-player-widget {
        bottom: 8px;
        right: 8px;
        left: 8px;
        width: auto;
        max-width: calc(100% - 16px);
    }

    .player-step-1,
    .player-step-2,
    .player-step-3 {
        gap: 5px;
        padding: 6px 8px;
        border-radius: 7px;
    }

    .sc-waveform-container {
        height: 26px;
        max-width: calc(100% - 85px);
        padding: 0 6px;
    }

    .sc-time-display {
        font-size: 0.65rem;
        min-width: 70px;
    }

    .sc-title {
        font-size: 0.7rem;
    }

    .sc-artist {
        font-size: 0.6rem;
    }

    .autoplay-label {
        font-size: 0.65rem;
    }

    .loading-circle {
        width: 60px;
        height: 60px;
    }

    .loading-percentage {
        font-size: 0.8rem;
    }

    .sc-play-btn {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .sc-play-btn i {
        color: white !important;
    }

    .sc-artwork {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .sc-title {
        font-size: 0.65rem;
        color: #fff !important;
    }

    .sc-artist {
        font-size: 0.55rem;
        color: #bbb !important;
    }

    .sc-waveform-container {
        height: 32px;
        padding: 0 5px;
    }

    .sc-volume-control {
        display: none;
    }

    .sc-time-display {
        min-width: 55px;
        font-size: 0.55rem;
        gap: 1px;
        color: #fff !important;
    }

    .sc-time-display span {
        color: #fff !important;
    }

    .sc-control-btn {
        font-size: 0.7rem;
        padding: 4px;
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .sc-control-btn i {
        color: #fff !important;
    }

    .sc-minimize-btn {
        padding: 4px 5px;
        font-size: 0.75rem;
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .sc-minimize-btn i {
        color: #fff !important;
    }

    .audio-player-widget.minimized {
        width: 45px;
        height: 45px;
        bottom: 12px;
        right: 12px;
        left: auto;
    }

    .audio-player-widget.minimized .audio-player-container {
        width: 45px;
        height: 45px;
    }

    .audio-player-widget.minimized .sc-minimize-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 70px;
    }

    .audio-player-widget {
        bottom: 8px;
        right: 8px;
        left: 8px;
        width: auto;
    }

    .player-step-1,
    .player-step-2,
    .player-step-3 {
        gap: 4px;
        padding: 5px 7px;
        border-radius: 6px;
    }

    .sc-waveform-container {
        height: 24px;
        max-width: calc(100% - 80px);
        padding: 0 5px;
    }

    .sc-time-display {
        font-size: 0.6rem;
        min-width: 65px;
    }

    .sc-title {
        font-size: 0.65rem;
    }

    .sc-artist {
        font-size: 0.55rem;
    }

    .sc-volume-control {
        min-width: 60px;
        gap: 4px;
    }

    .autoplay-label {
        font-size: 0.6rem;
    }

    .loading-circle {
        width: 50px;
        height: 50px;
    }

    .loading-percentage {
        font-size: 0.7rem;
    }

    .sc-minimize-btn {
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    .sc-play-btn {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .sc-play-btn i {
        color: white !important;
    }

    .sc-artwork {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .sc-title {
        font-size: 0.6rem;
        color: #fff !important;
    }

    .sc-artist {
        font-size: 0.5rem;
        color: #bbb !important;
    }

    .sc-waveform-container {
        height: 28px;
        padding: 0 4px;
    }

    .sc-time-display {
        min-width: 50px;
        font-size: 0.5rem;
        gap: 1px;
        color: #fff !important;
    }

    .sc-time-display span {
        color: #fff !important;
    }

    .sc-control-btn {
        font-size: 0.65rem;
        padding: 3px;
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .sc-control-btn i {
        color: #fff !important;
    }

    .sc-minimize-btn {
        padding: 3px 4px;
        font-size: 0.7rem;
        margin-left: 2px;
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .sc-minimize-btn i {
        color: #fff !important;
    }

    .sc-playlist-panel {
        width: 95vw;
        max-height: 280px;
        border-radius: 12px;
    }

    .sc-playlist-header {
        padding: 8px 10px;
    }

    .sc-playlist-header h4 {
        font-size: 0.8rem;
    }

    .sc-playlist-item {
        padding: 6px;
        margin-bottom: 4px;
    }

    .sc-playlist-number {
        font-size: 0.7rem;
        min-width: 20px;
    }

    .sc-playlist-title {
        font-size: 0.75rem;
    }

    .sc-playlist-artist {
        font-size: 0.65rem;
    }

    .sc-playlist-play-btn {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .audio-player-widget.minimized {
        width: 42px;
        height: 42px;
        bottom: 10px;
        right: 10px;
        left: auto;
    }

    .audio-player-widget.minimized .audio-player-container {
        width: 42px;
        height: 42px;
    }

    .audio-player-widget.minimized .sc-minimize-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 360px) {
    body {
        padding-bottom: 65px;
    }

    .audio-player-container {
        padding: 3px 5px;
        gap: 2px;
    }

    .sc-play-btn {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }

    .sc-play-btn i {
        color: white !important;
    }

    .sc-track-info {
        min-width: 60px;
        max-width: 75px;
        gap: 3px;
    }

    .sc-artwork {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }

    .sc-title {
        font-size: 0.55rem;
        color: #fff !important;
    }

    .sc-artist {
        font-size: 0.45rem;
        color: #bbb !important;
    }

    .sc-waveform-container {
        height: 25px;
        padding: 0 3px;
    }

    .sc-time-display {
        min-width: 45px;
        font-size: 0.48rem;
        color: #fff !important;
    }

    .sc-time-display span {
        color: #fff !important;
    }

    .sc-control-btn {
        font-size: 0.6rem;
        padding: 2px;
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .sc-control-btn i {
        color: #fff !important;
    }

    .sc-minimize-btn {
        padding: 2px 3px;
        font-size: 0.65rem;
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }

    .sc-minimize-btn i {
        color: #fff !important;
    }
}

/* Old audio player styles removed - using SoundCloud style above */

.audio-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.15);
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.audio-close-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: rgba(102, 126, 234, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.audio-info {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.12);
    position: relative;
}

.audio-artwork {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow:
        0 8px 25px rgba(102, 126, 234, 0.45),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.audio-artwork:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow:
        0 10px 30px rgba(102, 126, 234, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.audio-artwork::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: slideGlow 2.5s ease-in-out infinite;
}

@keyframes slideGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Equalizer in artwork */
.audio-equalizer {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 3px;
    height: 18px;
    align-items: flex-end;
}

.audio-artwork.playing .audio-equalizer {
    display: flex;
}

.audio-artwork.playing i {
    opacity: 0.3;
}

.audio-equalizer span {
    width: 3px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    height: 8px;
    transition: height 0.08s ease-out;
}

.audio-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.audio-title {
    color: #1a202c;
    font-weight: 900;
    font-size: 0.95rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.audio-artist {
    color: #64748b;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    font-weight: 600;
}

.audio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
}

.audio-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.15);
    color: #64748b;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.audio-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(102, 126, 234, 0.4);
    color: #667eea;
    transform: scale(1.1) translateY(-2px);
    box-shadow:
        0 8px 22px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.audio-btn:active {
    transform: scale(1.02);
}

.audio-play {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 1.3rem;
    border: 3px solid rgba(255, 255, 255, 1);
    color: white;
    box-shadow:
        0 10px 35px rgba(102, 126, 234, 0.55),
        0 0 0 0 rgba(102, 126, 234, 0),
        inset 0 2px 0 rgba(255, 255, 255, 0.35),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.audio-play:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow:
        0 14px 45px rgba(102, 126, 234, 0.75),
        0 0 0 10px rgba(102, 126, 234, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.25);
    transform: scale(1.12) translateY(-3px);
    border-color: rgba(255, 255, 255, 1);
}

.audio-play:active {
    transform: scale(1.04);
}

.audio-progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.audio-time {
    color: #64748b;
    font-size: 0.75rem;
    min-width: 38px;
    text-align: center;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.audio-progress-bar {
    flex: 1;
    height: 5px;
    background: rgba(102, 126, 234, 0.12);
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    overflow: visible;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.audio-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    transition: width 0.1s linear;
    position: relative;
    box-shadow:
        0 0 12px rgba(102, 126, 234, 0.55),
        0 1px 4px rgba(102, 126, 234, 0.35);
}

.audio-progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.2),
        0 0 0 4px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: left 0.1s linear, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #667eea;
}

.audio-progress-bar:hover .audio-progress-handle {
    transform: translate(-50%, -50%) scale(1.25);
    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.25),
        0 0 0 5px rgba(102, 126, 234, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.audio-volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.12);
}

.audio-volume-btn {
    font-size: 0.95rem;
    color: #9ca3af;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.audio-volume-btn:hover {
    color: #667eea;
    transform: scale(1.15);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.25);
}

.audio-volume-slider {
    flex: 1;
}

.audio-volume-slider input[type="range"] {
    width: 100%;
    height: 5px;
    border-radius: 20px;
    background: rgba(102, 126, 234, 0.12);
    outline: none;
    -webkit-appearance: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.audio-volume-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 2px solid #667eea;
    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.2),
        0 0 0 4px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.audio-volume-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.25),
        0 0 0 5px rgba(102, 126, 234, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.audio-volume-slider input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 2px solid #667eea;
    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.2),
        0 0 0 4px rgba(102, 126, 234, 0.25);
}

.audio-settings-row {
    padding: 10px 0;
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.12);
}

.audio-toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.audio-toggle-label:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.18);
}

.audio-toggle-label input[type="checkbox"] {
    width: 17px;
    height: 17px;
    cursor: pointer;
    accent-color: #667eea;
}

.audio-toggle-text {
    color: #3b4a5a;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.audio-toggle-text i {
    color: #667eea;
    font-size: 0.85rem;
}

.audio-playlist {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.audio-player-content.show .audio-playlist {
    max-height: 180px;
    overflow-y: auto;
}

.audio-playlist-header {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.12);
}

.audio-playlist-header h4 {
    color: #1a202c;
    font-size: 0.9rem;
    font-weight: 900;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
}

.audio-playlist-header h4 i {
    font-size: 0.85rem;
    color: #667eea;
}

.audio-playlist-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 8px;
}

.audio-playlist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.audio-playlist-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audio-playlist-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 18px rgba(102, 126, 234, 0.25);
}

.audio-playlist-item:hover::before {
    opacity: 1;
}

.audio-playlist-item.active {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow:
        0 0 0 2px rgba(102, 126, 234, 0.12),
        0 3px 16px rgba(102, 126, 234, 0.3);
}

.audio-playlist-item.active::before {
    opacity: 1;
}

.playlist-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.playlist-item-info > i {
    color: #667eea;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.playlist-item-title {
    color: #1a202c;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.playlist-item-artist {
    color: #64748b;
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    font-weight: 600;
}

.playlist-item-play {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(102, 126, 234, 0.2);
    color: #9ca3af;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.playlist-item-play:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(102, 126, 234, 0.4);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.45);
}

/* Stunning Custom Scrollbar for Playlist - Purple Theme */
.audio-playlist-items::-webkit-scrollbar {
    width: 8px;
}

.audio-playlist-items::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.08);
    border-radius: 20px;
    margin: 6px 0;
    border: 1px solid rgba(102, 126, 234, 0.12);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}

.audio-playlist-items::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 0 15px rgba(102, 126, 234, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.audio-playlist-items::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2 0%, #667eea 100%);
    box-shadow:
        0 0 22px rgba(102, 126, 234, 0.75),
        0 0 12px rgba(118, 75, 162, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 1);
}

/* For Firefox */
.audio-playlist-items {
    scrollbar-width: thin;
    scrollbar-color: #667eea rgba(102, 126, 234, 0.08);
}

/* Hide audio element completely - it's controlled by JavaScript */
#audioElement {
    display: none !important;
}

/* Prevent download button on native controls */
audio::-webkit-media-controls-enclosure {
    overflow: hidden;
}

audio::-webkit-media-controls-panel {
    width: calc(100% + 32px);
}

audio::-internal-media-controls-download-button {
    display: none !important;
}

audio::-webkit-media-controls-download-button {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .audio-player-widget {
        bottom: 15px;
        right: 15px;
    }

    .audio-toggle-btn {
        width: 58px;
        height: 58px;
        font-size: 1.25rem;
    }

    .audio-toggle-btn i {
        font-size: 1.2rem;
    }

    .audio-player-content {
        width: calc(100vw - 30px);
        bottom: 80px;
        right: 0;
        padding: 20px;
        border-radius: 20px;
    }

    .audio-close-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        top: 14px;
        right: 14px;
    }

    .audio-info {
        gap: 14px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .audio-artwork {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .audio-title {
        font-size: 1rem;
    }

    .audio-artist {
        font-size: 0.85rem;
    }

    .audio-controls {
        gap: 16px;
        margin-bottom: 16px;
    }

    .audio-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .audio-play {
        width: 58px;
        height: 58px;
        font-size: 1.3rem;
    }

    .audio-progress-container {
        gap: 10px;
        margin-bottom: 14px;
    }

    .audio-time {
        font-size: 0.75rem;
        min-width: 40px;
    }

    .audio-progress-bar {
        height: 5px;
    }

    .audio-progress-handle {
        width: 14px;
        height: 14px;
    }

    .audio-volume-container {
        gap: 10px;
        padding-bottom: 14px;
        margin-bottom: 14px;
    }

    .audio-volume-btn {
        font-size: 1rem;
        width: 30px;
        height: 30px;
    }

    .audio-volume-slider input[type="range"] {
        height: 5px;
    }

    .audio-volume-slider input[type="range"]::-webkit-slider-thumb {
        width: 14px;
        height: 14px;
    }

    .audio-settings-row {
        padding: 10px 0;
        margin-bottom: 14px;
    }

    .audio-toggle-label {
        padding: 6px 10px;
    }

    .audio-toggle-label input[type="checkbox"] {
        width: 17px;
        height: 17px;
    }

    .audio-toggle-text {
        font-size: 0.85rem;
    }

    .audio-toggle-text i {
        font-size: 0.85rem;
    }

    .audio-player-content.show .audio-playlist {
        max-height: 200px;
    }

    .audio-playlist-header h4 {
        font-size: 0.95rem;
    }

    .audio-playlist-header h4 i {
        font-size: 0.9rem;
    }

    .audio-playlist-items {
        gap: 6px;
        padding-right: 8px;
    }

    .audio-playlist-item {
        padding: 10px 12px;
    }

    .playlist-item-info {
        gap: 10px;
    }

    .playlist-item-info > i {
        font-size: 0.95rem;
    }

    .playlist-item-title {
        font-size: 0.85rem;
    }

    .playlist-item-artist {
        font-size: 0.75rem;
    }

    .playlist-item-play {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .audio-playlist-items::-webkit-scrollbar {
        width: 8px;
    }
}

/* Extra small screens optimization */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 12px;
    }

    .logo h2 {
        font-size: 1.6rem;
    }

    .hamburger {
        width: 24px;
        height: 18px;
    }

    .nav-menu {
        top: 58px;
        height: calc(100vh - 58px);
        padding: 18px 12px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        bottom: 12px;
        left: 12px;
        font-size: 0.95rem;
    }
}
