/* ===== THINK2FINISH ACADEMY — Premium White & Orange Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    color-scheme: light;
    --bg: #ffffff;
    --bg-warm: #fff8f2;
    --bg-orange-subtle: #fff4eb;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-soft: rgba(255, 255, 255, 0.75);
    --surface-strong: rgba(255, 240, 228, 0.95);
    --text: #1a1a2e;
    --text-secondary: #4a4a5a;
    --muted: #6b6b7b;
    --accent: #ff6d00;
    --accent-light: #ff8f3d;
    --accent-soft: #ff964d;
    --accent-strong: #e85d00;
    --accent-glow: rgba(255, 109, 0, 0.25);
    --white: #ffffff;
    --border: rgba(255, 109, 0, 0.12);
    --border-light: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 8px 32px rgba(255, 109, 0, 0.1);
    --shadow-lg: 0 24px 64px rgba(255, 109, 0, 0.15);
    --shadow-xl: 0 32px 80px rgba(255, 140, 30, 0.18);
    --radius-sm: 0.75rem;
    --radius: 1.25rem;
    --radius-lg: 1.75rem;
    --radius-xl: 2.5rem;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Inter', 'Outfit', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; padding: 0; }

/* ===== UTILITIES ===== */
.container {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== ANIMATED BACKGROUND ELEMENTS ===== */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}
.bg-glow-1 {
    top: -200px;
    right: -200px;
    background: var(--accent);
    animation: float-glow 20s ease-in-out infinite;
}
.bg-glow-2 {
    bottom: -300px;
    left: -200px;
    background: var(--accent-light);
    animation: float-glow 25s ease-in-out infinite reverse;
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

main {
    margin-top: 5rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 2rem;
}

.brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.main-nav a {
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.main-nav a:hover {
    color: var(--accent);
    background: var(--bg-orange-subtle);
}

.main-nav a.active {
    color: var(--accent-strong);
    background: var(--bg-orange-subtle);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    gap: 5px;
    flex-direction: column;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--bg-orange-subtle);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 999px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 50%, var(--bg-orange-subtle) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 109, 0, 0.06) 0%, transparent 70%);
    animation: pulse-slow 8s ease-in-out infinite;
}

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

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

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.08), rgba(255, 109, 0, 0.04));
    border-radius: 999px;
    border: 1px solid rgba(255, 109, 0, 0.12);
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    line-height: 1.1;
    color: var(--text);
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.hero-copy p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 12px 36px rgba(255, 109, 0, 0.35);
    background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

/* ===== HERO CARD ===== */
.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.hero-stats {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 1.25rem;
}

.hero-stats div {
    background: linear-gradient(135deg, var(--bg-orange-subtle), var(--bg-warm));
    border-radius: var(--radius);
    padding: 1rem 0.75rem;
    text-align: center;
    border: 1px solid rgba(255, 109, 0, 0.08);
    transition: var(--transition);
}

.hero-stats div:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-stats strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

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

.section-light {
    background: var(--bg);
}

.section-warm {
    background: var(--bg-warm);
}

.section-orange {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: var(--white);
}

.section-orange h2,
.section-orange h3,
.section-orange .eyebrow,
.section-orange strong {
    color: var(--white);
}

.section-orange .eyebrow {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.section-orange p {
    color: rgba(255, 255, 255, 0.9);
}

.section-dark {
    background: var(--text);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark strong {
    color: var(--white);
}

.section-dark .eyebrow {
    background: rgba(255, 109, 0, 0.15);
    border-color: rgba(255, 109, 0, 0.25);
}

.section-dark p,
.section-dark span {
    color: rgba(255, 255, 255, 0.75);
}

.section-header {
    max-width: 720px;
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 1rem;
    font-size: 1.05rem;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== GRID LAYOUTS ===== */
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card-grid,
.program-grid,
.testimonial-grid,
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

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

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--bg-orange-subtle), rgba(255, 109, 0, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p, .course-card p, .info-card p, .program-card p, .faq-card p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Legacy card classes */
.course-card,
.info-card,
.program-card,
.faq-card,
.testimonial-card,
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.course-card:hover,
.info-card:hover,
.program-card:hover,
.faq-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.section-dark .course-card,
.section-dark .info-card,
.section-dark .program-card,
.section-dark .faq-card,
.section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.course-card h3,
.info-card h3,
.program-card h3,
.faq-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text);
}

.section-dark .course-card h3,
.section-dark .info-card h3,
.section-dark .program-card h3,
.section-dark .faq-card h3 {
    color: var(--white);
}

/* ===== BADGE ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    margin-bottom: 1rem;
    width: fit-content;
}

/* ===== STATS COUNTER ===== */
.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card strong,
.stats-grid strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-card span,
.stats-grid span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.stats-grid div {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.stats-grid div:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.section-dark .stats-grid div {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .stats-grid strong {
    color: var(--accent-light);
}

/* ===== IMAGE GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(255, 109, 0, 0.4));
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item.span-2 {
    grid-column: span 2;
    grid-row: span 2;
}

/* ===== MARQUEE / SCROLLING BANNER ===== */
.marquee-section {
    padding: 2rem 0;
    background: var(--text);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marquee-track span.highlight {
    color: var(--accent);
    opacity: 0.6;
}

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

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Outfit', serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 109, 0, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-card strong {
    color: var(--text);
    margin-top: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-card strong::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

/* ===== CTA CARD ===== */
.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-orange-subtle) 0%, rgba(255, 237, 220, 0.95) 100%);
    border: 1px solid rgba(255, 109, 0, 0.15);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 109, 0, 0.06);
}

.cta-card h2 {
    color: var(--text);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

/* ===== FEATURE CARDS ===== */
.feature-card h2 {
    margin-bottom: 1.5rem;
}

.feature-card ul,
.feature-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.feature-card li,
.feature-list li {
    position: relative;
    padding-left: 2rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.feature-card li::before,
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.feature-cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ===== PROGRAM CARDS ===== */
.program-card {
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.program-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.program-card:hover::after {
    transform: scaleX(1);
}

/* ===== IMAGE SHOWCASE GRID ===== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.showcase-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.showcase-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
}

.showcase-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.showcase-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ===== PROCESS / HOW IT WORKS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: process;
}

.process-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    counter-increment: process;
}

.process-card::before {
    content: counter(process, decimal-leading-zero);
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 109, 0, 0.1);
    display: block;
    margin-bottom: 0.75rem;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.process-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.course-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.course-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.course-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.course-detail-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.course-detail-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.course-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--bg-orange-subtle);
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.free-course-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.free-course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.free-course-card h3 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.75rem;
}

.free-course-card p {
    color: var(--muted);
    line-height: 1.7;
}

/* ===== PLACEMENT GRID ===== */
.placement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ===== CONTACT ===== */
.contact-hero .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
    gap: 2.5rem;
}

.contact-info-cards {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info-cards div {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: var(--transition);
}

.contact-info-cards div:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-info-cards strong {
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
}

.contact-form {
    display: grid;
    gap: 1.25rem;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form label {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: grid;
    gap: 0.4rem;
}

.contact-form select,
.contact-form textarea,
.contact-form input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-light);
    background: var(--bg-warm);
    color: var(--text);
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--white);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
}

.alert.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #166534;
}

.alert.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

/* ===== PARTNER BANNER ===== */
.partner-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.partner-logo {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--accent-light);
    border-color: var(--accent);
    background: rgba(255, 109, 0, 0.1);
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-card h3 {
    margin-bottom: 0.75rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-size: 0.92rem;
}

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-note {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    padding-top: 3rem;
}

/* ===== MENTORSHIP ===== */
.mentorship-grid .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    animation: bounce-subtle 2s ease-in-out infinite;
}

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

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===== COUNTER ANIMATION ===== */
.counter {
    font-variant-numeric: tabular-nums;
}

/* ===== IMAGE SLIDER / CAROUSEL ===== */
.image-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-track img {
    min-width: 100%;
    height: 400px;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 999px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

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

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

@media (max-width: 768px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
        overflow: visible;
    }

    .header-inner {
        position: relative;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: -1rem;
        right: -1rem;
        width: calc(100% + 2rem);
        z-index: 1001;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        display: none;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        border-bottom-left-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
    }

    .main-nav.open {
        display: flex !important;
    }

    .main-nav a {
        padding: 0.85rem 1rem;
        width: 100%;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: var(--bg-orange-subtle);
    }

    html, body {
        overflow-x: hidden;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .btn {
        width: 100%;
    }

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

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

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

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

    .gallery-item.span-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .program-grid,
    .card-grid,
    .testimonial-grid,
    .success-grid,
    .faq-grid,
    .placement-grid {
        grid-template-columns: 1fr;
    }

    .section-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .program-card,
    .course-card {
        min-height: auto;
    }

    .partner-banner {
        gap: 1rem;
    }

    .partner-logo {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ===== LARGE SCREENS ===== */
@media (min-width: 1025px) {
    .card-grid,
    .program-grid,
    .success-grid,
    .testimonial-grid,
    .free-course-grid,
    .course-list {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (min-width: 1400px) {
    .placement-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    z-index: 997;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-top:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== LOADING ANIMATION ===== */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== TRUST BADGES STRIP ===== */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.trust-badge .icon {
    font-size: 1.2rem;
}
