/* =============================================
   Przebudzenie Świadomości — Celestial Design System
   ============================================= */

/* --- Google Fonts: loaded async via layout.php preload --- */

/* --- CSS Custom Properties --- */
:root {
    --bg-dark: #0a0a0f;
    --bg-dark-alt: #0d0d14;
    --bg-card: #f5f0e1;
    --bg-card-alt: #ede5d0;
    --gold: #c9a84c;
    --gold-light: #d4af37;
    --gold-bright: #f0d060;
    --gold-dim: #8a7330;
    --white: #ffffff;
    --white-muted: rgba(255, 255, 255, 0.75);
    --white-faint: rgba(255, 255, 255, 0.45);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --max-width: 1200px;
    --section-pad: 100px;
    --transition: 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(201, 168, 76, 0.15);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utility --- */
.gold-text {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 30px;
}

.gold-line.centered {
    margin-left: auto;
    margin-right: auto;
}

/* --- Fade-in Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    cursor: pointer;
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition), border-color var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(201, 168, 76, 0.1);
    border-bottom-color: rgba(201, 168, 76, 0.2);
    padding: 14px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--white);
    flex-shrink: 0;
    line-height: 1.1;
    white-space: nowrap;
}

.nav-logo span {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo .logo-img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white-muted);
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 16px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2px;
}

.lang-btn {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    padding: 4px 12px !important;
    border-radius: 16px;
    color: var(--white-faint) !important;
    transition: all var(--transition);
    letter-spacing: 1px;
}

.lang-btn::after {
    display: none !important;
}

.lang-btn.active {
    background: var(--gold) !important;
    color: var(--bg-dark) !important;
}

.lang-btn:hover:not(.active) {
    color: var(--gold-light) !important;
}

/* Active nav link */
.nav-links>a.active,
.nav-dropdown-toggle.active {
    color: var(--gold) !important;
}

.nav-links>a.active::after {
    width: 100%;
}

/* Nav CTA Button */
.nav-cta {
    background: var(--gold) !important;
    color: var(--bg-dark) !important;
    padding: 8px 20px !important;
    border-radius: 24px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform var(--transition);
    flex-shrink: 0;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: rgba(10, 10, 15, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    z-index: 1002;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px !important;
    font-size: 0.85rem;
    color: var(--white-muted) !important;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    color: var(--gold-light) !important;
    background: rgba(201, 168, 76, 0.06);
    padding-left: 24px !important;
}

.nav-dropdown-menu a.active {
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.08);
}

/* =============================================
   SUBPAGE CONTENT LAYOUT
   ============================================= */
.subpage-hero {
    padding: 140px 0 60px;
    position: relative;
    text-align: center;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.subpage-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--gold);
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.subpage-content {
    padding: 60px 0 80px;
}

.subpage-content .container {
    max-width: 860px;
}

.subpage-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var(--gold-light);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.subpage-content h2:first-child {
    margin-top: 0;
}

.subpage-content p {
    color: var(--white-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.subpage-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.subpage-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--white-muted);
    line-height: 1.7;
}

.subpage-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8em;
}

.subpage-cta {
    text-align: center;
    padding: 60px 0 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
}

.subpage-cta h2 {
    border: none !important;
    text-align: center;
}

/* Support Areas Cards */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.support-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}

.support-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.1);
}

.support-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.support-card p {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.support-card .card-arrow {
    display: inline-block;
    margin-top: 16px;
    color: var(--gold-dim);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.support-card:hover .card-arrow {
    color: var(--gold);
}

/* Mobile Nav */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 120px 0 60px;
}

/* Starfield background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 65%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 10%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 40%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 15% 85%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 45%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 75%, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    animation: twinkle 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes twinkle {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* Gold nebula glow */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    column-gap: 60px;
    row-gap: 8px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
}

.hero-motto {
    grid-column: 1 / -1;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 16px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--white-muted);
    margin-bottom: 12px;
    line-height: 1.8;
}

.hero-text {
    font-size: 0.95rem;
    color: var(--white-faint);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Soft pulsing glow only on edges (no solid background behind transparent PNG) */
.hero-image::before {
    content: '';
    position: absolute;
    inset: 4px;
    max-width: 412px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow:
        0 0 25px rgba(201, 168, 76, 0.2),
        0 0 50px rgba(201, 168, 76, 0.1),
        0 0 80px rgba(201, 168, 76, 0.06);
    animation: glowPulse 4s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(201, 168, 76, 0.1),
        0 0 40px rgba(201, 168, 76, 0.08),
        inset 0 0 0 1px rgba(201, 168, 76, 0.15);
    object-fit: cover;
    max-height: 720px;
    position: relative;
    z-index: 1;
}

/* =============================================
   GOLD GLITTER DIVIDER
   ============================================= */
.glitter-divider {
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(201, 168, 76, 0.1) 10%,
            rgba(201, 168, 76, 0.4) 20%,
            rgba(240, 208, 96, 0.8) 35%,
            var(--gold-bright) 50%,
            rgba(240, 208, 96, 0.8) 65%,
            rgba(201, 168, 76, 0.4) 80%,
            rgba(201, 168, 76, 0.1) 90%,
            transparent 100%);
    position: relative;
    overflow: hidden;
}

.glitter-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* =============================================
   STATS
   ============================================= */
.stats {
    padding: 80px 0;
    background: var(--bg-dark-alt);
    position: relative;
}

.stats::before,
.stats::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.stats::before {
    top: 0;
}

.stats::after {
    bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--white-faint);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(201, 168, 76, 0.06) 10deg, transparent 20deg, transparent 30deg, rgba(201, 168, 76, 0.04) 40deg, transparent 50deg);
    border-radius: 50%;
    pointer-events: none;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    object-fit: contain;
    max-height: 650px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 8px;
    font-style: italic;
}

.about-content p {
    color: var(--white-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

/* =============================================
   COUPLES
   ============================================= */
.couples {
    padding: var(--section-pad) 0;
    position: relative;
}

.couples-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.couples-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(201, 168, 76, 0.08);
}

.couples-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 8px;
    font-style: italic;
}

.couples-content p {
    color: var(--white-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 20px;
}

/* =============================================
   COURSES
   ============================================= */
.courses {
    padding: var(--section-pad) 0;
    position: relative;
}

.courses-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.course-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all var(--transition);
}

.course-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.course-icon {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.course-item p {
    color: var(--white-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =============================================
   BOOKING
   ============================================= */
.booking {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.booking-feather {
    display: block;
    margin: -20px auto 30px;
    width: 140px;
    opacity: 0.85;
    animation: featherFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(201, 168, 76, 0.3));
}

@keyframes featherFloat {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg) translateY(-8px);
    }
}

/* Booking Steps Indicator */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.booking-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.booking-steps .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201, 168, 76, 0.3);
    color: var(--white-faint);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.booking-steps .step-label {
    font-size: 0.75rem;
    color: var(--white-faint);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: color 0.3s;
}

.booking-steps .step.active .step-number {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.booking-steps .step.active .step-label {
    color: var(--gold);
}

.booking-steps .step.completed .step-number {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.booking-steps .step.completed .step-label {
    color: var(--gold);
}

.booking-steps .step-line {
    flex: 1;
    height: 2px;
    background: rgba(201, 168, 76, 0.15);
    margin: 0 12px;
    margin-bottom: 24px;
    transition: background 0.3s;
}

.booking-steps .step-line.completed {
    background: var(--gold);
}

/* Step Content */
.booking-step-content {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Selected Package Info */
.selected-package-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 24px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.selected-package-info span {
    color: var(--gold);
    font-weight: 500;
}

.btn-link {
    background: none;
    border: none;
    color: var(--white-faint);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.btn-link:hover {
    color: var(--gold);
}

/* Choose Package Button */
.btn-choose-package {
    margin-top: 20px;
    width: 100%;
}

/* Payment Info Box */
.payment-confirmation {
    text-align: center;
    margin-bottom: 30px;
}

.payment-confirmation-icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
}

.payment-confirmation-text {
    color: var(--white-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 450px;
    margin: 16px auto 0;
}

.payment-info-box {
    margin-top: 0;
    padding: 40px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.02) 100%);
    text-align: center;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.payment-info-box h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0.85;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.payment-method-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--white-faint);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.payment-phone {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 8px 0 0;
    font-family: var(--font-body);
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
    line-height: 1;
}

.payment-note {
    color: var(--white-faint);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto;
    font-style: italic;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-grid .pricing-card:only-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(201, 168, 76, 0.1);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-card.featured:hover {
    transform: scale(1.07) translateY(-4px);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.18), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--bg-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 24px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.pricing-duration {
    font-size: 0.85rem;
    color: var(--white-faint);
    margin-bottom: 24px;
}

.pricing-amount {
    margin-bottom: 24px;
}

.pricing-amount .price {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 300;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-amount .currency {
    font-size: 1.2rem;
    color: var(--gold);
    margin-left: 4px;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--white-faint);
    line-height: 1.7;
}

/* Booking Flow */
.booking-flow {
    max-width: 700px;
    margin: 0 auto;
}

.booking-step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--gold-light);
}

/* Form */
.booking-form {
    margin-top: 40px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-date-display {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 30px;
    padding: 16px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--white-muted);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem !important;
    color: var(--white-faint) !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--gold-light);
    text-decoration: underline;
}

.btn-book {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 12px;
}

.btn-book:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.booking-message {
    text-align: center;
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.booking-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.booking-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #e57373;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-dark-alt);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer .container {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--white-faint);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--white-faint);
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-2px);
    background: var(--gold-bright);
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page {
    padding: 140px 0 var(--section-pad);
    min-height: 100vh;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--gold-light);
}

.legal-content p {
    color: var(--white-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--gold-light);
    text-decoration: underline;
}

.back-btn {
    margin-top: 40px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 300px;
        max-height: 400px;
    }

    .about .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
        max-height: 400px;
        margin: 0 auto;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .lang-switcher {
        margin-left: 0;
        margin-top: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-image img {
        max-width: 240px;
        max-height: 320px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* =============================================
   FOOTER CREDIT
   ============================================= */
.footer-credit {
    font-size: 0.75rem;
    color: var(--white-faint);
    margin-top: 8px;
    opacity: 0.5;
}

.footer-credit a {
    color: var(--gold-dim);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

.footer-credit a:hover {
    color: var(--gold-light);
    opacity: 1;
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 24px;
    background: rgba(10, 10, 15, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-banner p {
    color: var(--white-muted);
    font-size: 0.85rem;
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-more {
    color: var(--gold-light);
    font-size: 0.8rem;
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.cookie-more:hover {
    opacity: 1;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
    }
}

/* =============================================
   RESPONSIVE — Tablet & Mobile
   ============================================= */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .nav-cta {
        padding: 6px 14px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 0;
        transition: right 0.35s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links>a,
    .nav-dropdown-toggle {
        padding: 14px 0 !important;
        font-size: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    }

    .nav-cta {
        margin-top: 20px;
        text-align: center;
        width: 100%;
        display: block;
        padding: 14px 20px !important;
        font-size: 1rem !important;
    }

    /* Mobile dropdown — accordion style */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.25s ease;
        opacity: 0;
        visibility: visible;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 400px;
        opacity: 1;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 0;
        max-height: 0;
    }

    .nav-dropdown:hover .dropdown-arrow {
        transform: none;
    }

    .nav-dropdown.open:hover .nav-dropdown-menu {
        opacity: 1;
        max-height: 400px;
    }

    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu a {
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(201, 168, 76, 0.05);
    }

    .nav-dropdown-menu a:hover {
        padding-left: 8px !important;
    }

    .lang-switcher {
        margin: 20px 0 0 0;
        align-self: center;
    }

    /* Subpage responsive */
    .subpage-hero {
        padding: 120px 0 40px;
    }

    .subpage-hero h1 {
        font-size: 1.8rem;
    }

    .subpage-content {
        padding: 40px 0 60px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .subpage-hero h1 {
        font-size: 1.5rem;
    }

    .subpage-content h2 {
        font-size: 1.3rem;
    }

    .subpage-content p {
        font-size: 0.95rem;
    }
}

/* =============================================
   Testimonials Section
   ============================================= */
.testimonials-section {
    text-align: center;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 40px 0 16px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide {
    flex: 0 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(10, 10, 15, 0.8);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}

.carousel-arrow:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.5);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-stars .star {
    color: rgba(201, 168, 76, 0.2);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-stars .star.filled {
    color: var(--gold);
}

.testimonial-content {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(232, 224, 208, 0.85);
    font-style: italic;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-date {
    font-size: 0.75rem;
    color: rgba(232, 224, 208, 0.4);
}

.testimonials-empty {
    color: rgba(232, 224, 208, 0.5);
    font-style: italic;
    padding: 40px 0;
}

.testimonials-cta {
    margin-top: 32px;
    margin-bottom: 16px;
    text-align: center;
}

/* Testimonials full page */
.testimonials-page {
    padding: 60px 0 80px;
}

.testimonials-page-intro {
    text-align: center;
    color: var(--white-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(232, 224, 208, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.modal-content .form-group {
    margin-bottom: 20px;
}

.modal-content label {
    display: block;
    font-size: 0.85rem;
    color: rgba(201, 168, 76, 0.8);
    margin-bottom: 6px;
    font-weight: 500;
}

.modal-content input[type="text"],
.modal-content textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.modal-content input[type="text"]:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: rgba(201, 168, 76, 0.5);
}

.modal-content textarea {
    resize: vertical;
    min-height: 100px;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: rgba(232, 224, 208, 0.3);
    margin-top: 4px;
}

/* Star rating input */
.star-rating {
    display: flex;
    gap: 4px;
    font-size: 1.5rem;
}

.star-input {
    color: rgba(201, 168, 76, 0.2);
    cursor: pointer;
    transition: all 0.15s;
}

.star-input.selected,
.star-input.hover {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.3);
}

/* Form messages */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #e57373;
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .modal-content {
        padding: 24px;
    }
}

/* ── Cookie Consent Bar ─────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 10, 15, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 12px 24px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.cookie-hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-msg {
    flex: 1;
    color: rgba(232, 224, 208, 0.7);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-link:hover {
    color: #d4b65c;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--gold), #d4b65c);
    color: #0a0a0f;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.cookie-btn-necessary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(232, 224, 208, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.cookie-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Cookie Settings Modal */
.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-overlay.active {
    display: flex;
}

.cookie-modal {
    background: linear-gradient(135deg, #14141f 0%, #1a1a2e 100%);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 28px;
    max-width: 420px;
    width: 90%;
    position: relative;
}

.cookie-modal h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 0 0 20px;
}

.cookie-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(232, 224, 208, 0.5);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px;
}

.cookie-modal-close:hover {
    color: var(--text);
}

.cookie-cat {
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.cookie-cat:last-of-type {
    border-bottom: none;
}

.cookie-cat-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-cat-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-cat-header input[type="checkbox"]:disabled {
    opacity: 0.7;
}

.cookie-cat-header strong {
    color: var(--text);
    font-size: 0.9rem;
}

.cookie-cat p {
    color: rgba(232, 224, 208, 0.45);
    font-size: 0.8rem;
    margin: 6px 0 0 28px;
    line-height: 1.4;
}

.cookie-modal-save {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    background: linear-gradient(135deg, var(--gold), #d4b65c);
    color: #0a0a0f;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.cookie-modal-save:hover {
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}