/* ============================================================
   CRAZISTUDIO — PREMIUM PODCAST STUDIO WEBSITE
   Image-heavy, studio-led, premium dark aesthetic
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
    --gold: #c9a227;
    --gold-light: #e2b93b;
    --gold-dim: rgba(201, 162, 39, 0.15);
    --dark: #080808;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --gray: #888888;
    --gray-light: #bbbbbb;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-10: rgba(255, 255, 255, 0.08);
    --font-head: 'Playfair Display', serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.2);
    --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background: var(--dark);
    color: var(--white-90);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: var(--font-body);
}

.gold {
    color: var(--gold);
}

/* ---- SCROLL PROGRESS ---- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ============================================================
   LOADER
   ============================================================ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--white);
}

.loader-logo span {
    color: var(--gold);
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--dark-4);
    margin: 24px auto 12px;
    border-radius: 2px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: var(--gold);
    animation: loadFill 2s ease forwards;
}

@keyframes loadFill {
    to {
        width: 100%;
    }
}

.loader-tag {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 0 40px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--white);
    white-space: nowrap;
    margin-right: auto;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-70);
    transition: color 0.3s;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: 8px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px;
    gap: 16px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-menu.open {
    transform: translateX(0);
    display: flex;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu a.mob-link {
    display: block;
    padding: 16px 0;
    font-size: 1.4rem;
    font-family: var(--font-head);
    color: var(--white);
    border-bottom: 1px solid var(--white-10);
    transition: color 0.3s;
}

.mobile-menu a.mob-link:hover {
    color: var(--gold);
}

.mob-book {
    margin-top: 24px;
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-primary.large {
    padding: 18px 36px;
    font-size: 1rem;
}

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

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.btn-ghost-light:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin-top: 16px;
    line-height: 1.7;
}

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

.section-header.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header.centered .section-desc {
    text-align: center;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(8, 8, 8, 0.82) 0%,
            rgba(8, 8, 8, 0.65) 35%,
            rgba(8, 8, 8, 0.15) 65%,
            rgba(8, 8, 8, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 680px;
    /* text stays left, image shows on right */
    margin-left: 0;
    padding-left: clamp(24px, 5vw, 80px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    padding: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-badge i {
    font-size: 0.65rem;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: none;
}

.hero-sub {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-sub strong {
    color: var(--white);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(8, 8, 8, 0.45);
    backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 28px;
    width: fit-content;
}

.h-stat {
    text-align: center;
    padding: 0 24px;
}

.h-stat .num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.h-stat .lbl {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

.h-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero thumbnails */
.hero-thumbs {
    position: absolute;
    right: 40px;
    bottom: 160px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    opacity: 0.6;
}

.thumb.active,
.thumb:hover {
    border-color: var(--gold);
    opacity: 1;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-40);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--white-40), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker-wrap {
    background: var(--gold);
    overflow: hidden;
    padding: 14px 0;
    border-top: none;
}

.ticker {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    width: max-content;
    animation: ticker 30s linear infinite;
}

.ticker span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
}

.ticker-dot {
    color: var(--dark);
    opacity: 0.5;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   ABOUT SPLIT
   ============================================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px;
    align-items: center;
}

.about-img-stack {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius);
    border: 4px solid var(--dark);
    box-shadow: var(--shadow);
}

.about-img-badge {
    position: absolute;
    top: 24px;
    left: -20px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
}

.badge-txt {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.about-desc {
    color: var(--gray-light);
    margin: 16px 0 32px;
    line-height: 1.8;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--dark-3);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

.pillar i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pillar strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.pillar p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* ============================================================
   STUDIOS SECTION
   ============================================================ */
.studios-section {
    padding: 100px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Featured room */
.studio-featured {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-3);
    margin-bottom: 48px;
    box-shadow: var(--shadow);
}

.sf-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.sf-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.studio-featured:hover .sf-img img {
    transform: scale(1.03);
}

.sf-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(26, 26, 26, 0.6) 100%);
}

.sf-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sf-info {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sf-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.sf-info h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.sf-info>p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.sf-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.sf-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--white-70);
}

.sf-features i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* Studio grid */
.studio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.studio-card {
    background: var(--dark-3);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.studio-card:hover {
    transform: translateY(-6px);
}

.sc-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.sc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.studio-card:hover .sc-img img {
    transform: scale(1.08);
}

.sc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.studio-card:hover .sc-overlay {
    opacity: 1;
}

.sc-book {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.3s;
}

.sc-book:hover {
    background: var(--gold-light);
}

.sc-info {
    padding: 20px;
}

.sc-tag {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.sc-info h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.sc-info p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.sc-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sc-specs span {
    font-size: 0.75rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.sc-specs i {
    color: var(--gold);
    font-size: 0.7rem;
}

/* Studio CTA strip */
.studio-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px 40px;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-lg);
}

.scs-text strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.scs-text p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience-section {
    padding: 100px 40px;
    background: var(--dark-2);
}

.audience-section .section-header {
    margin-bottom: 48px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.audience-card {
    position: relative;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s;
}

.audience-card:hover {
    transform: scale(1.02);
}

.ac-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(8, 8, 8, 0.97) 0%,
            rgba(8, 8, 8, 0.6) 45%,
            rgba(8, 8, 8, 0.05) 100%);
    transition: background 0.5s ease;
}

.audience-card:hover .ac-overlay {
    background: linear-gradient(to top,
            rgba(8, 8, 8, 0.98) 0%,
            rgba(8, 8, 8, 0.75) 55%,
            rgba(8, 8, 8, 0.2) 100%);
}

.ac-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.ac-content i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.ac-content h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.ac-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 14px;
}

.ac-content ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ac-content li {
    font-size: 0.8rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ac-content li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.6rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 100px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.services-flow {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-3);
}

.sf-bg-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.sf-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.sfb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.4) 0%, rgba(26, 26, 26, 1) 100%);
}

.services-steps {
    padding: 0 40px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.service-step {
    background: var(--dark-4);
    border-radius: var(--radius);
    padding: 24px 20px;
    border-top: 2px solid var(--gold);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.ss-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(201, 162, 39, 0.2);
    line-height: 1;
    margin-bottom: 8px;
}

.ss-icon {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.ss-text h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}

.ss-text p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(8, 8, 8, 0.96) 0%,
            rgba(8, 8, 8, 0.92) 50%,
            rgba(8, 8, 8, 0.85) 100%);
}

.stats-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.stats-content .section-title {
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.stat-num {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ============================================================
   GEAR SECTION
   ============================================================ */
.gear-section {
    padding: 100px 40px;
    background: var(--dark-2);
}

.gear-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
}

.gear-visual {
    position: relative;
}

.gear-main-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.gear-img-2 {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 50%;
}

.gear-img-2 img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius);
    border: 4px solid var(--dark-2);
    box-shadow: var(--shadow);
}

.gear-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gear-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--dark-3);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    transition: background 0.3s;
}

.gear-item:hover {
    background: var(--dark-4);
}

.gi-icon {
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.gi-text h4 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 600;
}

.gi-text p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   GALLERY SECTION — MOSAIC
   ============================================================ */
.gallery-section {
    padding: 100px 40px;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    max-width: 1280px;
    margin: 0 auto 40px;
}

.gm-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--dark-3);
    cursor: pointer;
}

.gm-item.gm-tall {
    grid-row: span 2;
}

.gm-item.gm-wide {
    grid-column: span 2;
}

.gm-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
    min-height: 220px;
}

.gm-item:hover img {
    transform: scale(1.06);
}

.gm-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.9), transparent);
    padding: 24px 16px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white-70);
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.3s;
}

.gm-item:hover .gm-caption {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.process-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.proc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(8, 8, 8, 0.94) 0%,
            rgba(8, 8, 8, 0.88) 100%);
}

.process-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.process-content .section-title {
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.proc-step {
    background: rgba(8, 8, 8, 0.6);
    border-radius: var(--radius);
    padding: 28px 20px;
    width: 180px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: all 0.3s;
}

.proc-step:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
}

.ps-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
}

.ps-content h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}

.ps-content p {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
}

.proc-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 40px;
    opacity: 0.5;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-section {
    padding: 100px 40px;
    background: var(--dark-2);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.pkg-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.pkg-card.featured {
    border-color: var(--gold);
}

.pkg-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pkg-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.pkg-card:hover .pkg-img img {
    transform: scale(1.05);
}

.pkg-content {
    padding: 28px 24px;
}

.pkg-tag {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 8px;
}

.pkg-tag.gold {
    color: var(--gold);
}

.pkg-content h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.pkg-sub {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

.pkg-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--white-70);
}

.pkg-features i {
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pkg-btn {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--dark);
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.2s;
}

.pkg-card.featured .pkg-btn {
    background: var(--gold);
}

.pkg-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms-section {
    padding: 60px 40px;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.platforms-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1280px;
    margin: 24px auto 0;
}

.plat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 8px;
    transition: border-color 0.3s, transform 0.3s;
}

.plat:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.plat i {
    font-size: 1.2rem;
    color: var(--gold);
}

.plat span {
    font-size: 0.82rem;
    color: var(--gray-light);
    font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
}

.testi-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.testi-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(8, 8, 8, 0.93) 0%,
            rgba(8, 8, 8, 0.9) 100%);
}

.testi-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testi-content .section-title {
    margin-bottom: 48px;
}

.testi-slider {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testi-card {
    min-width: 100%;
    padding: 44px 48px;
    background: rgba(8, 8, 8, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-align: left;
    backdrop-filter: blur(16px);
}

.tc-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
}

.tc-quote {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    font-family: var(--font-head);
    font-weight: 400;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.tc-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.tc-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.tc-prev,
.tc-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tc-prev:hover,
.tc-next:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.tc-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   BIG CTA
   ============================================================ */
.big-cta {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
}

.bcta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bcta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.bcta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(8, 8, 8, 0.9) 0%,
            rgba(8, 8, 8, 0.7) 50%,
            rgba(8, 8, 8, 0.45) 100%);
}

.bcta-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-left: clamp(24px, 6vw, 100px);
    text-align: left;
}

.bcta-content h2 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.bcta-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.bcta-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.bcta-note {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ============================================================
   STUDIO FACILITIES SECTION
   ============================================================ */
.facilities-section {
    padding: 100px 40px;
    background: var(--dark);
    max-width: 100%;
}

.facilities-section .section-header {
    margin-bottom: 56px;
}

/* Hero 3 cards */
.fac-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto 56px;
}

.fac-hero-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    transition: all 0.3s;
}

.fac-hero-card:hover {
    border-color: rgba(201, 162, 39, 0.35);
    transform: translateY(-4px);
}

.fac-hero-card.fhc-featured {
    background: var(--gold-dim);
    border-color: rgba(201, 162, 39, 0.35);
}

.fhc-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 162, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.fac-hero-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.fac-hero-card p {
    font-size: 0.88rem;
    color: var(--gray-light);
    line-height: 1.7;
}

.fhc-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Full 8-item grid */
.fac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto 56px;
}

.fac-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: var(--dark-3);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s, transform 0.3s;
}

.fac-item:hover {
    border-color: rgba(201, 162, 39, 0.25);
    transform: translateY(-3px);
}

.fi-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.fi-text h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.fi-text p {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Facilities CTA */
.fac-cta {
    max-width: 1280px;
    margin: 0 auto;
}

.fac-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 44px 48px;
    background: linear-gradient(105deg, var(--dark-3) 0%, rgba(201, 162, 39, 0.08) 100%);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: var(--radius-lg);
}

.fac-cta-text h3 {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.fac-cta-text p {
    font-size: 0.9rem;
    color: var(--gray-light);
    max-width: 440px;
}

/* ============================================================
   BOOKING SECTION (Crazistudio style)
   ============================================================ */
.booking-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.booking-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.booking-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(8, 8, 8, 0.97) 0%,
            rgba(8, 8, 8, 0.92) 45%,
            rgba(8, 8, 8, 0.6) 75%,
            rgba(8, 8, 8, 0.3) 100%);
}

.booking-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    align-items: center;
}

/* Left: booking info */
.booking-info {
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin: 12px 0 16px;
}

.booking-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 420px;
}

/* Quick contact cards */
.bk-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.bk-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.bk-card:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
    transform: translateX(4px);
}

.bk-card.whatsapp:hover .bk-card-icon {
    background: #25d366;
    color: #fff;
}

.bk-card.call:hover .bk-card-icon {
    background: var(--gold);
    color: var(--dark);
}

.bk-card.email:hover .bk-card-icon {
    background: var(--gold);
    color: var(--dark);
}

.bk-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    transition: all 0.3s;
}

.bk-card-text {
    flex: 1;
}

.bk-card-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
}

.bk-card-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.bk-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    transition: color 0.3s;
}

.bk-card:hover .bk-arrow {
    color: var(--gold);
}

/* Location & hours */
.bk-locations {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.bk-loc {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.bk-loc i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 2px;
}

.bk-loc strong {
    display: block;
    font-size: 0.8rem;
    color: var(--white);
}

.bk-loc span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}

.bk-hours {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.bk-hours i {
    color: var(--gold);
}

/* Right: booking form */
.booking-form-wrap {
    background: rgba(14, 14, 14, 0.82);
    backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    height: fit-content;
}

.bk-form-header {
    margin-bottom: 24px;
}

.bk-form-header h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 6px;
}

.bk-form-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.bk-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bk-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bk-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bk-field.bk-full {
    grid-column: 1 / -1;
}

.bk-field label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bk-field label i {
    color: var(--gold);
    font-size: 0.7rem;
}

.bk-field input,
.bk-field select,
.bk-field textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #908484;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: var(--font-body);
    transition: all 0.3s;
    width: 100%;
    appearance: none;
}

.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.bk-field input::placeholder,
.bk-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.bk-field input[type="date"] {
    color-scheme: dark;
}

/* Section divider inside form */
.bk-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(201, 162, 39, 0.7);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bk-divider::before,
.bk-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* Submit row */
.bk-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 6px;
    flex-wrap: wrap;
}

.bk-submit-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.bk-submit-note i {
    color: var(--gold);
}

.bk-submit-note strong {
    color: rgba(255, 255, 255, 0.65);
}

.bk-submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.bk-submit-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.bk-submit-btn i {
    font-size: 1rem;
}

/* form msg */
.form-msg {
    font-size: 0.85rem;
    padding: 6px 0;
}

.form-msg.success {
    color: #4caf50;
}

.form-msg.error {
    color: #f44336;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 40px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 300px;
}

.footer-unit {
    margin-top: 8px;
}

.footer-unit strong {
    color: var(--white-70);
}

.footer h4 {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links li,
.footer-services li {
    padding: 5px 0;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: color 0.3s;
}

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

.footer-services li {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-contact p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-contact i {
    color: var(--gold);
    width: 16px;
}

.footer-contact a {
    color: var(--gray-light);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--gray);
}

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

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: floatBob 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
    .studio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }

    .gm-item.gm-wide {
        grid-column: span 2;
    }

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

@media (max-width: 900px) {
    #navbar {
        padding: 0 24px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-content {
        padding-left: 24px;
        max-width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        padding: 16px 20px;
    }

    .h-stat {
        padding: 8px 16px;
    }

    .hero-thumbs {
        display: none;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 24px;
    }

    .about-img-stack {
        padding-bottom: 40px;
        padding-right: 40px;
    }

    .studios-section {
        padding: 60px 24px;
    }

    .studio-featured {
        grid-template-columns: 1fr;
    }

    .studio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .studio-cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audience-card {
        aspect-ratio: 4/3;
    }

    .services-section {
        padding: 60px 24px;
    }

    .services-steps {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px 32px;
        margin-top: -20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gear-section {
        padding: 60px 24px;
    }

    .gear-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gear-img-2 {
        display: none;
    }

    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }

    .gm-item.gm-tall {
        grid-row: span 1;
    }

    .gm-item.gm-wide {
        grid-column: span 2;
    }

    .process-steps {
        gap: 12px;
    }

    .proc-step {
        width: 150px;
        padding: 20px 16px;
    }

    .proc-arrow {
        display: none;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .testimonials-section {
        padding: 60px 24px;
    }

    .testi-card {
        padding: 32px 24px;
    }

    .fac-hero-grid {
        grid-template-columns: 1fr;
    }

    .fac-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fac-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .booking-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .booking-info {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-section {
        padding: 60px 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer {
        padding: 60px 24px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .big-cta {
        padding: 80px 24px;
    }

    .bcta-content {
        margin-left: 0;
        text-align: left;
    }

    .bcta-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-stats {
        gap: 0;
    }

    .h-stat-divider {
        height: 30px;
    }

    .h-stat {
        padding: 6px 12px;
    }

    .h-stat .num {
        font-size: 1.3rem;
    }

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

    .services-steps {
        grid-template-columns: 1fr;
    }

    .stats-section {
        padding: 60px 24px;
    }

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

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

    .gm-item.gm-wide {
        grid-column: span 2;
    }

    .gm-item.gm-tall {
        grid-row: span 1;
    }

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

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

    .bk-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .bk-submit-btn {
        justify-content: center;
    }

    .booking-form-wrap {
        padding: 28px 20px;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

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

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

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

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .proc-step {
        width: 100%;
        max-width: 300px;
    }

    .about-img-badge {
        left: 0;
    }

    .hero-actions {
        flex-direction: column;
    }
}