/* ========================================
   SANKA LOEMBET - Urban Dance Brand
   Color scheme: Teal / Orange / Dark
   ======================================== */

:root {
    --teal: #0abab5;
    --teal-dark: #088f8b;
    --teal-light: #3ce8e3;
    --orange: #e87830;
    --orange-light: #ff9a52;
    --orange-dark: #c45a10;
    --dark: #0d1117;
    --dark-2: #131920;
    --dark-3: #1a2230;
    --dark-4: #243040;
    --white: #ffffff;
    --off-white: #f0f4f8;
    --gray: #8892a0;
    --gray-light: #b0b8c4;
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--dark); color: var(--white); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: var(--teal); color: var(--dark); }

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.loader { position: relative; display: flex; align-items: center; justify-content: center; }
.loader-circle {
    width: 80px; height: 80px;
    border: 3px solid transparent;
    border-top-color: var(--teal);
    border-right-color: var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}
.loader-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 8px;
    color: var(--white);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========================================
   NAVIGATION
   ======================================== */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}
#navbar.scrolled {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

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

.logo-main {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 6px;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link {
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gray-light);
    position: relative; padding: 6px 0;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transition: width 0.4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.btn-nav {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 6px;
}
.btn-nav::after { display: none; }
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(10, 186, 181, 0.4); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; padding: 8px; }
.nav-toggle span { width: 28px; height: 2px; background: var(--white); transition: all 0.3s ease; transform-origin: center; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 120px 40px 80px;
}

.hero-gradient {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(10, 186, 181, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(232, 120, 48, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(10, 186, 181, 0.08) 0%, transparent 40%);
}

.hero-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.shape {
    position: absolute; border-radius: 50%;
    animation: floatShape 8s ease-in-out infinite;
}
.shape-1 {
    width: 300px; height: 300px; top: 10%; right: -80px;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.1), transparent);
    animation-delay: 0s;
}
.shape-2 {
    width: 200px; height: 200px; bottom: 20%; left: -60px;
    background: linear-gradient(135deg, rgba(232, 120, 48, 0.1), transparent);
    animation-delay: 2s;
}
.shape-3 {
    width: 150px; height: 150px; top: 60%; right: 20%;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.06), transparent);
    animation-delay: 4s;
}
.shape-circle {
    width: 500px; height: 500px; top: -100px; left: -100px;
    border: 1px solid rgba(10, 186, 181, 0.08);
    animation: none;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-content {
    max-width: 1300px; margin: 0 auto; width: 100%;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 40px;
    position: relative; z-index: 2;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--teal);
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(10, 186, 181, 0.4); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(10, 186, 181, 0); }
}

.hero-title { margin-bottom: 24px; }
.line-1 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.95;
    letter-spacing: 6px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.line-2 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.95;
    letter-spacing: 6px;
    -webkit-text-stroke: 1px var(--teal);
    color: transparent;
    transition: all 0.4s ease;
}
.line-2:hover {
    -webkit-text-stroke: 0;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem; line-height: 1.7;
    color: var(--gray-light); margin-bottom: 10px;
    max-width: 540px; margin-left: auto; margin-right: auto;
}

.hero-buttons { display: flex; gap: 16px; align-items: center; justify-content: center; margin-bottom: 50px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px;
    font-family: var(--font-body);
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    border: none; border-radius: 8px;
    position: relative; overflow: hidden;
    transition: all 0.4s var(--ease);
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(10, 186, 181, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(10, 186, 181, 0.5);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-white {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3); }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { font-style: normal; transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Hero stats */
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 30px; }
.hero-stat { text-align: center; }
.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.hero-stat span {
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gray);
}
.hero-stat-divider {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, var(--teal), transparent);
}

/* Hero image */
.hero-visual { display: flex; justify-content: center; }
.hero-img-container {
    position: relative;
    width: 400px; height: 500px;
    border-radius: 20px;
    overflow: hidden;
}
.hero-img-container img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.hero-img-container:hover img { transform: scale(1.05); }
.hero-flyer {
    width: 380px; height: 560px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(10, 186, 181, 0.2), 0 0 0 1px rgba(10, 186, 181, 0.15);
}
.hero-video {
    width: 100%; max-width: 1100px; aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 186, 181, 0.2), 0 0 0 1px rgba(10, 186, 181, 0.15);
    background: var(--dark-3);
    margin: 0 auto 20px;
}
.hero-video iframe {
    width: 100%; height: 100%; border: none;
    border-radius: 16px;
}
.hero-img-frame {
    position: absolute; inset: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--teal), var(--orange)) 1;
    border-radius: 20px;
    pointer-events: none;
}

/* Scroll indicator */
.hero-scroll {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    margin-top: 40px;
    z-index: 2;
    animation: fadeInUp 1s 1.5s both;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--teal), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}
.hero-scroll span {
    font-size: 0.65rem; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gray);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 120px 40px; position: relative; }
.section-dark { background: var(--dark-2); }
.section-light { background: var(--dark); }
.section-accent {
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    position: relative; overflow: hidden;
}
.section-accent::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(10, 186, 181, 0.1) 0%, transparent 60%);
}

.container { max-width: 1200px; margin: 0 auto; }

.section-label {
    display: block;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}
.section-label.center { text-align: center; }
.section-label.light { color: var(--teal-light); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700; line-height: 1.1;
    letter-spacing: 1px;
}
.section-title.center { text-align: center; }

.text-accent {
    background: linear-gradient(135deg, var(--teal), var(--orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-center { text-align: center; margin-bottom: 60px; }

/* ========================================
   ABOUT
   ======================================== */
.about-layout {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 80px; align-items: center;
}

.about-images { position: relative; }
.about-img-main {
    width: 100%; border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.about-img-main img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.6s var(--ease); }
.about-img-main:hover img { transform: scale(1.03); }
.about-video {
    position: absolute; bottom: -40px; right: -30px;
    width: 260px; height: 180px; border-radius: 12px;
    overflow: hidden; border: 4px solid var(--dark-2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: var(--dark-3);
}
.about-video iframe {
    width: 100%; height: 100%; border: none;
    border-radius: 8px;
}

.about-text { padding: 20px 0; }
.about-lead {
    font-size: 1.1rem; line-height: 1.8;
    color: var(--off-white); margin-bottom: 16px;
}
.about-text p {
    font-size: 0.92rem; line-height: 1.8;
    color: var(--gray-light); margin-bottom: 14px;
}
.about-text strong { color: var(--teal); }
.about-img-mobile { display: none; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag {
    padding: 8px 18px; border-radius: 50px;
    border: 1px solid rgba(10, 186, 181, 0.3);
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--teal);
    transition: all 0.3s ease;
}
.tag:hover { background: var(--teal); color: var(--dark); }

/* ========================================
   MARQUEE
   ======================================== */
.marquee-strip {
    padding: 20px 0; overflow: hidden;
    background: linear-gradient(90deg, var(--teal), var(--orange));
}
.marquee-track {
    display: flex; align-items: center; gap: 40px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: var(--font-display);
    font-size: 1.4rem; letter-spacing: 4px;
    color: var(--dark);
}
.marquee-sep { font-size: 0.7rem !important; opacity: 0.4; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========================================
   EXPERTISE
   ======================================== */
.expertise-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.exp-card {
    background: var(--dark-2);
    padding: 36px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.exp-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.exp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 186, 181, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.exp-card:hover::before { transform: scaleX(1); }
.exp-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3; line-height: 1;
    margin-bottom: 16px;
}
.exp-card:hover .exp-number { opacity: 1; }
.exp-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 600;
    letter-spacing: 1px; margin-bottom: 10px;
}
.exp-card p { font-size: 0.88rem; line-height: 1.7; color: var(--gray-light); }

/* ========================================
   TIMELINE
   ======================================== */
.timeline {
    max-width: 700px; margin: 0 auto;
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: ''; position: absolute;
    top: 0; left: 7px;
    width: 2px; height: 100%;
    background: linear-gradient(to bottom, var(--teal), var(--orange), rgba(10, 186, 181, 0.1));
}
.tl-item { margin-bottom: 40px; position: relative; }
.tl-marker {
    position: absolute; left: -40px; top: 6px;
}
.tl-dot {
    width: 16px; height: 16px;
    background: var(--teal);
    border-radius: 50%;
    border: 3px solid var(--dark-2);
    transition: all 0.3s var(--ease-bounce);
}
.tl-item:hover .tl-dot {
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(10, 186, 181, 0.5);
}
.tl-card {
    background: var(--dark-3);
    padding: 24px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--ease);
}
.tl-card:hover {
    border-color: rgba(10, 186, 181, 0.2);
    transform: translateX(8px);
}
.tl-date {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--orange);
}
.tl-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 600;
    margin: 6px 0 8px; letter-spacing: 0.5px;
}
.tl-card p { font-size: 0.85rem; line-height: 1.7; color: var(--gray-light); }

/* ========================================
   GALLERY
   ======================================== */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}
.gallery-3 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 420px;
}
.gallery-3 .gal-tall { grid-row: span 1; }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-item {
    position: relative; overflow: hidden;
    border-radius: 12px; cursor: pointer;
}
.gal-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.4s ease;
    filter: brightness(0.85);
}
.gal-item:hover img { transform: scale(1.08); filter: brightness(1); }
.gal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 50%, rgba(10, 186, 181, 0.6));
    display: flex; align-items: flex-end; padding: 20px;
    opacity: 0; transition: opacity 0.4s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
    font-family: var(--font-heading);
    font-size: 1rem; letter-spacing: 3px;
    text-transform: uppercase; color: var(--white);
}

/* ========================================
   PROGRAMME MOVE & PROGRESS
   ======================================== */
/* Programme banner layout */
.programme-banner {
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative; z-index: 1;
}
.banner-img {
    width: 100%; height: auto;
    display: block;
    transition: transform 0.6s var(--ease);
}
.programme-banner:hover .banner-img { transform: scale(1.02); }

.programme-details {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 60px; align-items: start;
    position: relative; z-index: 1;
}
.programme-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.95;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--white), var(--teal-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.programme-sub {
    font-family: var(--font-heading);
    font-size: 1rem; letter-spacing: 3px;
    color: var(--orange);
}
.programme-desc {
    font-size: 1rem; line-height: 1.7;
    color: var(--gray-light); margin-bottom: 24px;
}
.programme-list { margin-bottom: 28px; }
.programme-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.92rem; line-height: 1.6;
    color: var(--off-white); margin-bottom: 12px;
}
.check {
    display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 50%; font-size: 0.7rem; color: var(--white);
    margin-top: 2px;
}
.programme-cta {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.programme-period {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(10, 186, 181, 0.1);
    border: 1px solid rgba(10, 186, 181, 0.3);
    border-radius: 8px; padding: 12px 24px;
}
.period-label {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gray);
}
.period-value {
    font-family: var(--font-display);
    font-size: 1.2rem; letter-spacing: 3px;
    color: var(--teal);
}

/* ========================================
   TESTIMONIAL
   ======================================== */
.testimonial-video {
    display: flex; justify-content: center;
    max-width: 540px; margin: 0 auto;
}
.testimonial-video iframe {
    width: 100%; min-width: 320px; height: 720px;
    border: none; border-radius: 12px;
    background: var(--dark-3);
}

/* ========================================
   TESTIMONIALS CAROUSEL
   ======================================== */
.testimonials-carousel {
    margin-top: 60px;
    overflow: hidden;
    display: flex; flex-direction: column; gap: 16px;
}
.tc-track {
    display: flex; gap: 16px;
    width: max-content;
}
.tc-track-left {
    animation: tcScrollLeft 80s linear infinite;
}
.tc-track-right {
    animation: tcScrollRight 80s linear infinite;
}
@keyframes tcScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes tcScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.tc-card {
    flex-shrink: 0;
    background: var(--dark-3);
    border: 1px solid rgba(10, 186, 181, 0.1);
    border-radius: 12px;
    padding: 20px 28px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-light);
    font-style: italic;
    max-width: 360px;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.tc-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.15);
    background: var(--dark-2);
    color: var(--off-white);
}
.tc-card span {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--teal);
}
.testimonials-carousel:hover .tc-track,
.tc-card:hover ~ .tc-track {
    animation-play-state: paused;
}

/* ========================================
   STUDIOS & JURY
   ======================================== */
.studios-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.studio-chip {
    padding: 20px 36px;
    background: var(--dark-3);
    border: 1px solid rgba(10, 186, 181, 0.15);
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s var(--ease);
}
.studio-chip:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(10, 186, 181, 0.15);
}
.studio-name {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 600;
    letter-spacing: 1px;
    color: var(--off-white);
}
.studio-location {
    font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--teal);
    margin-top: 4px;
}

.jury-badges {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 16px; margin-top: 24px;
}
.jury-badge {
    background: var(--dark-3);
    padding: 20px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s var(--ease);
    min-width: 180px;
}
.jury-badge:hover {
    border-color: rgba(232, 120, 48, 0.3);
    transform: translateY(-4px);
}
.jury-badge h4 {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 600;
    margin-bottom: 4px;
}
.jury-badge span {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--orange);
}

/* ========================================
   CONTACT
   ======================================== */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}
.contact-desc {
    font-size: 1.05rem; line-height: 1.7;
    color: var(--gray-light); margin-bottom: 32px;
}
.contact-info-list { margin-bottom: 32px; }
.contact-row {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 20px;
}
.contact-icon {
    width: 22px; height: 22px; color: var(--teal);
    flex-shrink: 0; margin-top: 3px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-row small {
    display: block; font-size: 0.7rem;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gray); margin-bottom: 2px;
}
.contact-row p { font-size: 0.95rem; color: var(--white); }

.social-row { display: flex; gap: 12px; }
.social-btn {
    width: 44px; height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
    background: linear-gradient(135deg, var(--teal), var(--orange));
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.3);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%; padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.15);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray); }
.form-field select { cursor: pointer; appearance: none; }
.form-field select option { background: var(--dark-2); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 40px 40px;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
}
.footer-brand p {
    font-size: 0.8rem; color: var(--gray);
    letter-spacing: 2px; margin-top: 4px;
}
.footer-copy p { font-size: 0.75rem; color: var(--gray); }

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal-up {
    opacity: 0; transform: translateY(50px);
    transition: all 0.7s var(--ease);
    transition-delay: var(--d, 0s);
}
.reveal-up.active { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0; transform: translateX(-50px);
    transition: all 0.7s var(--ease);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0; transform: translateX(50px);
    transition: all 0.7s var(--ease);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0; transform: scale(0.85);
    transition: all 0.8s var(--ease);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-img-container { width: 320px; height: 400px; }
    .hero-video { max-width: 560px; }
    .about-layout { grid-template-columns: 1fr; gap: 50px; }
    .about-img-main img { height: 400px; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .programme-details { grid-template-columns: 1fr; gap: 30px; }
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .gallery-3 { grid-template-columns: 1fr 1fr; grid-auto-rows: 350px; }
    .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
    .gal-tall { grid-row: span 2; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 80%; max-width: 380px; height: 100vh;
        background: var(--dark-2);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 28px; transition: right 0.5s var(--ease);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1.1rem; letter-spacing: 4px; }
    .section { padding: 80px 20px; }
    .hero { padding: 100px 20px 60px; }
    .hero-img-container { width: 260px; height: 340px; }
    .hero-flyer { width: 260px; height: 380px; }
    .hero-video { max-width: 100%; }
    .about-images { display: none; }
    .about-img-mobile {
        display: block;
        width: 100%; border-radius: 16px; overflow: hidden;
        margin-bottom: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }
    .about-img-mobile img {
        width: 100%; height: 350px; object-fit: cover;
        border-radius: 16px;
    }
    .expertise-grid { grid-template-columns: 1fr; }
    .gallery-mosaic, .gallery-3 { grid-template-columns: 1fr; grid-auto-rows: 350px; }
    .gal-tall, .gal-wide { grid-row: span 1; grid-column: span 1; }
    .programme-details { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .testimonial-video { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-img-container { width: 230px; height: 300px; }
    .studios-row { flex-direction: column; align-items: center; }
    .jury-badges { flex-direction: column; align-items: center; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--teal), var(--orange));
    border-radius: 4px;
}
