/* ============================================
   ARYAN DANCE STUDIO
   Custom CSS - Premium Black Theme
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #D80E7E;
    --primary-dark: #b8184d;
    --primary-light: #ff2d6f;
    --dark-bg: #000000;
    --dark-bg-2: #050505;
    --dark-navy: #0a0a0a;
    --light-bg: #f1f3ff;
    --light-bg-2: #e8eaf5;
    --text-dark: #0a0e27;
    --text-gray: #6b7280;
    --text-light: #d1d5db;
    --white: #ffffff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;
}

/* ===== SMOOTH SCROLL & BASE ===== */
html {
    scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    cursor: none;
}

a,
button,
input,
select,
textarea {
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-padding {
    padding: 100px 0;
}

/* ===== CUSTOM CURSOR ===== */
.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    mix-blend-mode: difference;
}

.cb-cursor.visible {
    opacity: 1;
}

.cb-cursor.cursor-hover {
    width: 55px;
    height: 55px;
    background: rgba(216, 14, 126, 0.15);
    border-color: rgba(216, 14, 126, 0.6);
}

.cb-cursor.cursor-link {
    width: 70px;
    height: 70px;
    background: rgba(216, 14, 126, 0.12);
    border-color: var(--primary);
}

.cb-cursor-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cb-cursor.cursor-link .cb-cursor-text {
    opacity: 1;
}

/* Dot cursor (inner) */
.cb-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cb-cursor.cursor-hover::after,
.cb-cursor.cursor-link::after {
    width: 0;
    height: 0;
    opacity: 0;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.6s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 3px solid rgba(216, 14, 126, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.preloader-text {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 15px 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.brand-icon:hover {
    transform: scale(1.15) rotate(10deg);
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.brand-dot {
    color: var(--primary);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
}

.navbar-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.navbar .dropdown-menu {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 10px 0;
    min-width: 200px;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 20px;
    font-size: 14px;
    transition: var(--transition);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background: rgba(216, 14, 126, 0.12);
    color: var(--primary);
    padding-left: 25px;
}

.btn-register {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-register:hover::before {
    width: 300px;
    height: 300px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(216, 14, 126, 0.45);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== SECTION BADGES ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 14, 39, 0.06);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-badge.badge-dark {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.section-badge.badge-center {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.section-title-main {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #050505 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-smoke-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(216, 14, 126, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(80, 30, 100, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(216, 14, 126, 0.12);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(216, 14, 126, 0.25);
}

.hero-title {
    margin-bottom: 25px;
}

.hero-title-line1 {
    display: block;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.hero-title-line2 {
    display: block;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.hero-title-line2 .hero-sub {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    margin-left: 10px;
}

.hero-title-line3 {
    display: block;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.2;
    opacity: 0.95;
}

.hero-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-features {
    margin-bottom: 35px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-feature-item i {
    color: var(--primary);
    font-size: 16px;
}

.btn-hero-cta {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-hero-cta:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero-cta:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(216, 14, 126, 0.45);
}

.btn-hero-cta i {
    transition: transform 0.3s ease;
}

.btn-hero-cta:hover i {
    transform: translate(3px, -3px);
}

/* Hero image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-dancer-img {
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(216, 14, 126, 0.2));
}

.hero-video-btn {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: none;
    z-index: 3;
    transition: var(--transition);
}

.hero-video-btn:hover {
    transform: scale(1.1);
}

.video-play-pulse {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.hero-floating-card {
    position: absolute;
    bottom: 15%;
    left: 5%;
    background: var(--primary);
    padding: 20px;
    border-radius: var(--radius-lg);
    color: var(--white);
    z-index: 3;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.hero-floating-card .floating-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 2px;
}

.hero-floating-card .floating-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-floating-card>i {
    font-size: 20px;
}

.hero-floating-card .floating-rating {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-rating .stars {
    margin-bottom: 4px;
}

.floating-rating .stars i {
    color: #fbbf24;
    font-size: 14px;
}

.floating-rating span {
    font-size: 12px;
    opacity: 0.85;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--light-bg);
}

.about-images {
    position: relative;
    display: flex;
    gap: 20px;
    min-height: 500px;
}

.about-img-arch {
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    flex: 1;
}

.about-img-1 {
    max-width: 220px;
}

.about-img-2 {
    max-width: 280px;
    margin-top: 40px;
}

.about-img-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-img-arch:hover img {
    transform: scale(1.05);
}

.about-floating-card {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    color: var(--white);
    z-index: 3;
    min-width: 200px;
}

.about-floating-card .floating-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.about-floating-card .floating-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-floating-card>i {
    font-size: 20px;
}

.about-floating-card .floating-rating {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.about-content {
    padding-left: 40px;
}

.about-checklist {
    margin-bottom: 30px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: var(--transition);
}

.check-item:hover {
    padding-left: 5px;
}

.check-item i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.about-stats {
    margin-bottom: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-block {
    text-align: center;
}

.stat-number {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.about-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-avatars {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-stack img:hover {
    transform: translateY(-4px);
    z-index: 2;
}

.avatar-info .stars i {
    color: var(--primary);
    font-size: 14px;
}

.avatar-info span {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.programs-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.program-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(216, 14, 126, 0.15);
}

.program-card-img {
    height: 350px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.program-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.program-card:hover .program-card-img img {
    transform: scale(1.1);
}

.program-card-body {
    padding: 20px 5px;
}

.program-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.program-card-body h3 a {
    color: var(--white);
    transition: var(--transition);
}

.program-card-body h3 a:hover {
    color: var(--primary);
}

.program-card-body p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    margin: 0;
}

.programs-bottom-bar {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.programs-bottom-bar p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 15px;
}

.programs-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-score {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.programs-rating .stars i {
    color: var(--primary);
    font-size: 16px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== EXPERTISE SECTION ===== */
.expertise-section {
    background: var(--light-bg);
}

.expertise-list {
    margin-bottom: 30px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: var(--transition);
}

.expertise-item:hover {
    padding-left: 5px;
}

.expertise-item i {
    color: var(--primary);
    font-size: 16px;
}

.progress-bars {
    margin-top: 30px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.progress-bar-wrapper {
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
    width: 0;
    transition: width 1.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.expertise-images {
    position: relative;
    padding-left: 40px;
}

.expertise-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.expertise-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.expertise-img-main:hover img {
    transform: scale(1.03);
}

.expertise-img-overlap {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.expertise-img-overlap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.expertise-spinning-badge {
    position: absolute;
    bottom: 25%;
    right: -10%;
    width: 130px;
    height: 130px;
}

.spinning-text {
    width: 100%;
    height: 100%;
    animation: spinSlow 12s linear infinite;
    fill: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.spinning-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--light-bg);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.pricing-featured {
    background: var(--dark-bg);
    border-color: rgba(216, 14, 126, 0.2);
}

.pricing-featured .pricing-badge-label {
    background: rgba(216, 14, 126, 0.2);
    color: var(--primary);
}

.pricing-featured .pricing-price {
    color: var(--white);
}

.pricing-featured .pricing-desc {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-featured .pricing-features-title {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-featured .pricing-icon {
    color: rgba(255, 255, 255, 0.06);
}

.pricing-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 36px;
    color: rgba(0, 0, 0, 0.04);
}

.pricing-badge-label {
    display: inline-block;
    background: rgba(10, 14, 39, 0.06);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
}

.pricing-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
}

.btn-pricing {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-pricing:hover::before {
    width: 400px;
    height: 400px;
}

.btn-pricing:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(216, 14, 126, 0.4);
}

.pricing-features-title {
    font-size: 16px;
    font-weight: 700;
    margin: 25px 0 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 16px;
}

.pricing-info-bar {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pricing-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.pricing-info-item i {
    color: var(--primary);
    font-size: 20px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    background: linear-gradient(180deg, #000000 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.why-choose-list {
    margin-top: 20px;
}

.why-choose-dancer img {
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(5deg);
}

.feature-box h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    background: var(--light-bg);
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.event-card-img {
    height: 280px;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.event-card:hover .event-card-img img {
    transform: scale(1.08);
}

.event-card-body {
    padding: 25px;
}

.event-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.event-card-body h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.event-card-body h3 a:hover {
    color: var(--primary);
}

.event-card-body p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1504609813442-a8924e83f76e?w=1600&h=900&fit=crop') center/cover no-repeat;
    opacity: 0.12;
}

.testimonial-info-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 35px;
    color: var(--white);
    text-align: center;
}

.testimonial-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.testimonial-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.25);
    margin-left: -10px;
    object-fit: cover;
}

.testimonial-avatars img:first-child {
    margin-left: 0;
}

.testimonial-stars {
    margin-bottom: 8px;
}

.testimonial-stars i {
    color: var(--primary);
    font-size: 18px;
}

.testimonial-rate-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.testimonial-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.phone-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.testimonial-phone a {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.testimonial-tagline {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.testimonial-slider-area {
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeSlide 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-review-stars {
    margin-bottom: 20px;
}

.testimonial-review-stars i {
    color: var(--primary);
    font-size: 20px;
}

.testimonial-slide blockquote {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.testimonial-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 10px;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: var(--white);
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 25px 5px;
}

.blog-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-body h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-card-body h3 a:hover {
    color: var(--primary);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--primary);
    gap: 10px;
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
    padding: 0;
    overflow: hidden;
}

.gallery-strip-inner {
    display: flex;
    gap: 15px;
}

.gallery-item {
    flex: 0 0 calc(100% / 6);
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s ease;
    filter: grayscale(30%);
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: grayscale(0%) brightness(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    color: var(--white);
}

.footer-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.footer-brand {
    text-decoration: none;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
    padding-left: 3px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 16px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-newsletter {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}

.footer-newsletter:focus-within {
    border-color: rgba(216, 14, 126, 0.4);
}

.footer-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    font-family: var(--font-main);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter button {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    cursor: none;
    margin: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter button:hover {
    background: var(--primary-light);
    transform: rotate(45deg);
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(216, 14, 126, 0.45);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(216, 14, 126, 0.5);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-element {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0) !important;
}

/* Staggered delays for cards/items in a row */
.row .reveal-element:nth-child(1) {
    transition-delay: 0s;
}

.row .reveal-element:nth-child(2) {
    transition-delay: 0.12s;
}

.row .reveal-element:nth-child(3) {
    transition-delay: 0.24s;
}

.row .reveal-element:nth-child(4) {
    transition-delay: 0.36s;
}

/* Feature boxes stagger */
.why-choose-features .reveal-element:nth-child(1) {
    transition-delay: 0s;
}

.why-choose-features .reveal-element:nth-child(2) {
    transition-delay: 0.1s;
}

.why-choose-features .reveal-element:nth-child(3) {
    transition-delay: 0.2s;
}

.why-choose-features .reveal-element:nth-child(4) {
    transition-delay: 0.3s;
}

/* Slide-in left variant */
.about-img-1.reveal-element {
    transform: translateX(-40px);
}

.about-img-2.reveal-element {
    transform: translateX(-30px) translateY(20px);
    transition-delay: 0.15s;
}

.expertise-img-main.reveal-element {
    transform: translateX(50px);
}

.expertise-img-overlap.reveal-element {
    transform: translateY(30px) scale(0.9);
    transition-delay: 0.3s;
}

.testimonial-info-card.reveal-element {
    transform: translateX(-40px);
}

.testimonial-slider-area.reveal-element {
    transform: translateX(40px);
    transition-delay: 0.15s;
}

/* Gallery stagger */
.gallery-item.reveal-element:nth-child(1) {
    transition-delay: 0s;
}

.gallery-item.reveal-element:nth-child(2) {
    transition-delay: 0.08s;
}

.gallery-item.reveal-element:nth-child(3) {
    transition-delay: 0.16s;
}

.gallery-item.reveal-element:nth-child(4) {
    transition-delay: 0.24s;
}

.gallery-item.reveal-element:nth-child(5) {
    transition-delay: 0.32s;
}

.gallery-item.reveal-element:nth-child(6) {
    transition-delay: 0.4s;
}

/* Check items stagger */
.check-item.reveal-element:nth-child(odd) {
    transform: translateX(-20px);
}

.check-item.reveal-element:nth-child(even) {
    transform: translateX(-20px);
    transition-delay: 0.08s;
}

/* Scale-in for floating cards  */
.about-floating-card.reveal-element {
    transform: translateY(20px) scale(0.85);
    transition-delay: 0.35s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-dancer-img {
        max-height: 400px;
    }

    .hero-floating-card {
        display: none;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-images {
        min-height: 400px;
        justify-content: center;
    }

    .about-img-1 {
        max-width: 180px;
    }

    .about-img-2 {
        max-width: 220px;
    }

    .expertise-images {
        padding-left: 0;
        margin-top: 30px;
    }

    .why-choose-features {
        margin-top: 30px;
    }

    .testimonial-nav {
        position: static;
        margin-top: 25px;
    }

    .cb-cursor {
        display: none !important;
    }

    body {
        cursor: auto;
    }

    a,
    button,
    input,
    select,
    textarea {
        cursor: auto;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-title-line1,
    .hero-title-line2 {
        font-size: 40px;
    }

    .hero-title-line3 {
        font-size: 28px;
    }

    .hero-title-line2 .hero-sub {
        font-size: 22px;
    }

    .hero-video-btn {
        display: none;
    }

    .about-images {
        gap: 10px;
    }

    .about-img-1 {
        max-width: 140px;
    }

    .about-img-2 {
        max-width: 180px;
    }

    .about-floating-card {
        display: none;
    }

    .about-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-number {
        font-size: 32px;
    }

    .expertise-img-overlap {
        width: 180px;
        right: 0;
    }

    .expertise-spinning-badge {
        display: none;
    }

    .pricing-info-bar {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .gallery-item {
        flex: 0 0 50%;
    }

    .event-meta {
        flex-direction: column;
        gap: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 575px) {

    .hero-title-line1,
    .hero-title-line2 {
        font-size: 32px;
    }

    .hero-title-line3 {
        font-size: 22px;
    }

    .hero-title-line2 .hero-sub {
        font-size: 18px;
        display: block;
        margin-left: 0;
    }

    .gallery-item {
        flex: 0 0 100%;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}