/* =========================================
   OBAIDULLAH SIDIQE - PERSONAL TRAINER
   Glassmorphism Modern Design
   ========================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #f97316;
    --secondary: #dc2626;
    --accent: #fbbf24;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #ffffff;
    --gray: #a0a0a0;
    --gray-dark: #1a1a1a;
    --glass-opacity: 0.08;
    --glass-blur: 20px;
    --font-main: 'Poppins', sans-serif;
    --shadow-glow: 0 8px 32px rgba(249, 115, 22, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
    --transition: 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.4);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background layers */
.bg-pattern {
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    z-index: -2;
    animation: bg-shift 20s ease-in-out infinite;
}

.bg-gradient {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-dark) 50%, var(--darker) 100%);
    z-index: -3;
}

@keyframes bg-shift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== GLASSMORPHISM CORE ===== */
.glass {
    background: rgba(255, 255, 255, var(--glass-opacity));
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.glass-soft {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

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

/* ===== NAVIGATION (Full-width integrated) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-radius: 0 !important;
    padding: 0.7rem 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    background: rgba(10, 10, 10, 0.35);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.scrolled {
    padding: 0.4rem 0;
    background: rgba(10, 10, 10, 0.85);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-text {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}

.logo img, .logo .logo-img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    padding: 0.6rem 1rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.nav-link.cta-nav {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249,115,22,0.5);
}

/* Language Switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    margin-left: 0.6rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 3px;
    gap: 2px;
    flex-shrink: 0;
}

.lang-btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    border-radius: 20px;
    transition: 0.2s;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.lang-btn:hover { color: #fff; }

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 12rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.4) 100%),
        linear-gradient(135deg, rgba(249,115,22,0.1), rgba(220,38,38,0.1));
}

.hero-particles span {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(1px);
    animation: float 6s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { width: 8px; height: 8px; top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { width: 12px; height: 12px; top: 60%; left: 20%; animation-delay: 1s; background: var(--accent); }
.hero-particles span:nth-child(3) { width: 6px; height: 6px; top: 30%; right: 15%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { width: 10px; height: 10px; top: 70%; right: 25%; animation-delay: 3s; background: var(--secondary); }
.hero-particles span:nth-child(5) { width: 14px; height: 14px; top: 80%; left: 60%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { width: 7px; height: 7px; top: 15%; right: 40%; animation-delay: 5s; background: var(--accent); }

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
    padding: 3rem;
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.7); }
    50% { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-title .line-1 { display: block; }
.hero-title .line-2 { display: block; }

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(249,115,22,0.5);
}

.btn-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.btn-block { width: 100%; }

.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 1.5rem 0;
    width: calc(100% - 3rem);
    max-width: 1100px;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.3);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    padding: 0;
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-image-tag i { color: var(--accent); }

.floating-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary);
}

.floating-card strong { display: block; font-size: 1.2rem; }
.floating-card span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

.about-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.about-role {
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.languages {
    margin: 1.5rem 0 2rem;
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.lang-tag {
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    font-size: 0.85rem;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 2.5rem 2rem 2.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.6s ease backwards;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.service-card:hover::before { opacity: 0.1; }

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(220,38,38,0.2));
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: 0.4s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* ===== PACKAGES ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package-card {
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-card.highlighted {
    background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(220,38,38,0.1));
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(249,115,22,0.25);
}

.package-card.highlighted:hover {
    transform: scale(1.03) translateY(-8px);
}

.package-card.color-gold {
    background: linear-gradient(135deg, rgba(251,191,36,0.12), rgba(217,119,6,0.08));
    border-color: rgba(251,191,36,0.3);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}

.package-card.color-gold .package-badge {
    background: linear-gradient(135deg, var(--accent), #d97706);
}

.package-header { margin-bottom: 1.5rem; }
.package-name { font-size: 1.6rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
.package-desc { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin: 1.5rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.package-price .currency {
    font-size: 1.3rem;
    color: var(--primary);
}

.package-price .amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-card.color-gold .amount {
    background: linear-gradient(135deg, var(--accent), #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-price .period {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.package-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.package-features li {
    padding: 0.6rem 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.package-features i {
    color: var(--primary);
    margin-top: 4px;
}

.package-guarantee {
    text-align: center;
    padding: 1.5rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.package-guarantee i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* ===== GALLERY (Masonry-style auto-arrange) ===== */
.gallery-grid {
    column-count: 4;
    column-gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 1100px) { .gallery-grid { column-count: 3; } }
@media (max-width: 768px)  { .gallery-grid { column-count: 2; column-gap: 0.6rem; } }
@media (max-width: 480px)  { .gallery-grid { column-count: 1; } }

.gallery-item {
    break-inside: avoid;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    padding: 0;
    margin-bottom: 1rem;
    border-radius: 16px;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:nth-child(3n)   { aspect-ratio: 3/4; }
.gallery-item:nth-child(5n+1) { aspect-ratio: 4/5; }
.gallery-item:nth-child(7n+2) { aspect-ratio: 1; }
.gallery-item:nth-child(2n)   { aspect-ratio: 3/4; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: 0.4s;
}

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

.gallery-overlay h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.gallery-overlay i {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

/* ===== CERTIFICATES (Pinned/Hanging vertical) ===== */
.certificates-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
}

.cert-wall {
    position: relative;
    perspective: 1200px;
    padding-top: 50px;
}

.cert-pin {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 35% 30%, #f59e0b, #b45309 60%, #78350f);
    border-radius: 50%;
    z-index: 5;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.6),
        inset -2px -3px 6px rgba(0,0,0,0.4),
        inset 2px 3px 4px rgba(255,255,255,0.4);
}

.cert-pin::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 7px;
    left: 9px;
    background: radial-gradient(circle, rgba(255,255,255,0.7), transparent 70%);
    border-radius: 50%;
}

.cert-string {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(251,191,36,0.6), rgba(251,191,36,0.2));
    transform-origin: top center;
    z-index: 1;
}

.cert-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    cursor: pointer;
    padding: 0;
    transform-origin: top center;
    animation: cert-sway 5s ease-in-out infinite;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.6),
        0 0 60px rgba(249,115,22,0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.cert-card:hover {
    animation-play-state: paused;
    transform: rotate(0) translateY(-8px) scale(1.02);
    box-shadow:
        0 35px 80px rgba(0,0,0,0.7),
        0 0 80px rgba(249,115,22,0.3);
}

@keyframes cert-sway {
    0%, 100% { transform: rotate(-1.5deg); }
    50% { transform: rotate(1.5deg); }
}

.cert-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.cert-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(255,255,255,0.15) 80%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    animation: cert-shine 6s ease-in-out infinite;
}

@keyframes cert-shine {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cert-info {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.85));
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cert-info i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.cert-info h4 { margin-bottom: 0.3rem; font-size: 1.15rem; }
.cert-info p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* When multiple certificates - show grid instead */
.cert-multi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

/* =========================================
   VIDEOS SECTION
   ========================================= */
.videos-section { position: relative; }

.video-platforms {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    transition: 0.3s;
    font-weight: 500;
}

.platform-link i { font-size: 1.4rem; }

.platform-link:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}

.platform-link.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    color: #fff;
}
.platform-link.tiktok:hover {
    background: linear-gradient(135deg, #000, #25f4ee, #fe2c55);
    border-color: transparent;
}
.platform-link.youtube:hover {
    background: #ff0000;
    border-color: transparent;
    color: #fff;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: 0.4s;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(249,115,22,0.2);
}

.video-thumb {
    position: relative;
    aspect-ratio: 4/5;
    background: #000;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb.youtube-thumb { aspect-ratio: 16/9; }

.video-thumb img, .video-thumb iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 6px 18px rgba(249,115,22,0.45);
    transition: 0.3s;
    z-index: 2;
    cursor: pointer;
}

.video-thumb:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-platform-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}

.video-platform-badge.instagram { color: #e1306c; }
.video-platform-badge.tiktok { color: #fff; }
.video-platform-badge.youtube { color: #ff0000; }

.video-info {
    padding: 0.9rem 1rem;
}

.video-info h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.video-info p { color: rgba(255,255,255,0.6); font-size: 0.78rem; line-height: 1.4; }

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.video-modal.active { display: flex; }

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.video-modal-content.youtube-modal { aspect-ratio: 16/9; max-width: 900px; }

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: grid;
    place-items: center;
}

/* =========================================
   PAYMENT METHODS SECTION
   ========================================= */
.payments-section {
    padding: 4rem 0;
}

.payments-bar {
    padding: 2rem 2.5rem;
    text-align: center;
}

.payments-bar h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payments-bar > p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.5rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-icon {
    padding: 0.8rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: 0.3s;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    min-width: 90px;
    justify-content: center;
}

.payment-icon:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
}

.payment-icon i {
    font-size: 1.6rem;
}

.payment-icon .pi-name {
    font-weight: 500;
    white-space: nowrap;
}

.payments-security {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 12px;
    color: #4ade80;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.payments-security i { font-size: 1.2rem; }

/* RESPONSIVE for new sections */
@media (max-width: 768px) {
    .cert-card { max-width: 100%; }
    .videos-grid { grid-template-columns: 1fr; }
    .video-modal-content { max-width: 95vw; }
    .payments-bar { padding: 1.5rem; }
    .payment-icon { min-width: 70px; padding: 0.6rem 0.9rem; font-size: 0.82rem; }
    .payment-icon i { font-size: 1.3rem; }
}

/* =========================================
   PAGE INTRO OVERLAY (Preloader Animation)
   ========================================= */
.page-intro {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-intro.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-blur-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59,130,246,0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6,182,212,0.2), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(30,64,175,0.15), transparent 50%);
    filter: blur(20px);
    animation: intro-bg-pulse 4s ease-in-out infinite;
}

@keyframes intro-bg-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.intro-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    letter-spacing: 4px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: #fff;
}

.intro-first {
    opacity: 0;
    transform: translateY(20px);
    animation: intro-first-in 0.8s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1.2) forwards;
}

@keyframes intro-first-in {
    to { opacity: 1; transform: translateY(0); }
}

.intro-last {
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: intro-last-fade 0.6s 0.8s ease forwards;
}

@keyframes intro-last-fade {
    to { opacity: 1; }
}

/* Base layer: outline (transparent fill with stroke) */
.intro-last-base {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
    text-stroke: 1.5px rgba(255,255,255,0.5);
    position: relative;
    display: inline-block;
}

/* Filled layer: clipped, slides in like a light wipe */
.intro-last-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    clip-path: inset(0 100% 0 0);
    animation:
        intro-fill-sweep 1.6s 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards,
        intro-fill-shimmer 3s 2.8s linear infinite;
}

@keyframes intro-fill-sweep {
    0% { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

@keyframes intro-fill-shimmer {
    to { background-position: -200% center; }
}

/* The light bar that sweeps across */
.intro-last::before {
    content: '';
    position: absolute;
    top: -10%;
    bottom: -10%;
    left: -10%;
    width: 20%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    filter: blur(8px);
    transform: skewX(-20deg);
    animation: intro-light-bar 1.8s 1.0s ease-in forwards;
    z-index: 3;
    pointer-events: none;
}

@keyframes intro-light-bar {
    0% { left: -20%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}

.intro-tagline {
    margin-top: 1rem;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    opacity: 0;
    animation: intro-tag-in 0.6s 2.4s ease forwards;
}

@keyframes intro-tag-in {
    to { opacity: 1; }
}

.intro-loader {
    margin-top: 2.5rem;
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    margin-left: auto;
    margin-right: auto;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    animation: intro-tag-in 0.5s 2.6s ease forwards;
}

.intro-loader span {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    transform: translateX(-100%);
    animation: intro-loader-bar 1.4s 2.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes intro-loader-bar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Disable scrolling during intro */
body.intro-active { overflow: hidden; }

/* =========================================
   SHINE TEXT EFFECT (for BODY & MIND)
   Combines an entrance animation with continuous light sweep.
   ========================================= */
.shine-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        110deg,
        var(--primary) 0%,
        var(--accent) 20%,
        #ffffff 45%,
        #ffffff 55%,
        var(--accent) 80%,
        var(--primary) 100%
    );
    background-size: 250% auto;
    background-position: 100% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0;
    transform: translateY(40px);
    animation:
        shine-text-in 0.9s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        shine-sweep 3.5s 1.2s linear infinite;
}

@keyframes shine-text-in {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shine-sweep {
    0%   { background-position: 100% center; }
    100% { background-position: -150% center; }
}

/* Soft colored glow behind the text */
.shine-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: blur(22px);
    opacity: 0.55;
    z-index: -1;
    pointer-events: none;
    animation: shine-glow-pulse 4s ease-in-out infinite;
}

@keyframes shine-glow-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.75; }
}

@media (max-width: 768px) {
    .intro-name { letter-spacing: 2px; }
    .intro-loader { width: 140px; }
}

/* =========================================
   MARQUEE / TICKER BAR
   ========================================= */
.ticker-bar {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.18);
    width: 100%;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: ticker-slide 60s linear infinite;
    will-change: transform;
}

@keyframes ticker-slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #ffffff;
    white-space: nowrap;
    text-transform: uppercase;
    flex-shrink: 0;
}

.ticker-sep {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    color: var(--accent);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
}

@media (max-width: 768px) {
    .ticker-item { font-size: 1rem; letter-spacing: 1px; }
    .ticker-bar { padding: 0.7rem 0; }
}

/* =========================================
   SHOPPING CART (Floating Button + Drawer)
   ========================================= */
.cart-btn {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease;
}

.cart-btn:hover { transform: scale(1.08); }

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: #ffffff;
    color: var(--secondary);
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.cart-count[data-count="0"] { display: none; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9997;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open { right: 0; }

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
}

.cart-header i { color: var(--primary); }

.cart-close {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.cart-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    margin-bottom: 0.7rem;
}

.cart-line-info { flex: 1; min-width: 0; }
.cart-line-info strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-line-info small { color: var(--accent); font-weight: 500; }

.cart-line-remove {
    background: rgba(239, 68, 68, 0.15);
    border: none;
    color: #f87171;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-total strong {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
}

.cart-checkout {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.cart-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.cart-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 99998;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .cart-btn { bottom: 5.5rem; right: 1rem; width: 52px; height: 52px; font-size: 1.2rem; }
}

/* =========================================
   DIGITAL PROGRAMS SECTION
   ========================================= */
.programs-section {
    padding: 6rem 0;
}

.programs-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.programs-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.programs-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
}

.programs-tag {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    position: relative;
    padding-left: 1.5rem;
    line-height: 2px;
    font-size: 0;
}

.programs-tag::before {
    content: attr(class);
    content: 'DIGITAL PROGRAMS';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    padding: 0 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.programs-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.programs-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
}

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

.program-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.18);
}

.program-card:hover::before {
    opacity: 0.06;
}

.program-card.highlight {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(255, 255, 255, 0.04));
}

.program-card.is-soon {
    opacity: 0.72;
}

.program-card.is-soon:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.program-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.program-card.is-soon .program-status {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.3);
    color: var(--accent);
}

.status-dot {
    width: 7px;
    height: 7px;
    background: currentColor;
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
    50% { box-shadow: 0 0 0 5px transparent; opacity: 0.6; }
}

.program-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.program-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.program-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.program-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
}

.program-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.program-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--accent);
    line-height: 1;
}

.program-price .currency {
    font-size: 1.2rem;
    margin-right: 2px;
    vertical-align: top;
}

.program-cta {
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}

.program-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
}

.program-cta.soon {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
}

.program-cta.soon:hover {
    transform: none;
    box-shadow: none;
}

/* =========================================
   PAYMENT METHOD CARDS (Checkout)
   ========================================= */
.payment-method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.7rem;
    margin: 0.5rem 0 1rem;
}

.pay-card {
    position: relative;
    padding: 1rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.pay-card input[type=radio] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pay-card i {
    font-size: 1.7rem;
}

.pay-card .pay-card-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.pay-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.pay-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(255, 255, 255, 0.04));
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2);
}

.pay-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
}

.pay-details {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.18);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1rem 0;
    display: none;
}

.pay-details.active { display: block; }

.pay-details h4 {
    color: #4ade80;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pay-details .pay-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.pay-details .pay-row:last-child { border-bottom: none; }

.pay-details .pay-row strong { color: rgba(255, 255, 255, 0.6); font-weight: 500; }
.pay-details .pay-row span { font-family: monospace; font-size: 0.95rem; }

.pay-details a {
    color: var(--primary);
    text-decoration: underline;
}

.pay-details .pay-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.pay-details .copy-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.pay-details .copy-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
    .intro-last-fill { animation: none; clip-path: inset(0 0 0 0); }
    .intro-last::before { display: none; }
    .shine-text { animation: none; }
}

/* ===== TIMELINE ===== */
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.timeline-title i {
    color: var(--primary);
}

.timeline-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    transition: 0.3s;
}

.timeline-item:hover {
    border-color: var(--primary);
}

.timeline-date {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.timeline-item h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.timeline-place { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.timeline-details { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 0.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author strong { display: block; }
.testimonial-author span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: 0.3s;
}

.contact-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 50px;
    height: 50px;
    background: rgba(249,115,22,0.15);
    border-radius: 14px;
    display: grid;
    place-items: center;
}

.contact-item strong { display: block; margin-bottom: 0.2rem; }
.contact-item a, .contact-item span { color: rgba(255,255,255,0.75); }

.contact-form {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

.form-group textarea { resize: vertical; }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.lightbox-info {
    margin-top: 1rem;
    color: #fff;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    z-index: 1;
    line-height: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}
.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.footer-logo .logo-text {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 800;
}
.footer-logo > span:not(.logo-text) {
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.footer-col ul li {
    padding: 0.4rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-col ul li i { color: var(--primary); margin-right: 0.5rem; width: 16px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--primary); }

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: grid;
    place-items: center;
    transition: 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-tag {
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.4);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37,211,102,0.5);
    z-index: 999;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid, .contact-grid, .timeline-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-text { padding: 2rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; padding: 0.5rem 0; }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10,10,10,0.95);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        align-items: stretch;
        gap: 1rem;
    }
    .nav-menu.active { right: 0; }
    .nav-menu li { width: 100%; }
    .nav-link { display: block; text-align: center; padding: 1rem; border-radius: 12px; }
    .hamburger { display: flex; }
    .navbar { padding: 0.5rem 0; left: 0; right: 0; top: 0; border-radius: 0 !important; }
    .nav-container { padding: 0 1rem; }
    .lang-switch { margin-left: auto; margin-right: 0.6rem; }
    .lang-btn { padding: 0.3rem 0.55rem; font-size: 0.72rem; }
    .section { padding: 4rem 0; }
    .hero { padding: 7rem 0 8rem; }
    .hero-text { padding: 2rem 1.5rem; }
    .hero-stats { position: relative; bottom: auto; left: auto; transform: none; margin-top: 2rem; width: 100%; max-width: 100%; }
    .package-card.highlighted { transform: none; }
    .package-card.highlighted:hover { transform: translateY(-5px); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .floating-card { display: none; }
    .container { padding: 0 1rem; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .logo-name { display: none; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reveal on scroll - door-opening style for sections */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.2,0.9,0.3,1);
}

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

/* Section base */
.section {
    position: relative;
}
/* door-reveal class kept for backward-compat but no curtain effect anymore */
.section.door-reveal { overflow: visible; }

/* Dropdown options - dark background, readable everywhere on frontend */
select option,
.form-group select option,
.termin-form select option,
.contact-form select option {
    background: #1a1a1a !important;
    color: #ffffff !important;
}
select option:checked {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: #fff !important;
}
/* For Windows/Firefox where option styling is limited - color the select itself dark */
select {
    color-scheme: dark;
}

/* Variant: fade-left/right combined with parent reveal */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: 0.9s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: 0.9s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: 0.9s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: none;
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 11rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 997;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.back-to-top.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top { bottom: 9.5rem; right: 1rem; width: 42px; height: 42px; }
}

/* =========================================
   FLOATING BUTTONS - mobile spacing fix
   ========================================= */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.2rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .cart-btn {
        bottom: 4.8rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

/* =========================================
   TERMIN MODAL POPUP
   ========================================= */
.termin-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.termin-modal.active {
    display: flex;
    animation: modal-fade-in 0.3s ease;
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.termin-modal-content {
    position: relative;
    width: 100%;
    max-width: 880px;
    background: linear-gradient(135deg, rgba(20,20,28,0.96), rgba(10,10,14,0.96));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    padding: 2.2rem 2.2rem 2rem;
    box-shadow: 0 30px 90px rgba(0,0,0,0.7);
    animation: modal-pop-in 0.45s cubic-bezier(0.16, 1, 0.3, 1.2);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modal-pop-in {
    from { opacity: 0; transform: scale(0.85) translateY(40px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.termin-modal-close {
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    z-index: 2;
    transition: 0.2s;
}
.termin-modal-close:hover {
    background: rgba(239,68,68,0.25);
    border-color: rgba(239,68,68,0.4);
    color: #fca5a5;
    transform: rotate(90deg);
}

.termin-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.termin-modal-header .section-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--accent);
    border-radius: 30px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-bottom: 0.7rem;
}
.termin-modal-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 2px;
    margin: 0 0 0.3rem;
}
.termin-modal-header p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    margin: 0;
}

.termin-modal-body {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 1.5rem;
}

.termin-modal-body .termin-info { padding-right: 0.5rem; }

.termin-modal-body .termin-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.termin-modal-body .termin-info ul {
    list-style: none;
    padding: 0;
}

.termin-modal-body .termin-info ul li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.termin-modal-body .termin-info ul li i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

.termin-modal-body .termin-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 1.3rem;
}

.termin-modal-body .termin-form .form-group { margin-bottom: 0.8rem; }
.termin-modal-body .termin-form input,
.termin-modal-body .termin-form select,
.termin-modal-body .termin-form textarea {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
}

@media (max-width: 720px) {
    .termin-modal-content { padding: 1.5rem 1.2rem; max-height: 95vh; }
    .termin-modal-body { grid-template-columns: 1fr; gap: 1rem; }
    .termin-modal-header h2 { font-size: 1.7rem; }
    .termin-modal-body .termin-info { display: none; }
}

/* =========================================
   GLOW BORDER (Animated thin light around frames)
   ========================================= */
.glow-border,
.glass,
.service-card,
.package-card,
.program-card,
.cert-card,
.video-card,
.testimonial-card,
.timeline-item,
.gallery-item,
.contact-item,
.contact-form,
.about-image,
.payments-bar,
.hero-img-wrapper,
.payment-method-cards .pay-card,
.pm-card,
.welcome-card,
.stat-card {
    position: relative;
}

/* Soft static glow ring */
.glow-border::before,
.glass::before,
.service-card::before,
.package-card::before,
.program-card::before,
.cert-card::before,
.video-card::before,
.testimonial-card::before,
.timeline-item::before,
.gallery-item::before,
.contact-item::before,
.contact-form::before,
.about-image::before,
.payments-bar::before,
.hero-img-wrapper::before,
.pm-card::before,
.welcome-card::before,
.stat-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.18) 0%,
        rgba(255,255,255,0.04) 25%,
        var(--primary) 50%,
        rgba(255,255,255,0.04) 75%,
        rgba(255,255,255,0.18) 100%
    );
    background-size: 300% 300%;
    background-position: 0% 0%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.4s ease;
    animation: glow-shift 8s linear infinite;
    z-index: 1;
}

@keyframes glow-shift {
    0%   { background-position: 0% 0%; }
    100% { background-position: 300% 300%; }
}

/* Strong glow on hover */
.glow-border:hover::before,
.glass:hover::before,
.service-card:hover::before,
.package-card:hover::before,
.program-card:hover::before,
.cert-card:hover::before,
.video-card:hover::before,
.testimonial-card:hover::before,
.gallery-item:hover::before,
.contact-item:hover::before,
.about-image:hover::before {
    opacity: 1;
    animation-duration: 3s;
}

/* Make navbar also have animated underline glow */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary) 30%,
        var(--accent) 50%,
        var(--primary) 70%,
        transparent
    );
    background-size: 200% 100%;
    opacity: 0.7;
    animation: nav-line-shift 6s linear infinite;
    pointer-events: none;
}

@keyframes nav-line-shift {
    0%   { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* Disable glow on extremely small devices for perf */
@media (max-width: 480px), (prefers-reduced-motion: reduce) {
    .glow-border::before,
    .glass::before,
    .service-card::before,
    .package-card::before,
    .program-card::before,
    .cert-card::before,
    .video-card::before,
    .testimonial-card::before,
    .gallery-item::before,
    .contact-item::before,
    .about-image::before {
        animation: none;
        opacity: 0.4;
    }
}

/* =========================================
   TERMIN / APPOINTMENT SECTION (inline version - kept but inline hidden)
   ========================================= */
.termin-section {
    padding: 5rem 0;
    position: relative;
}

.termin-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.termin-wrap::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(40px);
}

.termin-wrap::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(40px);
}

.termin-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.termin-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 1rem;
}

.termin-info p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.termin-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.termin-info ul li {
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.termin-info ul li i {
    color: var(--primary);
    width: 22px;
    text-align: center;
}

.termin-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
}

.termin-form .form-group {
    margin-bottom: 1rem;
}

.termin-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.termin-form input,
.termin-form select,
.termin-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.termin-form input:focus,
.termin-form select:focus,
.termin-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.termin-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.time-slot {
    padding: 0.6rem 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.2s;
    color: rgba(255, 255, 255, 0.8);
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .termin-grid { grid-template-columns: 1fr; }
    .termin-wrap { padding: 2rem 1.5rem; }
    .termin-info h3 { font-size: 2rem; }
}

/* =========================================
   SPLIT HERO LAYOUT (Text left, Image right)
   ========================================= */
.hero-split {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
    overflow: hidden;
}

.hero-split-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
}
/* Mobile / touch devices: background-attachment:fixed breaks on iOS Safari and many Androids */
@media (max-width: 992px), (hover: none) {
    .hero-split-bg {
        background-attachment: scroll;
        background-size: cover;
        background-position: center top;
    }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    opacity: 0.4;
    animation: glow-float 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    opacity: 0.3;
    animation: glow-float 10s ease-in-out infinite reverse;
}

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

.hero-split-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-left {
    padding-right: 1rem;
}

.hero-mega-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 2px;
    margin: 1.5rem 0;
}

.hero-mega-title .line-1, .hero-mega-title .line-2 { display: block; }

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-mini-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.mini-stat strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 1px;
    display: block;
}

.mini-stat small {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.3rem;
    display: block;
}

/* HERO RIGHT - Image side */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3/4;
    animation: fadeInUp 1s 0.3s ease both;
}

.hero-img-glow {
    position: absolute;
    inset: -30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 28px;
    opacity: 0.4;
    filter: blur(40px);
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.04); }
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(249,115,22,0.15);
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(40,20,10,0.8));
}

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

.hero-img-wrapper:hover img {
    transform: scale(1.05);
}

.hero-img-dots {
    position: absolute;
    width: 140px;
    height: 140px;
    bottom: -30px;
    left: -30px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 2.5px);
    background-size: 18px 18px;
    z-index: 1;
    border-radius: 20px;
}

.hero-img-card {
    position: absolute;
    z-index: 3;
    padding: 1rem 1.3rem;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    animation: float-card 4s ease-in-out infinite;
}

.hero-img-card.top {
    top: 2rem;
    right: -1.5rem;
}

.hero-img-card.bottom {
    bottom: 3rem;
    left: -2rem;
    animation-delay: 1.5s;
}

.hero-img-card .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-img-card strong {
    display: block;
    font-size: 1rem;
}

.hero-img-card small {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
}

/* SCROLL DOWN INDICATOR */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.scroll-down span {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    display: block;
    position: relative;
}

.scroll-down span::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s infinite;
}

.scroll-down:hover { color: var(--primary); }

/* STATS BAR */
.stats-bar {
    padding: 0 0 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 5;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.5rem;
}

.stats-bar-inner .stat-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-bar-inner .stat-item:last-child { border-right: none; }

/* MAGNETIC BUTTONS */
.magnetic-btn {
    position: relative;
    transition: transform 0.2s ease;
    will-change: transform;
}

/* CONTACT SOCIAL ROW */
.contact-social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-social {
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

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

.contact-social:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: rgba(249,115,22,0.1);
}

.contact-social:hover i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FORM CHECKBOX - properly aligned in all sizes */
.form-check {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
}
.check-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.85rem !important;
    cursor: pointer;
    color: rgba(255,255,255,0.75) !important;
    line-height: 1.5;
    margin: 0 !important;
}
.check-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 2px 0 0 0;
    accent-color: var(--primary);
    cursor: pointer;
}
.check-label > span {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}
.check-label a {
    color: var(--primary);
    text-decoration: underline;
    word-break: break-word;
}

@media (max-width: 640px) {
    .check-label {
        font-size: 0.8rem !important;
        gap: 0.55rem;
    }
    .form-check {
        padding: 0.55rem 0.7rem;
    }
    .check-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}

/* FOOTER SOCIAL */
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: grid;
    place-items: center;
    transition: 0.3s;
    color: rgba(255,255,255,0.8);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.has-custom-cursor {
    cursor: none;
}

.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor input,
.has-custom-cursor textarea,
.has-custom-cursor select,
.has-custom-cursor [onclick],
.has-custom-cursor label {
    cursor: none;
}

.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    will-change: transform;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(249, 115, 22, 0.5);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-ring.hover {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--primary);
}

@media (max-width: 768px), (hover: none) {
    .cursor-dot, .cursor-ring { display: none; }
    .has-custom-cursor { cursor: auto; }
    .has-custom-cursor a,
    .has-custom-cursor button { cursor: pointer; }
    .has-custom-cursor input,
    .has-custom-cursor textarea,
    .has-custom-cursor select { cursor: text; }
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem;
    z-index: 9998;
    animation: slideUpBanner 0.5s ease;
}

@keyframes slideUpBanner {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
}

.cookie-text > i {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.cookie-text strong {
    display: block;
    margin-bottom: 0.3rem;
}

.cookie-text p {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.7rem 1.3rem;
    border-radius: 30px;
    border: none;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
    color: #fff;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.btn-cookie-accept:hover { transform: translateY(-2px); }

.btn-cookie-settings {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-cookie-settings:hover { background: rgba(255,255,255,0.13); }

.btn-cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
}
.btn-cookie-reject:hover { background: rgba(255,255,255,0.05); }

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.cookie-modal-content {
    max-width: 540px;
    width: 100%;
    padding: 2rem;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
}
.cookie-modal-close:hover { opacity: 1; }

.cookie-modal-content h3 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cookie-modal-content h3 i { color: var(--accent); }

.cookie-modal-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    margin-bottom: 0.6rem;
}

.cookie-option strong { display: block; margin-bottom: 0.3rem; }
.cookie-option small { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

.toggle-switch { position: relative; flex-shrink: 0; }
.toggle-switch input { display: none; }
.toggle-track {
    width: 44px; height: 24px;
    background: rgba(255,255,255,0.15);
    border-radius: 24px;
    display: block;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}
.toggle-track::before {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 3px; left: 3px;
    transition: 0.3s;
}
.toggle-switch input:checked + .toggle-track {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.toggle-switch input:checked + .toggle-track::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-track {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.6;
}

.cookie-modal-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* LEGAL PAGES */
.legal-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 2.5rem;
}

.legal-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content h2 {
    color: var(--accent);
    margin: 2rem 0 0.8rem;
    font-size: 1.3rem;
}

.legal-content h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
    color: var(--primary);
}

.legal-content p, .legal-content li {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.legal-info-box {
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin: 1rem 0;
}

.legal-info-box strong { color: var(--accent); }

/* RESPONSIVE - hero-split */
@media (max-width: 992px) {
    .hero-split-grid { grid-template-columns: 1fr; gap: 4rem; }
    .hero-right { min-height: 500px; }
    .hero-img-frame { max-width: 380px; }
    .hero-mini-stats { justify-content: space-between; }
    .mini-stat strong { font-size: 2rem; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-inner .stat-item { border-right: none; padding: 0.7rem 0; }
    .stats-bar-inner .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 768px) {
    .hero-split { padding: 6rem 0 3rem; }
    .hero-img-card.top { right: -0.5rem; }
    .hero-img-card.bottom { left: -0.5rem; }
    .hero-img-card { padding: 0.7rem 1rem; }
    .hero-img-card strong { font-size: 0.9rem; }
    .hero-img-card small { font-size: 0.7rem; }
    .cookie-content { flex-direction: column; align-items: stretch; }
    .cookie-buttons { width: 100%; }
    .btn-cookie { flex: 1; min-width: 110px; }
    .legal-content { padding: 1.5rem; }
    .legal-content h1 { font-size: 2.2rem; }
    .scroll-down { display: none; }
}
