/* ===== VARIABLES ===== */
:root {
    --bg: #0b0b0f;
    --bg-alt: #111111;
    --bg-light: #1a1a1a;
    --text: #ffffff;
    --text-soft: #ffffff;
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-gradient: linear-gradient(135deg, #FFD700, #FFE44D);
    --neon-purple: #7c3aed;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --ease: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

body { cursor: auto; }

/* ===== GLASSMORPHISM ===== */
.glass {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-radius: 16px;
    border: 1px solid rgba(192, 132, 252, 0.25) !important;
    box-shadow: 0 8px 32px rgba(204,172,0,0.1), 0 2px 8px rgba(255,215,0,0.12), inset 0 1px 0 rgba(255,228,77,0.08);
}

.glass-button {
    background: transparent !important;
    border: 1px solid #FFD700 !important;
    border-radius: 10px;
    padding: 12px 24px;
    color: #fff !important;
    font-weight: 600;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(255,215,0,0.12), inset 0 1px 0 rgba(255,228,77,0.08);
    transition: all 0.3s ease;
}

.glass-button:hover {
    background: rgba(255,215,0,0.1) !important;
    border-color: #FFE44D !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,215,0,0.25), inset 0 1px 0 rgba(255,228,77,0.12);
}

p { color: #ffffff; line-height: 1.8; font-size: 18px; }
a { text-decoration: none; color: inherit; transition: color var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; text-transform: uppercase; }
h2 span { color: var(--gold); font-style: normal; }


/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible, .reveal.active {
    opacity: 1; transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000; font-weight: 600; font-size: 1rem;
    padding: 14px 32px; border-radius: 8px; border: none;
    cursor: pointer; transition: all 0.3s ease;
    text-transform: uppercase; letter-spacing: 1px;
    animation: pulseGlow 2.4s ease-in-out infinite;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 0 22px rgba(212, 175, 55, 0.35); }
}

.btn-gold-outline {
    display: inline-block;
    background: transparent; color: #fff;
    padding: 14px 32px; font-size: 1rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    border: 1px solid #FFD700; border-radius: 8px;
    cursor: pointer; transition: var(--ease);
}
.btn-gold-outline:hover {
    background: rgba(255,215,0,0.1); color: #fff;
    border-color: #FFE44D;
    box-shadow: 0 10px 20px rgba(255,215,0,0.15);
    transform: translateY(-2px);
}

.btn-gold {
    display: inline-block;
    background: var(--gold); color: #000;
    padding: 1.25rem 3rem; font-size: 1.1rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    border: none; cursor: pointer; border-radius: 4px;
    transition: var(--ease);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.catalog-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-sans); font-size: 0.8rem;
    font-weight: 400; letter-spacing: 0.5px;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
}
.catalog-link i { font-size: 0.75rem; }
.catalog-link:hover { color: var(--gold); }

.btn-call-nav {
    background: transparent;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
}
.btn-call-nav:hover {
    background: var(--gold) !important;
    color: #000 !important;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 0.5rem 0 0; transition: var(--ease);
}
.navbar {
    background: linear-gradient(to bottom, rgba(11,11,15,0.6), rgba(11,11,15,0));
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
#navbar.scrolled {
    background: rgba(11,11,15,0.75);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 0.3rem 0 0;
    border-bottom: 1px solid rgba(255,215,0,0.1);
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 5%;
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
}
.logo { flex: 0 0 100%; text-align: center; }
.logo img {
    height: 120px; width: auto;
    filter: drop-shadow(0 0 6px rgba(255,215,0,0.3));
    transition: var(--ease);
    margin: 0 auto;
}
#navbar.scrolled .logo img { height: 120px; }

.nav-links {
    display: flex; list-style: none; align-items: center;
    justify-content: center; gap: 1.4rem;
    flex: 0 0 100%; padding: 0.5rem 0;
}
.nav-links a:not(.btn-primary):not(.btn-call-nav) {
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 1.5px; font-weight: 400; position: relative;
    font-family: var(--font-sans); white-space: nowrap;
}
.nav-links a:not(.btn-primary):not(.btn-call-nav):hover { color: var(--gold); }
.nav-links .nav-cta { padding: 8px 18px; font-size: 0.72rem; }

.mobile-menu-btn {
    display: none; background: transparent; border: none;
    cursor: pointer; flex-direction: column; gap: 6px;
}
.mobile-menu-btn span {
    display: block; width: 30px; height: 2px;
    background: var(--text); transition: var(--ease);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    text-align: center; position: relative; padding: 180px 5% 80px;
}
.hero-section {
    background-image: url('./assets/images/hero-2.png');
    background-size: cover; background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(11,11,15,0.3) 0%,
        rgba(11,11,15,0.55) 40%,
        rgba(11,11,15,0.85) 100%);
    box-shadow: inset 0 0 200px rgba(255,215,0,0.25);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 860px;
}
.hero-credential-strip {
    display: inline-block;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: 8px 24px; border-radius: 4px;
    font-family: var(--font-sans); font-size: 0.7rem;
    font-weight: 600; color: var(--gold);
    text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,215,0,0.15);
    opacity: 0; transform: translateY(24px);
    animation: heroFadeUp 0.9s ease 0s forwards;
}
@media (max-width: 768px) {
    .hero-credential-strip { font-size: 0.55rem; letter-spacing: 2px; padding: 6px 16px; }
}
.hero-brand {
    text-align: center; margin-bottom: 1.2rem;
    opacity: 0; transform: translateY(24px);
    animation: heroFadeUp 0.9s ease 0s forwards;
}
.hero-brand-name {
    display: block; font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5rem); font-weight: 700;
    color: #fff; letter-spacing: 12px;
    text-transform: uppercase; line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-brand-sub {
    display: block; font-family: var(--font-sans);
    font-size: clamp(1rem, 2.5vw, 1.6rem); font-weight: 600;
    color: #FFD700; letter-spacing: 10px;
    text-transform: uppercase; margin-top: 4px;
    text-shadow: 0 0 20px rgba(255,215,0,0.3);
}
@media (max-width: 768px) {
    .hero-brand-name { letter-spacing: 8px; }
    .hero-brand-sub { letter-spacing: 6px; }
}
.hero-legacy-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
    border: 1px solid rgba(255,215,0,0.5);
    color: var(--gold); font-family: var(--font-sans);
    font-size: 0.9rem; font-weight: 700; letter-spacing: 1.5px;
    padding: 10px 28px; border-radius: 50px;
    margin-bottom: 1.2rem; text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255,215,0,0.12), inset 0 0 12px rgba(255,215,0,0.06);
    opacity: 0; transform: translateY(24px);
    animation: heroFadeUp 0.9s ease 0.05s forwards;
}
.hero-eyebrow {
    font-family: var(--font-sans); text-transform: uppercase;
    letter-spacing: 4px; color: var(--gold);
    font-size: 0.85rem; font-weight: 600; margin-bottom: 1.2rem;
    opacity: 0; transform: translateY(24px);
    animation: heroFadeUp 0.9s ease 0.1s forwards;
}
.hero-title {
    font-size: clamp(32px, 5.5vw, 58px);
    line-height: 1.1; color: #fff; margin-bottom: 1.2rem;
    opacity: 0; transform: translateY(24px);
    animation: heroFadeUp 0.9s ease 0.2s forwards;
}
.hero-title span {
    display: block; margin-top: 8px;
    color: #DAA520;
}
.hero-desc {
    font-size: 1.2rem; font-weight: 300;
    color: #fff; max-width: 580px;
    margin: 0 auto 2.5rem; line-height: 1.7; letter-spacing: 0.3px;
    opacity: 0; transform: translateY(24px);
    animation: heroFadeUp 0.9s ease 0.35s forwards;
}
.hero-buttons {
    display: flex; gap: 14px; flex-wrap: wrap;
    justify-content: center;
    opacity: 0; transform: translateY(24px);
    animation: heroFadeUp 0.9s ease 0.5s forwards;
}
.btn-hero-purple {
    display: inline-block;
    background: rgba(88,28,185,0.6);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: #ffffff; font-weight: 700; font-size: 1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    padding: 14px 32px; border-radius: 8px;
    border: 1px solid rgba(255,215,0,0.35);
    text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-hero-purple:hover {
    background: rgba(88,28,185,0.8);
    border-color: rgba(255,215,0,0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88,28,185,0.3);
}
.btn-hero-gold {
    display: inline-block;
    background: #FFD700; color: #0b0b0f;
    font-weight: 700; font-size: 1rem;
    padding: 14px 32px; border-radius: 8px;
    border: none; text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
    animation: pulseGlow 2.4s ease-in-out infinite;
}
.btn-hero-gold:hover {
    background: #FFE44D; color: #0b0b0f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.45);
}
@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Trust Bar — sits BELOW the hero as a separate block (no overlap possible) */
.trust-bar {
    position: relative; width: 100%;
    display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
    background: rgba(11,11,15,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,215,0,0.15);
    border-bottom: 1px solid rgba(255,215,0,0.15);
}
.trust-item {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    font-size: 0.82rem; font-weight: 400;
    color: #fff; letter-spacing: 0.5px;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1rem; color: var(--gold); display: flex; align-items: center; }
.fl-edu-logo { height: 30px; width: auto; display: inline-block; vertical-align: middle; }
.fl-edu-logo-footer { height: 24px; width: auto; display: inline-block; vertical-align: middle; margin-right: 8px; }

/* ===== WHY CHOOSE ===== */
.why-section {
    padding: 6rem 5%; background: var(--bg);
}
.section-inner {
    text-align: center; max-width: 700px;
    margin: 0 auto 3rem;
}
.section-inner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0.8rem;
}
.section-subtitle {
    color: var(--text-soft); font-size: 1.15rem;
}
.why-two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; max-width: 1200px; margin: 0 auto;
    align-items: center;
}
.why-text { display: flex; flex-direction: column; gap: 1.5rem; }
.why-point {
    display: flex; gap: 16px; align-items: flex-start;
}
.why-icon {
    font-size: 1.4rem; color: var(--gold); flex-shrink: 0;
    margin-top: 3px;
}
.why-point h3 {
    font-size: 1.05rem; color: var(--gold); margin-bottom: 0.3rem;
    font-family: var(--font-sans); font-weight: 600;
}
.why-point p { font-size: 0.95rem; line-height: 1.6; margin: 0; }
.why-image {
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,215,0,0.2);
    box-shadow: 0 8px 30px rgba(255,215,0,0.08);
}
.why-image img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; border-radius: 12px;
    transition: transform 0.4s ease;
}
.why-image:hover img { transform: scale(1.03); }

/* ===== HOW IT WORKS ===== */
.programs-section {
    padding: 5rem 5%;
}
.programs-header {
    text-align: center; margin: 0 auto 3rem;
}
.programs-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1rem;
}
.programs-header p { color: var(--text-soft); font-size: 1.15rem; }

.step-card {
    justify-content: flex-start !important; align-items: center !important;
    padding: 2rem 1.5rem !important; text-align: center !important;
}
.step-number {
    font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700;
    width: 52px; height: 52px; line-height: 52px;
    border-radius: 50%; margin-bottom: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}
.neon-blue .step-number, .neon-purple .step-number,
.neon-green .step-number, .neon-pink .step-number {
    color: var(--gold); border-color: rgba(255,215,0,0.3);
}
.step-card h3 { font-size: 1.15rem !important; margin-bottom: 0.6rem !important; font-family: var(--font-sans) !important; font-weight: 600 !important; color: #fff !important; }
.step-card p { font-size: 0.9rem !important; color: var(--text-soft) !important; line-height: 1.6 !important; }

/* ===== LIMITED SPOTS ===== */
.limited-section {
    padding: 5rem 5%; text-align: left;
    background: #0a0a0a;
}
.limited-two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; max-width: 1200px; margin: 0 auto;
    align-items: center;
}
.limited-text h2 {
    font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem;
}
.limited-text p {
    font-size: 1.15rem; color: #fff; margin-bottom: 2rem;
    max-width: 500px;
}
.limited-image {
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,215,0,0.2);
    box-shadow: 0 8px 30px rgba(255,215,0,0.08);
}
.limited-image img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; border-radius: 12px;
    transition: transform 0.4s ease;
}
.limited-image:hover img { transform: scale(1.03); }
@media (max-width: 768px) {
    .limited-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
    .limited-image { order: -1; }
    .limited-image img { max-height: 250px; }
    .limited-text { text-align: center; }
    .limited-text p { margin-left: auto; margin-right: auto; }
}

/* ===== PROGRAM CARDS ===== */
.program-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px; max-width: 1300px; margin: 0 auto;
}
.program-card {
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 18px; position: relative; overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.program-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.program-card::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.12) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.25s ease; pointer-events: none;
}
.program-card:hover::after { opacity: 1; }

.card-image {
    width: 100%; height: 185px; overflow: hidden;
    border-radius: 14px; margin-bottom: 18px; background: #111;
}
.card-image img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    border-radius: 14px; transition: transform 0.45s ease;
}
.program-card:hover .card-image img { transform: scale(1.05); }
.pmu-image img { object-position: 50% 35%; }
.piercing-image img { object-position: 60% 35%; }

.program-card h3 {
    font-size: 20px; line-height: 1.2; margin: 0 0 12px;
    transition: color 0.3s ease;
}
.program-card .duration {
    color: #fff; font-weight: 700; font-size: 14px;
    margin-bottom: 12px; text-transform: uppercase;
}
.program-card p { color: #f0f0f0; line-height: 1.6; font-size: 1rem; }
.program-card .btn {
    display: inline-block; margin-top: auto; padding-top: 16px;
    padding: 12px 18px; border-radius: 10px;
    border: 2px solid #FFD700; color: #FFD700;
    font-weight: 700; transition: all 0.3s ease; background: transparent;
    text-align: center; margin-top: 16px;
}
.program-card .btn:hover { background: #FFD700; color: #111; }

/* Card accent colors — purple, white, gold only */
.neon-purple, .neon-blue, .neon-green, .neon-pink {
    box-shadow: 0 0 10px rgba(255,215,0,0.1);
}
.neon-purple h3, .neon-blue h3, .neon-green h3, .neon-pink h3 {
    color: var(--gold);
}
.neon-purple .btn, .neon-blue .btn, .neon-green .btn, .neon-pink .btn {
    color: var(--gold); border-color: var(--gold);
    box-shadow: 0 0 10px rgba(255,215,0,0.15);
}
.neon-purple:hover, .neon-blue:hover, .neon-green:hover, .neon-pink:hover {
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 0 12px rgba(255,215,0,0.4), 0 0 28px rgba(255,215,0,0.25), inset 0 0 18px rgba(255,215,0,0.06);
}
.neon-purple:hover h3, .neon-blue:hover h3, .neon-green:hover h3, .neon-pink:hover h3,
.neon-purple:hover .btn, .neon-blue:hover .btn, .neon-green:hover .btn, .neon-pink:hover .btn {
    color: var(--gold);
}

/* ===== COMPARISON VS CARDS ===== */
.comparison-section {
    padding: 6rem 5%; background: var(--bg-alt);
    position: relative;
}
.comparison-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}
.vs-container {
    display: flex; align-items: stretch;
    max-width: 1000px; margin: 0 auto;
    gap: 0; position: relative;
}
.vs-card {
    flex: 1; padding: 2.5rem 2rem;
    border-radius: 16px;
}
.vs-card h3 {
    font-size: 1.4rem; margin-bottom: 1.5rem;
    text-align: center;
}
.vs-card ul { list-style: none; padding: 0; }
.vs-card li {
    display: flex; align-items: center; gap: 12px;
    font-size: 1rem; color: #fff;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-sans);
}
.vs-card li:last-child { border-bottom: none; }

.vs-others {
    border-color: rgba(255,0,0,0.15) !important;
}
.vs-others h3 { color: rgba(255,255,255,0.6); }
.vs-others li { color: rgba(255,255,255,0.7); }

.vs-oriana {
    border-color: rgba(255,215,0,0.3) !important;
    box-shadow: 0 0 30px rgba(255,215,0,0.08), 0 8px 32px rgba(128,0,255,0.12) !important;
}
.vs-oriana h3 { color: var(--gold); }

.vs-circle {
    display: flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,215,0,0.1);
    border: 2px solid var(--gold);
    color: var(--gold); font-family: var(--font-serif);
    font-size: 1.1rem; font-weight: 700;
    align-self: center; margin: 0 -20px;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255,215,0,0.15);
}

@media (max-width: 768px) {
    .vs-container {
        flex-direction: column; gap: 0;
        align-items: center;
    }
    .vs-card { width: 100%; padding: 15px; }
    .vs-card h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
    .vs-card li { font-size: 14px; padding: 0.4rem 0; gap: 8px; }
    .vs-circle {
        margin: -12px 0; width: 40px; height: 40px;
        font-size: 0.8rem;
    }
}

/* ===== HERO FLEX BADGE ===== */
.hero-badge-flex {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--gold); font-family: var(--font-sans);
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px;
    padding: 8px 20px; border-radius: 50px;
    margin-bottom: 1.5rem;
    opacity: 0; transform: translateY(24px);
    animation: heroFadeUp 0.9s ease 0.45s forwards;
}
.programs-flex-badge {
    display: inline-block;
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.25);
    color: var(--gold); font-family: var(--font-sans);
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px;
    padding: 8px 22px; border-radius: 50px;
    margin-top: 1rem;
}

/* ===== FULL PROGRAM CARDS (Catalog) ===== */
.program-grid-full {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 1100px !important; gap: 24px;
    align-items: start;
}
/* Top row tattoo cards - larger */
.program-grid-full .program-highlighted .card-image { height: 240px; }
/* Bottom row - slightly smaller */
.program-grid-full .program-card-full:not(.program-highlighted) .card-image { height: 180px; }
.program-grid-full .program-card-full:not(.program-highlighted) {
    opacity: 0.92;
}
.program-grid-full .program-card-full:not(.program-highlighted):hover {
    opacity: 1;
}
.program-card-full {
    display: flex; flex-direction: column;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-radius: 16px; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.program-card-full:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.program-card-full .card-image { margin-bottom: 0; border-radius: 0; height: 160px; }
.program-card-full .card-image img { border-radius: 0; }
.program-card-body { padding: 1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex-grow: 1; }
.program-card-body h3 {
    font-size: 1rem; color: #fff; margin-bottom: 0.2rem;
    transition: color 0.3s ease;
}
.program-card-body .duration { margin-bottom: 0.5rem; font-size: 0.75rem; }
.program-price-tag {
    font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700;
    color: var(--gold); margin-bottom: 0.3rem; line-height: 1.2;
}
.program-price-detail {
    font-family: var(--font-sans); font-size: 0.78rem; font-weight: 400;
    color: var(--text-soft); display: block; margin-top: 2px;
}
.program-badges-row {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem;
}
.pbadge {
    font-family: var(--font-sans); font-size: 0.62rem; font-weight: 700;
    padding: 3px 9px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.pbadge-gold { background: rgba(255,215,0,0.15); color: var(--gold); border: 1px solid rgba(255,215,0,0.3); }
.pbadge-blue { background: rgba(255,215,0,0.1); color: #FFD700; border: 1px solid rgba(255,215,0,0.25); }
.pbadge-green { background: rgba(255,215,0,0.1); color: var(--gold); border: 1px solid rgba(255,215,0,0.25); }
.pbadge-teal { background: rgba(255,215,0,0.08); color: #FFD700; border: 1px solid rgba(255,215,0,0.2); }

.program-card-body > p { font-size: 0.95rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 0.8rem; }
.program-card-body > .btn { margin-top: auto; text-align: center; }

.program-featured-card {
    border-color: rgba(255,215,0,0.35) !important;
    box-shadow: 0 0 30px rgba(255,215,0,0.1);
}
.program-highlighted {
    transform: scale(1.03);
    border-color: rgba(255,215,0,0.4) !important;
    box-shadow: 0 0 20px rgba(255,215,0,0.15), 0 0 40px rgba(255,215,0,0.08), inset 0 1px 0 rgba(255,228,77,0.1) !important;
    z-index: 2; position: relative;
}
.program-highlighted:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 0 25px rgba(255,215,0,0.25), 0 0 50px rgba(255,215,0,0.12), inset 0 1px 0 rgba(255,228,77,0.12) !important;
}
.program-highlighted .card-image { height: 200px; }
.program-featured-label {
    position: absolute; top: 16px; right: 16px; z-index: 3;
    background: var(--gold); color: #000;
    font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700;
    padding: 5px 14px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255,215,0,0.3);
}

/* Curriculum Accordion */
.curriculum-accordion {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; margin-bottom: 1.2rem;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.curriculum-accordion:hover { border-color: rgba(255,215,0,0.2); }
.curriculum-accordion[open] { border-color: rgba(255,215,0,0.25); }
.curriculum-accordion summary {
    padding: 0.9rem 1.2rem; cursor: pointer;
    font-family: var(--font-sans); font-weight: 600;
    font-size: 0.88rem; color: var(--gold);
    list-style: none; display: flex;
    justify-content: space-between; align-items: center;
}
.curriculum-accordion summary::-webkit-details-marker { display: none; }
.curriculum-accordion summary::after {
    content: '+'; font-size: 1.2rem; color: var(--gold);
    font-weight: 300; flex-shrink: 0;
}
.curriculum-accordion[open] summary::after { content: '-'; }
.curriculum-content { padding: 0 1.2rem 1.2rem; }
.curriculum-group { margin-bottom: 1rem; }
.curriculum-group:last-child { margin-bottom: 0; }
.curriculum-group h4 {
    font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700;
    color: var(--gold); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 0.5rem; padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.curriculum-group ul { list-style: none; padding: 0; }
.curriculum-group li {
    font-size: 0.82rem; color: #fff;
    padding: 0.25rem 0 0.25rem 1rem; position: relative;
}
.curriculum-group li::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 4px; height: 4px; background: rgba(255,215,0,0.5); border-radius: 50%;
}

/* Full card colors — purple, white, gold only */
.program-card-full.neon-purple:hover, .program-card-full.neon-blue:hover,
.program-card-full.neon-green:hover, .program-card-full.neon-pink:hover {
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 0 12px rgba(255,215,0,0.4), 0 0 30px rgba(255,215,0,0.2);
}
.program-card-full.neon-purple .program-card-body h3,
.program-card-full.neon-blue .program-card-body h3,
.program-card-full.neon-green .program-card-body h3,
.program-card-full.neon-pink .program-card-body h3 { color: var(--gold); }

/* Pricing breakdown line */
.pricing-breakdown {
    font-size: 0.78rem; color: var(--text-soft);
    margin-top: -0.8rem; margin-bottom: 1.2rem;
}
.tuition-hidden {
    display: none; opacity: 0;
    transition: opacity 0.4s ease;
}
.tuition-hidden.tuition-visible {
    display: block; opacity: 1;
}
.tuition-toggle {
    opacity: 1; transition: opacity 0.4s ease;
}
.tuition-toggle.tuition-btn-hidden {
    opacity: 0; pointer-events: none;
}
.tuition-toggle {
    background: transparent; border: 1px solid rgba(255,215,0,0.4);
    color: var(--gold); font-family: var(--font-sans);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; padding: 8px 20px;
    border-radius: 6px; cursor: pointer;
    transition: all 0.3s ease; margin-bottom: 1rem;
}
.tuition-toggle:hover {
    background: rgba(255,215,0,0.1);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(255,215,0,0.15);
}

/* ===== PRICING / TUITION ===== */
.pricing-section {
    padding: 6rem 5%; background: var(--bg);
}
.pricing-grid {
    display: grid; grid-template-columns: 1.15fr 1.15fr 0.85fr 0.85fr;
    gap: 20px; max-width: 1200px; margin: 0 auto;
    align-items: start;
}
.pricing-prominent {
    border-color: rgba(255,215,0,0.4) !important;
    box-shadow: 0 0 20px rgba(255,215,0,0.15), 0 0 40px rgba(255,215,0,0.06), inset 0 1px 0 rgba(255,228,77,0.1) !important;
    transform: scale(1.02);
}
.pricing-prominent:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 0 25px rgba(255,215,0,0.25), 0 0 50px rgba(255,215,0,0.1) !important;
}
.pricing-secondary {
    opacity: 0.85;
}
.pricing-secondary:hover { opacity: 1; }
.pricing-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-radius: 16px; padding: 2rem 1.5rem;
    text-align: center; position: relative;
    display: flex; flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,215,0,0.25);
}
.pricing-featured {
    border-color: rgba(255,215,0,0.35);
    background: rgba(255,215,0,0.04);
    box-shadow: 0 0 30px rgba(255,215,0,0.08);
}
.pricing-popular {
    background: var(--gold); color: #000;
    font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700;
    padding: 4px 16px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 1px;
    display: inline-block; margin-bottom: 1rem;
}
.pricing-badges {
    display: flex; gap: 6px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 1rem;
}
.badge-plan, .badge-finance {
    font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600;
    padding: 3px 10px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-plan {
    background: rgba(255,215,0,0.1); color: var(--gold);
    border: 1px solid rgba(255,215,0,0.25);
}
.badge-finance {
    background: rgba(255,215,0,0.1); color: #FFD700;
    border: 1px solid rgba(255,215,0,0.25);
}
.pricing-card h3 {
    font-family: var(--font-serif); font-size: 1.15rem;
    color: #fff; margin-bottom: 0.4rem;
}
.pricing-duration {
    font-size: 0.8rem; color: var(--gold);
    text-transform: uppercase; letter-spacing: 1px;
    font-weight: 600; margin-bottom: 1.2rem;
}
.pricing-price {
    font-family: var(--font-sans); font-size: 1.3rem;
    font-weight: 700; color: var(--gold);
    margin-bottom: 1.5rem; letter-spacing: 0.5px;
}
.pricing-features {
    list-style: none; padding: 0; text-align: left;
    margin-bottom: 1.5rem; flex-grow: 1;
}
.pricing-features li {
    font-size: 0.88rem; color: #fff;
    padding: 0.45rem 0 0.45rem 1.4rem; position: relative;
}
.pricing-features li::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.pricing-card .btn { margin-top: auto; }
.pricing-disclaimer {
    text-align: center; max-width: 600px; margin: 2.5rem auto 0;
    font-size: 0.88rem; color: var(--text-soft); font-style: italic;
}

/* ===== WHAT'S INCLUDED ===== */
.included-section {
    padding: 6rem 5%; background: var(--bg-alt);
    position: relative;
}
.included-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}
.included-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; max-width: 1100px; margin: 0 auto;
}
.included-item {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-radius: 12px; padding: 1rem 1.2rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
.included-item:hover {
    border-color: rgba(255,215,0,0.25);
    transform: translateY(-3px);
}
.included-icon { font-size: 1.2rem; flex-shrink: 0; color: var(--gold); }
.included-item span:last-child {
    font-family: var(--font-sans); font-size: 0.9rem;
    color: #fff; font-weight: 500;
}
.included-disclaimer {
    text-align: center; max-width: 620px; margin: 2rem auto 0;
    font-size: 0.85rem; color: var(--text-soft); font-style: italic;
    line-height: 1.6;
}

/* ===== CAREER OUTCOMES ===== */
.outcomes-section {
    padding: 6rem 5%; background: var(--bg);
}
.outcomes-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; max-width: 1100px; margin: 0 auto;
}
.outcome-stat {
    text-align: center; padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.outcome-stat:hover {
    border-color: rgba(255,215,0,0.3);
    transform: translateY(-5px);
}
.outcome-stat h3 {
    font-size: 2.8rem; color: var(--gold);
    margin-bottom: 0.3rem; display: inline;
    line-height: 1;
}
.outcome-suffix {
    font-family: var(--font-serif); font-size: 1.4rem;
    color: var(--gold); font-weight: 700;
}
.outcome-stat p {
    font-size: 0.88rem; text-transform: uppercase;
    letter-spacing: 1px; margin-top: 0.8rem;
    line-height: 1.4;
}

/* ===== CAREER SUPPORT / JOB ASSISTANCE ===== */
.career-section {
    padding: 6rem 5%; background: var(--bg-alt);
    position: relative;
}
.career-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}
.career-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem; align-items: center;
}
.career-text h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem; line-height: 1.2;
}
.career-text > p {
    color: var(--text-soft); font-size: 1.15rem;
    margin-bottom: 2rem; line-height: 1.7;
}
.career-features { display: flex; flex-direction: column; gap: 1.5rem; }
.career-feature {
    display: flex; gap: 16px; align-items: flex-start;
}
.career-feature-icon {
    font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; color: var(--gold);
}
.career-feature strong {
    display: block; color: #fff; font-family: var(--font-sans);
    font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem;
}
.career-feature p {
    font-size: 0.9rem; color: var(--text-soft);
    line-height: 1.6; margin: 0;
}
.career-visual { display: flex; justify-content: center; }
.career-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-radius: 20px; padding: 3rem 2.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
    text-align: center; width: 100%; max-width: 300px;
}
.career-stat-number {
    font-family: var(--font-serif); font-size: 4rem;
    font-weight: 700; color: var(--gold);
    line-height: 1; margin-bottom: 0.8rem;
}
.career-stat-label {
    font-family: var(--font-sans); font-size: 1rem;
    color: #fff; line-height: 1.5;
}

/* ===== COMMUNITY ===== */
.community-section {
    position: relative; padding: 6rem 5%;
    background: var(--bg);
    text-align: center; overflow: hidden;
}
.community-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,215,0,0.06) 0%, transparent 70%);
}
.community-content {
    position: relative; z-index: 2;
    max-width: 750px; margin: 0 auto;
}
.community-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem;
}
.community-content > p {
    color: #fff; font-size: 1.15rem;
    line-height: 1.7; margin-bottom: 2.5rem;
}
.community-perks {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 16px; margin-bottom: 2.5rem;
}
.community-perk {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-radius: 50px; padding: 10px 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    font-family: var(--font-sans); font-size: 0.88rem;
    color: #fff; font-weight: 500;
    transition: border-color 0.3s ease;
}
.community-perk:hover { border-color: rgba(255,215,0,0.3); }
.community-perk span:first-child { font-size: 1.2rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 6rem 5%; background: var(--bg);
}
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1200px; margin: 0 auto;
}
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 16px; padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,215,0,0.25);
}
.stars {
    color: var(--gold); font-size: 1.3rem;
    letter-spacing: 2px; margin-bottom: 1rem;
}
.testimonial-text {
    color: #fff; font-size: 1.05rem;
    line-height: 1.7; font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-author strong {
    display: block; color: #fff; font-size: 0.95rem;
    font-family: var(--font-sans);
}
.testimonial-author span {
    color: var(--gold); font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 1px;
}

/* ===== ABOUT ===== */
.about-section { padding: 6rem 5%; background: var(--bg); }
.about-container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: stretch;
}
.about-image {
    position: relative;
    padding: 8px;
    border: 3px solid #FFD700;
    border-radius: 14px;
    box-shadow: 0 0 0 6px rgba(255,215,0,0.1), 0 8px 30px rgba(255,215,0,0.12), 0 0 60px rgba(255,215,0,0.05);
}
.about-img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 8px; display: block;
    filter: grayscale(10%); transition: var(--ease);
}
.about-img:hover { filter: grayscale(0%); }
.about-img-mobile { display: none; }
.gold-frame { display: none; }
.section-badge {
    display: inline-block; padding: 0.5rem 1rem;
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--gold); font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 1.5rem; border-radius: 4px;
    font-family: var(--font-sans);
}
.about-text h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem; line-height: 1.2;
}
.about-text p { color: var(--text-soft); margin-bottom: 1.2rem; font-size: 1.15rem; }
.stats {
    display: flex; gap: 3rem;
    margin-top: 2.5rem; padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item h3 { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.3rem; }
.stat-item p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* ===== VISIT THE STUDIO ===== */
.visit-section {
    position: relative; padding: 8rem 5%;
    background-image: url('./assets/images/studio.jpeg');
    background-size: cover; background-position: center;
    background-attachment: fixed;
    text-align: center;
}
.visit-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(11,11,15,0.85) 0%,
        rgba(11,11,15,0.7) 50%,
        rgba(11,11,15,0.85) 100%);
    box-shadow: inset 0 0 150px rgba(255,215,0,0.2);
}
.visit-content {
    position: relative; z-index: 2;
    max-width: 650px; margin: 0 auto;
}
.visit-content h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1.2rem;
}
.visit-content p {
    color: #fff; font-size: 1.2rem;
    margin-bottom: 2rem; line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
    padding: 6rem 5%; background: var(--bg-alt);
    position: relative;
}
.contact::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}
.contact-header {
    text-align: center; max-width: 600px; margin: 0 auto 4rem;
}
.contact-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem;
}
.contact-header p { color: var(--text-soft); font-size: 1.15rem; }
.contact-container {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 2fr; gap: 4rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-item h4 {
    color: var(--gold); margin-bottom: 0.5rem;
    font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
    font-family: var(--font-sans); font-weight: 600;
}
.info-item p { color: var(--text-soft); font-size: 0.95rem; }
.info-item a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { position: relative; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.1rem 1.3rem; color: var(--text);
    font-family: var(--font-sans); font-size: 1rem;
    transition: var(--ease); border-radius: 6px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--gold);
    background: rgba(26,26,26,0.8);
    box-shadow: 0 0 15px rgba(255,215,0,0.1);
}
.form-group label {
    position: absolute; left: 1.3rem; top: 50%; transform: translateY(-50%);
    color: var(--text-soft); transition: var(--ease);
    pointer-events: none; font-size: 1rem; opacity: 0;
}
.form-group textarea + label { top: 1.3rem; transform: none; }
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    padding-top: 1.6rem; padding-bottom: 0.6rem;
}
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 1; top: 0.5rem; font-size: 0.72rem; color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-soft); }
.form-group input:not(:placeholder-shown)::placeholder,
.form-group textarea:not(:placeholder-shown)::placeholder { opacity: 0; }

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}
.form-submit { margin-top: 0.5rem; width: 100%; }

.btn-honeybook {
    display: block; text-align: center; margin-top: 0.8rem;
    padding: 0.9rem; font-size: 0.9rem; font-weight: 600;
    color: var(--gold); border: 1px solid rgba(255,215,0,0.3);
    border-radius: 6px; transition: var(--ease);
    font-family: var(--font-sans); letter-spacing: 0.5px;
}
.btn-honeybook:hover {
    background: rgba(255,215,0,0.1);
    border-color: var(--gold);
}

/* ===== INSTRUCTORS ===== */
.instructors-section {
    padding: 6rem 5%; background: var(--bg-alt);
    position: relative;
}
.instructors-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}
.instructors-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; max-width: 1100px; margin: 0 auto;
}
.instructor-card {
    text-align: center; padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: block;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.instructor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 15px 40px rgba(255,215,0,0.1);
}
.instructor-img {
    position: relative; width: 100%; aspect-ratio: 1;
    border-radius: 12px; overflow: hidden; margin-bottom: 1.2rem;
    background: var(--bg-light);
}
.instructor-img img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(30%); transition: filter 0.3s ease;
}
.instructor-card:hover .instructor-img img { filter: grayscale(0%); }
.instructor-badge-role {
    position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #000;
    font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700;
    padding: 4px 12px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 1px;
    white-space: nowrap;
}
.instructor-card h3 {
    font-family: var(--font-serif); font-size: 1.2rem;
    color: #fff; margin-bottom: 0.3rem;
}
.instructor-card p {
    font-size: 0.85rem; color: var(--gold);
    text-transform: uppercase; letter-spacing: 1px;
}

/* ===== INSTRUCTOR PORTFOLIO ===== */
.instructor-portfolio {
    max-width: 1100px; margin: 2.5rem auto 0;
    padding: 0 5%; text-align: center;
}
.instructor-portfolio h3 {
    font-size: 1.3rem; margin-bottom: 1.5rem;
}
.instructor-portfolio h3 span { color: var(--gold); font-style: normal; }

.portfolio-thumbs {
    display: flex; gap: 12px; justify-content: center;
}
.portfolio-thumb {
    width: 160px; height: 160px; overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,215,0,0.2);
    box-shadow: 0 4px 16px rgba(255,215,0,0.06);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-thumb:hover {
    transform: scale(1.06);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 8px 24px rgba(255,215,0,0.12);
}
.portfolio-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.portfolio-thumb:hover img { transform: scale(1.1); }

@media (max-width: 768px) {
    .portfolio-thumbs { gap: 8px; }
    .portfolio-thumb { width: 100px; height: 100px; }
}

/* ===== STUDENTS IN ACTION GALLERY ===== */
.gallery-section {
    padding: 6rem 5%; background: var(--bg);
}
.masonry-grid {
    max-width: 1200px; margin: 0 auto;
    columns: 3; column-gap: 16px;
}
.masonry-item {
    break-inside: avoid; margin-bottom: 16px;
    border-radius: 12px; overflow: hidden;
    position: relative;
}
.masonry-item img {
    width: 100%; display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(20%);
}
.masonry-item:hover img {
    transform: scale(1.04); filter: grayscale(0%);
}
.masonry-tall {
    /* Taller items for visual variety - inherent from image aspect ratio */
}

/* Graduation Photo Grid */
.grad-photos-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 1100px; margin: 2.5rem auto 0;
}
.grad-photos-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}
.grad-photo {
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,215,0,0.2);
    box-shadow: 0 4px 20px rgba(255,215,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.grad-photo:hover {
    transform: scale(1.04);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 8px 30px rgba(255,215,0,0.15);
}
.grad-photo img {
    width: 100%; height: auto; display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.grad-photo:hover img { transform: scale(1.06); }

/* Privacy blur overlay on certificates */
.cert-privacy { position: relative; }
.cert-blur-overlay { display: none; }

@media (max-width: 1024px) {
    .grad-photos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grad-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 10px; }
    .grad-photo img { max-height: 180px; object-fit: cover; }
}

/* ===== STUDIO GALLERY ===== */
.studio-gallery-section {
    padding: 6rem 5%; background: var(--bg);
}
.studio-masonry {
    max-width: 1200px; margin: 0 auto;
    columns: 3; column-gap: 16px;
}
.studio-photo {
    break-inside: avoid; margin-bottom: 16px;
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,215,0,0.15);
    box-shadow: 0 4px 20px rgba(255,215,0,0.06);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.studio-photo:hover {
    transform: scale(1.03);
    border-color: rgba(255,215,0,0.35);
    box-shadow: 0 8px 30px rgba(255,215,0,0.12);
}
.studio-photo img {
    width: 100%; display: block;
    transition: transform 0.4s ease;
}
.studio-photo:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 100000;
    justify-content: center; align-items: center;
    cursor: pointer;
}
.lightbox.lightbox-open { display: flex; }
.lightbox img {
    max-width: 90vw; max-height: 90vh;
    border-radius: 8px; object-fit: contain;
    box-shadow: 0 0 40px rgba(255,215,0,0.15);
}
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    color: #fff; font-size: 2.5rem; font-weight: 300;
    cursor: pointer; transition: color 0.3s ease;
    z-index: 100001;
}
.lightbox-close:hover { color: var(--gold); }

@media (max-width: 1024px) {
    .studio-masonry { columns: 2; }
}
@media (max-width: 768px) {
    .studio-masonry { columns: 1; column-gap: 12px; }
    .studio-photo { margin-bottom: 12px; }
    .studio-gallery-section { padding: 4rem 5%; }
}

/* ===== FINANCING ===== */
.financing-section {
    padding: 6rem 5%; background: var(--bg-alt);
    position: relative;
}
.financing-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}
.financing-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem; align-items: center;
}
.financing-text h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.2rem; line-height: 1.2;
}
.financing-text > p {
    color: var(--text-soft); font-size: 1.15rem;
    margin-bottom: 1.5rem; line-height: 1.7;
}
.financing-list {
    list-style: none; padding: 0; margin-bottom: 2rem;
}
.financing-list li {
    font-size: 1rem; color: #fff;
    padding: 0.6rem 0 0.6rem 1.8rem; position: relative;
}
.financing-list li::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 8px; height: 8px; background: var(--gold);
}
.financing-buttons {
    display: flex; gap: 14px; flex-wrap: wrap;
}
.financing-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.financing-card-header {
    background: var(--gold); color: #000;
    padding: 1.2rem; text-align: center;
    font-family: var(--font-sans); font-weight: 700;
    font-size: 1.1rem; letter-spacing: 0.5px;
}
.financing-card-body { padding: 1.5rem; }
.financing-feature {
    display: flex; align-items: center; gap: 10px;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem; color: #fff;
}
.financing-feature:last-child { border-bottom: none; }
.financing-check { font-size: 1.1rem; }

/* ===== VETERANS ===== */
.veterans-section {
    position: relative;
    padding: 5rem 5%;
    background: linear-gradient(135deg, #0b0b0f 0%, #0f0d14 50%, #0b0b0f 100%);
    text-align: center;
    overflow: hidden;
}
.veterans-accent-top, .veterans-accent-bottom {
    position: absolute; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg,
        #B22234 0%, #B22234 33%,
        #ffffff 33%, #ffffff 66%,
        #3C3B6E 66%, #3C3B6E 100%);
    opacity: 0.5;
}
.veterans-accent-top { top: 0; }
.veterans-accent-bottom { bottom: 0; }
.veterans-content {
    max-width: 720px; margin: 0 auto;
    position: relative; z-index: 2;
}
/* Flag Animation — small, subtle, dignified */
.flag-container {
    display: inline-block; margin-bottom: 1.5rem;
    perspective: 600px; cursor: pointer;
    padding: 12px; border-radius: 8px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 40%, rgba(11,11,15,0.7) 100%);
    box-shadow: 0 0 40px rgba(0,0,0,0.5), inset 0 0 30px rgba(0,0,0,0.3);
}
.flag-svg {
    width: 80px; height: auto;
    border-radius: 3px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6)) brightness(0.85) saturate(0.8);
    animation: flagWave 8s ease-in-out infinite;
    transition: filter 0.5s ease;
    transform-origin: left center;
}
.flag-container:hover .flag-svg {
    animation: flagWaveHover 5s ease-in-out infinite;
    filter: drop-shadow(0 2px 14px rgba(0,0,0,0.7)) brightness(0.95) saturate(0.9);
}
@keyframes flagWave {
    0%, 100% { transform: rotateY(0deg) skewY(0deg); }
    25% { transform: rotateY(1.5deg) skewY(-0.2deg); }
    50% { transform: rotateY(-1deg) skewY(0.2deg); }
    75% { transform: rotateY(1deg) skewY(-0.15deg); }
}
@keyframes flagWaveHover {
    0%, 100% { transform: rotateY(0deg) skewY(0deg); }
    20% { transform: rotateY(2.5deg) skewY(-0.4deg); }
    40% { transform: rotateY(-2deg) skewY(0.3deg); }
    60% { transform: rotateY(2deg) skewY(-0.3deg); }
    80% { transform: rotateY(-1deg) skewY(0.15deg); }
}
.veterans-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.2rem; line-height: 1.25;
    color: #fff;
}
.veterans-section p {
    font-size: 1.08rem; color: #fff;
    line-height: 1.7; margin-bottom: 2rem;
    max-width: 620px; margin-left: auto; margin-right: auto;
}
.veterans-notice {
    display: inline-block; max-width: 600px;
    margin: 0 auto 2rem; padding: 1rem 1.5rem;
    background: rgba(178,34,52,0.1);
    border: 1px solid rgba(178,34,52,0.3);
    border-radius: 8px;
    font-family: var(--font-sans); font-size: 0.92rem;
    font-weight: 600; color: #ff8a8a;
    line-height: 1.5; letter-spacing: 0.3px;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 6rem 5%; background: var(--bg);
}
.faq-list {
    max-width: 800px; margin: 0 auto;
}
.faq-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; margin-bottom: 12px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
.faq-item:hover { border-color: rgba(255,215,0,0.2); }
.faq-item[open] { border-color: rgba(255,215,0,0.3); }
.faq-item summary {
    padding: 1.2rem 1.5rem; cursor: pointer;
    font-family: var(--font-sans); font-weight: 600;
    font-size: 1rem; color: #fff;
    list-style: none; display: flex;
    justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.4rem; color: var(--gold);
    font-weight: 300; transition: transform 0.3s ease;
    flex-shrink: 0; margin-left: 1rem;
}
.faq-item[open] summary::after {
    content: '-';
}
.faq-item p {
    padding: 0 1.5rem 1.3rem;
    font-size: 0.95rem; color: var(--text-soft);
    line-height: 1.7;
}

/* ===== REFUND POLICY ===== */
.refund-section {
    padding: 6rem 5%; background: var(--bg);
    position: relative;
}
.refund-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}
.refund-container {
    max-width: 850px; margin: 0 auto;
}
.refund-container h2 {
    font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem;
    text-align: center;
}
.refund-container h3 {
    font-size: 1.2rem; color: var(--gold);
    margin: 2rem 0 0.8rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.refund-content p {
    font-size: 0.95rem; color: #fff;
    line-height: 1.7; margin-bottom: 1.2rem;
}
.refund-list {
    list-style: none; padding: 0; margin-bottom: 1.5rem;
}
.refund-list li {
    font-size: 0.92rem; color: #fff;
    padding: 0.7rem 0 0.7rem 1.6rem; position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    line-height: 1.6;
}
.refund-list li:last-child { border-bottom: none; }
.refund-list li::before {
    content: ''; position: absolute; left: 0; top: 1.1rem;
    width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.refund-list li strong { color: #fff; }
.refund-calc li { padding-left: 1.6rem; }
.refund-va-notice {
    margin-top: 2rem; padding: 1.2rem 1.5rem;
    background: rgba(255,215,0,0.06);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 10px;
    font-size: 0.88rem; color: #fff;
    line-height: 1.6; font-style: italic;
}

/* ===== FOOTER ===== */
footer {
    background: #050505; padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 3rem;
}
.footer-logo-img {
    height: 170px; width: auto; margin-bottom: 1rem;
    filter: drop-shadow(0 0 6px rgba(255,215,0,0.2));
}
.footer-tagline { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 1rem; }
.socials { display: flex; gap: 18px; align-items: center; }
.socials a {
    color: #FFD700; font-size: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    transition: all 0.3s ease;
}
.socials a i { font-size: 24px; }
.socials a:hover {
    color: #FFE44D;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.6));
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--gold); font-family: var(--font-sans);
    font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: var(--text-soft); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1200px; margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.footer-license {
    color: var(--gold) !important; font-size: 0.85rem !important;
    font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 0.5rem !important;
}
.footer-bottom p { color: var(--text-soft); font-size: 0.82rem; }

/* ======================================================
   RESPONSIVE - TABLET
   ====================================================== */
@media (max-width: 1024px) {
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .program-grid-full { grid-template-columns: repeat(2, 1fr) !important; }
    .why-two-col { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .included-grid { grid-template-columns: repeat(3, 1fr); }
    .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
    .career-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .instructors-grid { grid-template-columns: repeat(2, 1fr); }
    .financing-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .masonry-grid { columns: 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ======================================================
   RESPONSIVE - MOBILE (iPhone optimized)
   ====================================================== */
@media (max-width: 768px) {

    /* Navbar - revert to side-by-side on mobile */
    .nav-container { flex-wrap: nowrap; justify-content: space-between; }
    .logo { flex: 0 0 auto; text-align: left; }
    .logo img { height: 55px; }
    #navbar.scrolled .logo img { height: 55px; }

    .mobile-menu-btn { display: flex; gap: 7px; padding: 5px; }
    .mobile-menu-btn span { width: 28px; height: 2px; }

    .nav-links {
        position: fixed; top: 0; right: -100%;
        height: 100vh; width: 80%; max-width: 320px;
        background: var(--bg-alt);
        flex-direction: column; justify-content: center;
        transition: var(--ease);
        border-left: 1px solid rgba(255,215,0,0.1);
        gap: 2rem;
    }
    .nav-links.active { right: 0; }

    /* Hero */
    .hero { min-height: auto; padding-top: 110px; padding-bottom: 0; }
    .hero-section {
        background-image: url('./assets/images/oriana-hero.jpg');
        background-position: center center;
        background-size: cover;
        background-attachment: scroll;
    }
    .hero-content { padding-top: 10px; padding-bottom: 2.5rem; }
    .hero-legacy-badge { font-size: 11px; letter-spacing: 1px; padding: 7px 16px; white-space: nowrap; }
    .hero-credential-strip { font-size: 9px; letter-spacing: 1.5px; padding: 5px 12px; }
    .hero-buttons {
        flex-direction: column; align-items: stretch;
        width: 100%; padding: 0 20px;
    }
    .hero-buttons .btn,
    .hero-buttons .btn-hero-purple,
    .hero-buttons .btn-hero-gold {
        text-align: center; width: 100%;
        box-sizing: border-box; display: block;
        padding: 18px 24px; font-size: 1.05rem;
        min-height: 56px;
    }
    .fl-edu-logo { height: 20px !important; }

    /* Trust bar — 2x2 grid on mobile (sits as its own block below the hero now) */
    .trust-bar {
        display: grid; grid-template-columns: 1fr 1fr;
        overflow-x: visible; padding: 0;
        width: 100%;
    }
    .trust-item { color: #fff; }
    /* Hero needs proper bottom padding so the gold Apply Now button breathes */
    .hero { padding-bottom: 28px; }
    .hero-content { padding-bottom: 0; }
    .hero-buttons { margin-bottom: 0; }
    .trust-item {
        white-space: normal; padding: 10px 10px;
        font-size: 11px; justify-content: center;
        border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.05); }
    .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }

    /* Why section - tight to trust bar */
    .why-section { padding: 1.5rem 5% 3rem; }
    .section-inner h2 { font-size: 1.35rem; letter-spacing: 1px; }
    .why-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
    .why-image { order: -1; }
    .why-image img { max-height: 250px; }

    /* Programs */
    .program-grid { grid-template-columns: 1fr; }
    .program-grid-full { grid-template-columns: 1fr !important; }
    .program-grid-full .program-highlighted .card-image,
    .program-grid-full .program-card-full:not(.program-highlighted) .card-image { height: 200px; }
    .program-grid-full .program-card-full:not(.program-highlighted) { opacity: 1; }
    .program-highlighted { transform: none; }
    .program-highlighted:hover { transform: translateY(-6px); }
    .program-card { border-radius: 20px; padding: 20px; margin-bottom: 8px; }
    .program-card-full .card-image { height: 200px; }
    .program-card-body { padding: 1.2rem 1.4rem 1.5rem; }
    .program-price-tag { font-size: 1.5rem; }
    .card-image { height: 200px; }
    .program-card .btn { width: 100%; text-align: center; padding: 14px; }
    .program-card-body > .btn { width: 100%; }

    /* Steps */
    .steps-grid { grid-template-columns: repeat(2, 1fr) !important; }

    /* Comparison */
    .comparison-section { padding: 4rem 5%; }
    .comparison-table { font-size: 0.82rem; }
    .comparison-table th, .comparison-table td { padding: 12px 14px; }

    /* Pricing */
    .pricing-section { padding: 4rem 5%; }
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-prominent { transform: none; }
    .pricing-prominent:hover { transform: translateY(-6px); }
    .pricing-secondary { opacity: 1; }
    .pricing-card { padding: 1.8rem 1.5rem; }

    /* Included */
    .included-section { padding: 4rem 5%; }
    .included-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .included-item { padding: 0.8rem 1rem; }
    .included-item span:last-child { font-size: 0.82rem; }

    /* Career Outcomes */
    .outcomes-section { padding: 4rem 5%; }
    .outcomes-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .outcome-stat { padding: 1.8rem 1rem; }
    .outcome-stat h3 { font-size: 2.2rem; }

    /* Career Support */
    .career-section { padding: 4rem 5%; }
    .career-container { grid-template-columns: 1fr; gap: 2rem; }
    .career-stat-card { max-width: 100%; }

    /* Community */
    .community-section { padding: 4rem 5%; }
    .community-perks { gap: 10px; }
    .community-perk { font-size: 0.82rem; padding: 8px 14px; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* About */
    .about-container {
        grid-template-columns: 1fr; gap: 2rem;
    }
    .about-image { order: 1; }
    .about-text { order: 2; }
    .about-img { height: auto; max-height: 300px; }
    .about-img-desktop { display: none; }
    .about-img-mobile { display: block; }
    .gold-frame { display: none; }
    .stats { gap: 1.5rem; }
    .stat-item h3 { font-size: 2rem; }

    /* Instructors */
    .instructors-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Gallery */
    .gallery-section { padding: 4rem 5%; }
    .masonry-grid { columns: 2; column-gap: 12px; }
    .masonry-item { margin-bottom: 12px; }

    /* Financing */
    .financing-section { padding: 4rem 5%; }
    .financing-container { grid-template-columns: 1fr; gap: 2rem; }
    .financing-buttons { flex-direction: column; }
    .financing-buttons .btn { text-align: center; }

    /* FAQ */
    .faq-section { padding: 4rem 5%; }

    /* Visit */
    .visit-section {
        background-attachment: scroll;
        padding: 5rem 5%;
    }

    /* Contact */
    .contact { padding: 4rem 5%; }
    .contact-container { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .socials { justify-content: center; }
    .footer-logo-img { margin: 0 auto 1rem; }
    .footer-col ul { align-items: center; }

    /* Mobile CTAs — visible on mobile only */
    .mobile-cta {
        display: flex; flex-direction: column; align-items: center;
        gap: 12px; padding: 1.5rem 5%;
        background: rgba(255,255,255,0.03);
        border-top: 1px solid rgba(255,215,0,0.1);
        border-bottom: 1px solid rgba(255,215,0,0.1);
    }
    .mobile-cta .btn-hero-gold, .mobile-cta .btn-hero-purple {
        width: 100%; text-align: center; box-sizing: border-box;
    }
    .mobile-cta-phone {
        color: var(--gold); font-family: var(--font-sans);
        font-size: 0.9rem; font-weight: 600;
    }
    .mobile-cta .financing-icons { margin-bottom: 0.5rem; }
    .mobile-cta .financing-icon-badge { font-size: 0.7rem; padding: 6px 10px; }

    /* Compact program cards on mobile */
    .program-card-body > p { font-size: 0.85rem; line-height: 1.5;
        display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Mobile break images — only visible on mobile */
    .mobile-break-img, .mobile-early-certs {
        display: block; width: 100%; margin: 16px 0;
        border-radius: 12px; overflow: hidden;
    }
    .mobile-break-img img {
        width: 100%; max-height: 220px;
        object-fit: cover; border-radius: 12px;
    }

    /* All section images capped on mobile */
    .about-img { max-height: 250px !important; }
    .studio-photo img, .grad-photo img, .masonry-item img { max-height: 250px; object-fit: cover; }

    /* Program card images at top, always visible */
    .program-card-full .card-image { height: 200px !important; }
}

/* Mobile break images hidden on desktop */
/* Mobile break images hidden on desktop */
.mobile-break-img { display: none; }
.mobile-early-certs { display: none; }
.mobile-early-certs .grad-photos-grid { margin-top: 0; padding: 0 5%; }

/* Mobile CTAs hidden on desktop */
.mobile-cta { display: none; }

/* Financing icon badges */
.financing-icons {
    display: flex; gap: 10px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 1rem;
}
.financing-icon-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 8px; padding: 8px 14px;
    font-family: var(--font-sans); font-size: 0.8rem;
    color: var(--gold); font-weight: 600;
}

/* ===== EXTRA SMALL (iPhone SE) ===== */
@media (max-width: 375px) {
    .hero-title { font-size: 26px; }
    .hero-desc { font-size: 0.9rem; }
    .hero-badge-flex { font-size: 0.72rem; padding: 6px 14px; }
    .steps-grid { grid-template-columns: 1fr !important; }
    .stats { flex-direction: column; gap: 1rem; text-align: center; }
    .instructors-grid { grid-template-columns: 1fr !important; }
    .masonry-grid { columns: 1; }
    .included-grid { grid-template-columns: 1fr; }
    .outcomes-grid { grid-template-columns: 1fr; }
    .community-perks { flex-direction: column; align-items: center; }
}

/* ===== INNER PAGES ===== */
.scrolled-always {
    background: rgba(11,11,15,0.85) !important;
    backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255,215,0,0.1);
}
.active-link { color: var(--gold) !important; }

.page-hero {
    padding: 12rem 5% 5rem; text-align: center;
    background: linear-gradient(135deg, var(--bg) 0%, #0f0d14 50%, var(--bg) 100%);
    position: relative;
}
.page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}
.page-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1rem;
}
.page-hero-content p {
    font-size: 1.2rem; color: #fff;
    max-width: 550px; margin: 0 auto;
}

.inner-section { padding: 5rem 5%; }
.inner-section-alt { background: var(--bg-alt); }
.inner-container {
    max-width: 1100px; margin: 0 auto;
}
.inner-container h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem; text-align: center;
}

.inner-program {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.inner-program h3 { color: var(--gold); margin-bottom: 0.3rem; }
.inner-program h4 { color: #fff; font-family: var(--font-sans); font-size: 1rem; margin: 1.5rem 0 0.8rem; }
.inner-program h5 { color: var(--gold); font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.inner-program .duration { color: var(--gold); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 1rem; }

.inner-curriculum-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 1rem;
}
.inner-curriculum-grid ul { list-style: none; padding: 0; }
.inner-curriculum-grid li {
    font-size: 0.9rem; color: #fff;
    padding: 0.3rem 0 0.3rem 1rem; position: relative;
}
.inner-curriculum-grid li::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}

.inner-list { list-style: none; padding: 0; }
.inner-list li {
    font-size: 1rem; color: #fff;
    padding: 0.6rem 0 0.6rem 1.5rem; position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.inner-list li:last-child { border-bottom: none; }
.inner-list li::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}

.inner-two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
}

.inner-disclaimer {
    font-size: 0.85rem; color: var(--text-soft);
    font-style: italic; margin-top: 1.5rem;
}

/* Tuition Table */
.tuition-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tuition-table {
    width: 100%; border-collapse: collapse;
    font-family: var(--font-sans); font-size: 1rem;
}
.tuition-table th, .tuition-table td {
    padding: 1.2rem 1.5rem; text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tuition-table thead th {
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.8rem; color: var(--gold);
}
.tuition-table td { color: #fff; }
.tuition-table td:first-child { color: #fff; font-weight: 500; }
.tuition-total { color: var(--gold) !important; font-weight: 700 !important; font-size: 1.1rem; }

/* Mobile tuition cards */
.tuition-mobile { display: none; }
.tuition-card {
    padding: 1.5rem; margin-bottom: 16px;
}
.tuition-card h3 {
    color: var(--gold); font-size: 1.1rem;
    margin-bottom: 1rem; padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tuition-card-row {
    display: flex; justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.95rem;
}
.tuition-card-row:last-child { border-bottom: none; }
.tuition-card-row span:first-child { color: rgba(255,255,255,0.6); }
.tuition-card-row span:last-child { color: #fff; font-weight: 500; }
.tuition-card-total span:last-child {
    color: var(--gold) !important; font-weight: 700 !important;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .tuition-desktop { display: none; }
    .tuition-mobile { display: block; }
}

/* Tour Info Card */
.tour-info-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 2rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.tour-info-card h3 {
    font-family: var(--font-sans); font-size: 0.9rem;
    margin-bottom: 0.4rem; margin-top: 1.5rem;
}
.tour-info-card h3:first-child { margin-top: 0; }
.tour-info-card p { font-size: 0.95rem; margin-bottom: 0; }

/* Map */
.map-embed { margin-top: 2rem; }

/* Apply Options */
.apply-options {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; max-width: 800px; margin: 0 auto;
}
.apply-option-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 2.5rem 2rem;
    text-align: center; position: relative;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.apply-option-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.3);
}
.apply-option-card h3 { color: #fff; margin-bottom: 1rem; font-size: 1.3rem; }
.apply-option-card p { margin-bottom: 1.5rem; }
.apply-option-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #000;
    font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700;
    padding: 4px 16px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 1px;
}

/* Inner page responsive */
@media (max-width: 768px) {
    .page-hero { padding: 9rem 5% 3rem; }
    .inner-curriculum-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .inner-two-col { grid-template-columns: 1fr; gap: 2rem; }
    .apply-options { grid-template-columns: 1fr; }
    .inner-program { padding: 1.5rem; }
    .tuition-table { font-size: 0.85rem; }
    .tuition-table th, .tuition-table td { padding: 0.8rem 1rem; }
}

/* ===== SAFE AREA (notch/dynamic island) ===== */
@supports (padding: env(safe-area-inset-top)) {
    #navbar { padding-top: calc(0.6rem + env(safe-area-inset-top)); }
    footer { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
}

/* ===== Netlify Forms — Thank-you message ===== */
.form-success {
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 14px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 1rem auto;
    max-width: 640px;
    animation: formSuccessFadeIn 0.5s ease forwards;
}
.form-success-icon {
    font-size: 3.5rem;
    color: var(--gold, #FFD700);
    margin-bottom: 1rem;
    line-height: 1;
}
.form-success h3 {
    font-family: var(--font-serif, "Playfair Display", serif);
    font-size: 2rem;
    color: #fff;
    margin: 0 0 0.75rem 0;
}
.form-success p {
    font-family: var(--font-sans, "Outfit", sans-serif);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    letter-spacing: 0.3px;
}
@keyframes formSuccessFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
    .form-success { padding: 2.25rem 1.5rem; }
    .form-success-icon { font-size: 2.75rem; }
    .form-success h3 { font-size: 1.6rem; }
}

/* ===== EN/ES Language Toggle (custom JS — gold pill in nav) ===== */
.lang-toggle-item { display: flex; align-items: center; }
.lang-toggle-btn {
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: var(--gold, #FFD700);
    font-family: var(--font-sans, inherit);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 7px 12px;
    border-radius: 50px;
    cursor: pointer;
    min-width: 40px;
    text-align: center;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.lang-toggle-btn:hover,
.lang-toggle-btn:focus-visible {
    background: var(--gold, #FFD700);
    color: #000;
    border-color: var(--gold, #FFD700);
    outline: none;
}

@media (max-width: 768px) {
    .lang-toggle-btn { font-size: 0.85rem; padding: 10px 14px; }
}

/* ===== FIX 4 — Book a Tour / Apply Now: full-width & larger on mobile ===== */
@media (max-width: 640px) {
    .btn-hero-purple,
    .btn-hero-gold,
    a.btn-primary:not(.nav-cta),
    .btn-gold-outline {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 18px 24px;
        font-size: 1.05rem;
        min-height: 56px;
        line-height: 1.2;
    }
    /* Stack side-by-side CTAs into a column on mobile */
    .hero-buttons,
    .apply-options .apply-option-card .btn,
    .btn-group,
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
        width: 100%;
    }
}
/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: #0a0a0a;
  padding: 80px 20px;
  text-align: center;
}
.testimonials-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b44fff;
  margin-bottom: 12px;
}
.testimonials-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.testimonials-title span { color: #b44fff; }
.testimonials-subtitle {
  font-size: 16px;
  color: #888;
  max-width: 500px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.video-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: #b44fff;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.testimonials-cta {
  display: inline-block;
  background: #b44fff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonials-cta:hover {
  background: #9b35e0;
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .videos-grid { grid-template-columns: 1fr; }
}
/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 60px;
    background: linear-gradient(180deg, rgba(124,58,237,0.18) 0%, transparent 100%);
    border-bottom: 1px solid rgba(192,132,252,0.15);
}
.page-hero-content h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 1rem; }
.page-hero-content p { max-width: 600px; margin: 0 auto 1.5rem; font-size: 1.1rem; }

/* ===== PROGRAM ICON (overview cards on homepage) ===== */
.program-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

/* ===== NAV ACTIVE STATE ===== */
.nav-active {
    color: var(--gold) !important;
    font-weight: 700;
}

/* ===== TUITION BLOCK inside program cards ===== */
.program-tuition-block {
    margin: 1.2rem 0;
}
