﻿:root {
    --bg: #ffffff;
    --card: #ffffff;
    --muted: #475569;
    --accent: #2563eb;
    --accent-2: #60a5fa;
    --portal: #0f172a;
    --accent-orange: #f59e0b;
    --accent-orange-2: #fbbf24;
    --cta-bg: #9ef1c9;
    --cta-text: #064e3b;
    --surface: #f8fafc;
    --card-border: rgba(15, 23, 42, 0.08);
    --text: #0f172a;
    --footer-text: white;
    --max-w: 1200px;
    --radius: 12px;
    --gap: 1.5rem;
    --ul-li: #beac7d;
    font-family: 'Inter', system-ui, sans-serif;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--surface);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.white {
    color: #fff;
}

.shiny-orange {
    color: #ffa200f0;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.5rem;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-toggle {
    display: none;
}

.brand {
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.brand-accent {
    color: var(--accent);
}

.brand .muted {
    color: var(--muted);
    font-weight: 400;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

    .main-nav a {
        color: var(--text);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

        .main-nav a:hover {
            color: var(--accent);
        }

.mobile-only {
    display: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

    .btn-primary:hover {
        background: var(--portal);
        transform: translateY(-1px);
    }

.main-nav .btn-primary {
    color: white !important;
}



.btn-portal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    color: var(--muted) !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}

    .btn-portal:hover {
        color: var(--accent) !important;
        background: rgba(37, 99, 235, 0.05);
        border-color: rgba(37, 99, 235, 0.1);
    }

/* Hero Section */
.hero-premium {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: #0f172a;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(var(--expertise-accent-rgb, 251, 191, 36), 0.15);
    backdrop-filter: blur(12px);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    border: 1px solid rgba(var(--expertise-accent-rgb, 251, 191, 36), 0.4);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin: 0 0 1.5rem;
    line-height: 1.1;
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-primary-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-video-section {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero-video-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

    .hero-video-actions .btn-glass,
    .hero-video-actions .btn-premium {
        flex: 1;
        min-width: 200px;
        max-width: 400px;
        text-align: center;
    }

.btn-premium {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    text-decoration: none;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

    .btn-glass:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
    }

.btn-portal {
    background: var(--portal);
    color: #fbbf24 !important;
    border: 1px solid #fbbf24;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

    .btn-portal:hover {
        background: #fbbf24;
        color: var(--portal) !important;
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
        transform: translateY(-2px);
    }

        .btn-portal:hover svg {
            transform: scale(1.1) rotate(10deg);
        }

.nav-library {
    background: var(--portal) !important;
    color: white !important;
    padding: 0.6rem 1.75rem !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.4), 0 0 20px rgba(37, 99, 235, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

    .nav-library::before {
        content: '⚡';
        /* Changed to a more "energetic" icon */
        font-size: 1rem;
    }

    .nav-library:hover {
        background: var(--accent) !important;
        transform: translateY(-3px) scale(1.05) !important;
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4), 0 0 30px rgba(37, 99, 235, 0.2) !important;
        color: white !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }

        .nav-library:hover::before {
            animation: pulse 1s infinite;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Sections */
.section {
    padding: 1rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    color: var(--text);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--muted);
}

/* Features/Value Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Paths Grid */
.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.path-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

    .path-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.path-header {
    padding: 2rem;
    color: white;
}

.path-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0;
}

.path-body {
    padding: 2rem;
    flex-grow: 1;
}

.path-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .path-list li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--muted);
    }

        .path-list li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 800;
        }

.path-footer {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--card-border);
}

/* Trust Section */
.trust-section {
    background: #fff;
    padding: 4rem 0;
    border-bottom: 1px solid var(--card-border);
    text-align: center;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 0.4;
}

    .trust-logos span {
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--text);
        letter-spacing: 0.05em;
    }

/* Modern Footer */
.site-footer {
    background: #0f172a;
    color: white;
    padding: 5rem 0 2rem;
    border-top: none;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .brand {
    color: var(--footer-text);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 320px;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        transition: color 0.2s;
        font-size: 0.95rem;
    }

        .footer-links a:hover {
            color: var(--accent-orange);
        }

.footer-newsletter h4 {
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        margin-bottom: 0;
    }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

    .footer-socials a {
        color: #94a3b8;
        transition: color 0.2s;
    }

        .footer-socials a:hover {
            color: #fff;
        }

/* About Page Specific */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
}

.about-content {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Restored Essential Styles */
.scroll-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

    .scroll-btn.show {
        opacity: 1;
        visibility: visible;
    }

.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.topic-card {
    display: flex;
    flex-direction: column;
    background: #ffffff !important;
    /* Solid background for performance */
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 20px !important;
    padding: 2rem !important;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.3s ease !important;
    position: relative !important;
    height: 100% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    will-change: transform;
    /* Hint for hardware acceleration */
}

    .topic-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12) !important;
        border-color: var(--accent) !important;
    }

/* Global Card Visual Indicators (Top Bars) - Optimized */
article.card.topic-card {
    position: relative !important;
    overflow: hidden !important;
}

    article.card.topic-card::before {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 5px !important;
        background: #2563eb !important;
        /* Solid color for faster painting */
        z-index: 1 !important;
    }

    /* Gold Bar for Seminars */
    article.card.topic-card[data-seminar="true"]::before {
        background: #fbbf24 !important;
        /* Solid color for faster painting */
    }

    /* Global Seminar Styling Enhancements - Optimized */
    article.card.topic-card[data-seminar="true"] {
        background: #fffdf5 !important;
        border: 1px solid rgba(251, 191, 36, 0.3) !important;
    }

.topic-card[data-seminar="true"] .topic-header h4::before {
    content: '🎙️';
    margin-right: 0.6rem;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.topic-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

    .topic-header h4 {
        margin: 0;
        font-family: "Playfair Display", serif;
        font-size: 1.25rem;
    }

.topic-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    background: var(--surface) !important;
    color: var(--portal) !important;
    padding: 0.4rem 0.9rem !important;
    border-radius: 8px !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
}

.topic-card[data-seminar="true"] .badge {
    background: #fef3c7 !important;
    color: #92400e !important;
    border-color: #fde68a !important;
}

.topic-header h4 {
    margin: 0 !important;
    font-weight: 800 !important;
    color: var(--portal) !important;
    line-height: 1.3 !important;
}

.topic-desc {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.topic-footer {
    margin-top: auto;
}

.topic-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.external-link {
    color: var(--accent) !important;
    text-decoration: none !important;
    font-weight: 300 !important;
    font-size: 0.85rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    padding: 0 !important;
    background: transparent !important;
    transition: opacity 0.2s !important;
    border: none !important;
}

    .external-link:hover {
        background: transparent !important;
        opacity: 0.7 !important;
        color: var(--accent) !important;
        box-shadow: none !important;
    }

    .external-link::after {
        content: '→';
        transition: transform 0.3s !important;
    }

    .external-link:hover::after {
        transform: translateX(4px) !important;
    }



.filter-chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    justify-content: center;
    align-content: center;
}

.chip {
    padding: 0.5rem;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--card-border);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.2s;
}

    .chip:hover {
        background: var(--surface);
    }

    .chip.active {
        background: var(--accent);
        color: white;
        border-color: var(--accent);
    }

.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card {
    background: white;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

    .card strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: var(--text);
        font-family: "Playfair Display", serif;
    }

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

    form input:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

.form-status {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid transparent;
}

    .btn-ghost:hover {
        background: var(--surface);
        color: var(--text);
    }

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

    .btn-outline:hover {
        background: var(--accent);
        color: white;
    }

ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

    ul li {
        margin-bottom: 0.5rem;
        color: var(--ul-li);
    }

/* About Page Premium Styles */
.about-premium-hero {
    position: relative;
    padding: 1rem 0 1rem;
    background: #020617;
    overflow: hidden;
    color: white;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.2), #020617);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 254, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.founder-section {
    padding: 1rem 0;
    background: white;
}

/* Consolidated founder-grid removed from here to prevent conflicts */

.quote-box {
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 2rem;
    margin: 2rem 0;
    color: #475569;
    font-size: 1.25rem;
    line-height: 1.8;
}

.value-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: #f8fafc;
    transition: all 0.3s;
    border: 1px solid transparent;
}

    .value-card:hover {
        background: white;
        transform: translateY(-5px);
        border-color: rgba(37, 99, 235, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    }

.nft-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {

    .hero-premium {
        top: 60px;
    }

    /* Mobil / Tablet Menü Stilleri */
    .brand {
        font-size: 1.5rem;
    }

        .brand .muted {
            font-size: 1.2rem;
        }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        position: relative;
        z-index: 2002;
    }

    .hamburger {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text);
        position: relative;
        transition: background 0.3s;
    }

        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background: var(--text);
            left: 0;
            transition: all 0.3s;
        }

        .hamburger::before {
            top: -8px;
        }

        .hamburger::after {
            bottom: -8px;
        }

    .site-header.open .hamburger {
        background: transparent;
    }

        .site-header.open .hamburger::before {
            transform: rotate(45deg);
            top: 0;
        }

        .site-header.open .hamburger::after {
            transform: rotate(-45deg);
            bottom: 0;
        }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 0 2rem;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        visibility: hidden;
        display: flex;
        overflow-y: auto;
    }

    .site-header.open .main-nav {
        visibility: visible;
        transform: translateX(0);
    }

    .site-header.open::after {
        opacity: 1;
        visibility: visible;
        z-index: 1999;
    }

    .main-nav a {
        font-size: 0.95rem;
        padding: 0.85rem 2rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        gap: 0.75rem;
        text-transform: none !important;
        color: var(--text);
    }

        .main-nav a:last-child {
            border-bottom: none;
        }

    .main-nav .btn-portal,
    .main-nav .nav-library {
        background: none !important;
        color: var(--accent) !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0.85rem 2rem !important;
        width: 100% !important;
        text-align: left;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 0.75rem;
        transform: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
        margin: 0;
    }

    .main-nav .btn-primary {
        background: var(--accent) !important;
        color: white !important;
        margin: 1.5rem 2rem !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        width: calc(100% - 4rem) !important;
        text-align: center;
        font-size: 1rem !important;
        font-weight: 700 !important;
        display: flex !important;
        justify-content: center !important;
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2) !important;
    }

        .main-nav .btn-primary:hover,
        .main-nav .nav-library:hover,
        .main-nav .btn-portal:hover {
            color: var(--accent) !important;
            background: rgba(37, 99, 235, 0.12) !important;
        }

    #topicSearchClear {
        display: none !important;
    }

    .site-header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 2001;
    }
}

@media (min-width: 1025px) {
    .nav-toggle {
        display: none;
    }
}

/* Expertise Page Themes */
.theme-devops {
    --expertise-accent: #2563eb;
    --expertise-accent-rgb: 37, 99, 235;
    --expertise-premium: #7c3aed;
    --expertise-premium-rgb: 124, 58, 237;
    --expertise-gradient: linear-gradient(90deg, #2563eb, #7c3aed);
}

.theme-security {
    --expertise-accent: #059669;
    --expertise-accent-rgb: 5, 150, 105;
    --expertise-premium: #ef4444;
    --expertise-premium-rgb: 239, 68, 68;
    --expertise-gradient: linear-gradient(90deg, #059669, #10b981);
}

.theme-ai {
    --expertise-accent: #7c3aed;
    --expertise-accent-rgb: 124, 58, 237;
    --expertise-premium: #2563eb;
    --expertise-premium-rgb: 37, 99, 235;
    --expertise-gradient: linear-gradient(90deg, #7c3aed, #2563eb);
}

.theme-monitoring {
    --expertise-accent: #0d9488;
    --expertise-accent-rgb: 13, 148, 136;
    --expertise-premium: #6366f1;
    --expertise-premium-rgb: 99, 102, 241;
    --expertise-gradient: linear-gradient(90deg, #0d9488, #14b8a6);
}

.theme-architecture {
    --expertise-accent: #ea580c;
    --expertise-accent-rgb: 234, 88, 12;
    --expertise-premium: #3b82f6;
    --expertise-premium-rgb: 59, 130, 246;
    --expertise-gradient: linear-gradient(90deg, #ea580c, #f97316);
}

.theme-linux {
    --expertise-accent: #334155;
    --expertise-accent-rgb: 51, 65, 85;
    --expertise-premium: #f59e0b;
    --expertise-premium-rgb: 245, 158, 11;
    --expertise-gradient: linear-gradient(90deg, #334155, #64748b);
}

/* Expertise UI Components */
.track-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: rgba(var(--expertise-accent-rgb), 0.1);
    color: var(--expertise-accent);
    border: 1px solid rgba(var(--expertise-accent-rgb), 0.2);
}

.badge-core {
    background: rgba(var(--expertise-accent-rgb), 0.1);
    color: var(--expertise-accent);
    border: 1px solid rgba(var(--expertise-accent-rgb), 0.2);
}

.badge-premium {
    background: rgba(var(--expertise-premium-rgb), 0.1);
    color: var(--expertise-premium);
    border: 1px solid rgba(var(--expertise-premium-rgb), 0.2);
}

.course-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .course-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        border-color: #cbd5e1;
    }

.course-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.course-content {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-tech {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed #e2e8f0;
}

.package-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .package-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--expertise-gradient);
    }

    .package-card .btn,
    .package-card .btn-premium {
        display: block;
        width: 100%;
        margin-top: auto;
    }

/* Terminal Aesthetic */
.term-box {
    background: #1e293b;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    color: #fff;
}

.term-dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.dot-r {
    background: #ff5f56;
}

.dot-y {
    background: #ffbd2e;
}

.dot-g {
    background: #27c93f;
}

@keyframes subtle-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.animate-float {
    animation: subtle-float 6s ease-in-out infinite;
}

/* Certificate Processes Section */
.cert-section {
    padding: 1rem 0;
    background: #ffffff;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background: #f8fafc;
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .cert-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--accent);
        opacity: 0.3;
        transition: opacity 0.3s;
    }

    .cert-card:hover {
        transform: translateY(-10px);
        background: #ffffff;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }

        .cert-card:hover::before {
            opacity: 1;
        }

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.cert-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.4;
}

.cert-requirements {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .cert-requirements li {
        font-size: 0.9rem;
        color: var(--muted);
        padding: 0.4rem 0;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }

        .cert-requirements li::before {
            content: '•';
            color: var(--accent);
            font-weight: bold;
        }

.cert-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    margin-bottom: 1.5rem;
    width: fit-content;
}

/* Specific Badge Colors */
.cert-card[data-level='high']::before {
    background: #10b981;
}

.cert-card[data-level='high'] .cert-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.cert-card[data-level='high'] .cert-requirements li::before {
    color: #10b981;
}

.cert-card[data-level='intl']::before {
    background: #f59e0b;
}

.cert-card[data-level='intl'] .cert-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.cert-card[data-level='intl'] .cert-requirements li::before {
    color: #f59e0b;
}

@media (max-width: 768px) {
    .cert-section {
        padding: 4rem 0;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 8px;
    z-index: 2000;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 8px 0;
}

    .skip-link:focus {
        top: 0;
    }

/* Scroll to Top Button */
.scroll-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    z-index: 1000;
}

    .scroll-btn.show {
        opacity: 1;
        visibility: visible;
    }

    .scroll-btn:hover {
        transform: translateY(-5px);
        background: var(--portal);
        box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    }

    .scroll-btn.top-state {
        background: var(--portal);
    }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
    border: 2px solid #f1f5f9;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--accent), var(--portal));
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* --- Upcoming Page Styles --- */
:root {
    --upcoming-accent: #6366f1;
    --upcoming-accent-dark: #4f46e5;
    --upcoming-glass: rgba(255, 255, 255, 0.03);
    --upcoming-white: #ffffff;
}

.hero-upcoming {
    position: relative;
    padding: 10rem 0 6rem;
    background: #0f172a;
    color: white;
    text-align: center;
    overflow: hidden;
}

    .hero-upcoming::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--upcoming-accent);
    color: #a5b4fc;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.schedule-card {
    position: relative;
    /* Added to support absolute badges */
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .schedule-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(99, 102, 241, 0.1);
    }

.card-date {
    background: rgba(99, 102, 241, 0.1);
    color: var(--upcoming-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    height: 4rem;
    overflow: hidden;
}

.card-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1.5rem;
}

.meta-item span {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.meta-item strong {
    font-size: 1.1rem;
    color: #334155;
}

.card-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

    .card-price .old-price {
        font-size: 1.1rem;
        font-weight: 300;
        color: #94a3b8;
        text-decoration: line-through;
        opacity: 0.8;
    }

    .card-price .price-suffix {
        width: 100%;
        font-size: 1.1rem;
        color: #6366f1;
        /* Use accent color to indicate link */
        font-weight: 600;
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-decoration: none;
        transition: all 0.2s ease;
        cursor: pointer;
    }

        .card-price .price-suffix:hover {
            color: #4f46e5;
            text-decoration: underline;
            transform: translateX(3px);
        }

.card-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

    .card-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

.btn-secondary-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #475569;
}

    .btn-secondary-outline:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
        color: #1e293b;
    }

@media (max-width: 480px) {
    .card-actions {
        flex-direction: column;
    }
}

.info-section {
    padding: 8rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-box {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

    .info-box:hover {
        transform: translateY(-5px);
        border-color: var(--upcoming-accent);
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.05);
    }

    .info-box h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: #1e1b4b;
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .info-box h3 svg {
            color: var(--upcoming-accent);
        }

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .info-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
        color: #475569;
        line-height: 1.6;
    }

        .info-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--upcoming-accent);
            font-weight: 800;
        }

        .info-list li strong {
            color: #1e293b;
            display: block;
            margin-bottom: 0.25rem;
        }

.burs-callout {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 4rem;
    border-radius: 32px;
    margin-top: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .burs-callout::after {
        content: '100% BURRS';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 10rem;
        font-weight: 900;
        opacity: 0.05;
        white-space: nowrap;
        pointer-events: none;
    }

.burs-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.burs-desc {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.special-tag {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .hero-upcoming {
        padding: 6rem 0 4rem;
    }

    .schedule-grid {
        margin-top: 2rem;
        grid-template-columns: 1fr;
    }

    .burs-callout {
        padding: 2.5rem;
    }

    .burs-title {
        font-size: 1.75rem;
    }
}

/* Promo Badge Styles */
.promo-badge {
    position: absolute;
    top: 1.25rem;
    right: -0.75rem;
    background: linear-gradient(135deg, #f43f5e, #fb7185);
    /* Default Red */
    color: white;
    padding: 0.6rem 1.2rem;
    font-weight: 800;
    border-radius: 8px 4px 4px 8px;
    box-shadow: -5px 5px 15px rgba(244, 63, 94, 0.3);
    z-index: 20;
    text-align: right;
    line-height: 1.1;
    border: 1px solid rgba(190, 18, 60, 0.2);
}

    .promo-badge::after {
        content: '';
        position: absolute;
        top: 100%;
        right: 0;
        border-top: 8px solid #9f1239;
        /* Darker Red */
        border-right: 8px solid transparent;
    }

/* Purple Variant */
.promo-purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    box-shadow: -5px 5px 15px rgba(139, 92, 246, 0.3);
    border-color: rgba(109, 40, 217, 0.2);
}

    .promo-purple::after {
        border-top-color: #6d28d9;
    }

/* Gold/Orange Variant */
.promo-gold {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: -5px 5px 15px rgba(245, 158, 11, 0.3);
    border-color: rgba(180, 83, 9, 0.2);
}

    .promo-gold::after {
        border-top-color: #b45309;
    }

.promo-badge .percentage {
    display: block;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.promo-badge .reason {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 900;
    opacity: 0.9;
    letter-spacing: 0.5px;
    margin-top: 0.15rem;
}

/* Discount Stacking Notice */
.stack-notice {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    color: white;
    padding: 3.5rem;
    border-radius: 32px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

    .stack-notice::before {
        content: 'BONUS';
        position: absolute;
        top: -2rem;
        right: -1rem;
        font-size: 8rem;
        font-weight: 900;
        color: white;
        opacity: 0.03;
        pointer-events: none;
    }

    .stack-notice h4 {
        font-size: 1.75rem;
        font-family: 'Playfair Display', serif;
        margin-bottom: 1.5rem;
        color: #e0e7ff;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .stack-notice p {
        font-size: 1.15rem;
        line-height: 1.8;
        color: #c7d2fe;
        max-width: 900px;
    }

    .stack-notice .highlight-box {
        background: rgba(255, 255, 255, 0.07);
        border: 1px dashed rgba(255, 255, 255, 0.2);
        padding: 1.5rem;
        border-radius: 16px;
        margin-top: 2rem;
        display: inline-block;
    }

        .stack-notice .highlight-box strong {
            color: #fff;
            font-weight: 800;
            font-size: 1.25rem;
        }

@media (max-width: 768px) {
    .stack-notice {
        padding: 2.5rem 1.5rem;
    }

        .stack-notice h4 {
            font-size: 1.4rem;
        }

        .stack-notice p {
            font-size: 1rem;
        }
}

/* Contact Page Specific Styles */
.contact-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: #0f172a;
    color: white;
    text-align: center;
    overflow: hidden;
}

    .contact-hero .container {
        position: relative;
        z-index: 10;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: -4rem !important;
    position: relative;
    z-index: 20;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card-premium {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    color: #0f172a;
}

    .contact-card-premium:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: #6366f1;
    }

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-form-container {
    background: white;
    padding: 4rem;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #0f172a;
}

.form-group-premium {
    margin-bottom: 1.5rem;
}

    .form-group-premium label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #1e293b;
        font-size: 0.9rem;
    }

.form-control-premium {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s;
    background: #f8fafc;
}

    .form-control-premium:focus {
        outline: none;
        border-color: #6366f1;
        background: white;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    }

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .contact-hero {
        padding: 6rem 0 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem !important;
        gap: 2rem;
    }

    .contact-form-container {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-card-premium {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .form-row-grid {
        grid-template-columns: 1fr !important;
    }
}


/* Sitemap Page Styles */
.sitemap-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.sitemap-container {
    padding: 4rem 0;
    background: #f8fafc;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.sitemap-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #0f172a;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sitemap-links {
    list-style: none;
    padding: 0;
}

    .sitemap-links li {
        margin-bottom: 0.75rem;
        break-inside: avoid;
    }

    .sitemap-links a {
        color: #475569;
        text-decoration: none;
        transition: all 0.2s;
        display: inline-block;
        line-height: 1.4;
    }

        .sitemap-links a:hover {
            color: #3b82f6;
            transform: translateX(5px);
        }

.course-list {
    column-count: 2;
    column-gap: 3rem;
}

.sitemap-column h3 {
    font-size: 1.4rem;
    border-bottom-width: 1px;
}

@media (max-width: 992px) {
    .course-list {
        column-count: 1;
    }
}

/* About Page Hero & Glass Cards */
.about-premium-hero {
    position: relative;
    padding: 12rem 0 8rem;
    overflow: hidden;
    color: white;
    background: #0f172a;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 5;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Contact Hero Background Fix */
.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 5;
}

.contact-hero .hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

/* Global Highlight / Accent Styles */
.highlight {
    color: var(--accent-orange, #f59e0b);
    position: relative;
    white-space: nowrap;
}

/* Specific About Page Text Refinement */
.about-hero-content hr {
    width: 100px;
    margin: 2rem 0;
    border: none;
    border-top: 2px solid var(--accent-orange, #f59e0b);
    opacity: 0.8;
}

/* About Page Hero Typography & Layout */
.hero-title-elite {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle-elite {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 3.5rem;
    line-height: 1.7;
}

.glass-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.glass-card {
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.glass-stat {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.25rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-label {
    color: #94a3b8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .glass-grid {
        gap: 1rem;
    }

    .hero-title-elite {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
}

/* ═══════════════════════════════════════════════════════════
   Verification Page — Sertifika Doğrulama
   ═══════════════════════════════════════════════════════════ */

.vfy-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1d4ed8 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .vfy-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
    }

.vfy-hero-inner {
    position: relative;
    z-index: 2;
}

.vfy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.4);
    color: #93c5fd;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.vfy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: white;
    margin: 0 0 1rem;
    line-height: 1.15;
}

    .vfy-hero h1 span {
        color: #60a5fa;
    }

.vfy-hero p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

.vfy-search-wrap {
    background: white;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(226, 232, 240, 0.6);
    padding: 2.5rem;
    max-width: 780px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 10;
}

.vfy-search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 0.4rem;
}

.vfy-tab {
    flex: 1;
    padding: 0.65rem 1rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

    .vfy-tab.active {
        background: white;
        color: #0f172a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .vfy-tab:hover:not(.active) {
        color: #334155;
    }

.vfy-form-group {
    margin-bottom: 1.25rem;
}

    .vfy-form-group label {
        display: block;
        font-size: 0.82rem;
        font-weight: 700;
        color: #334155;
        margin-bottom: 0.5rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

.vfy-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.2s;
    box-sizing: border-box;
}

    .vfy-input:focus {
        outline: none;
        border-color: #2563eb;
        background: white;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    }

    .vfy-input::placeholder {
        color: #94a3b8;
    }

.vfy-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.vfy-btn-search {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}

    .vfy-btn-search:hover {
        background: linear-gradient(135deg, #1e40af, #1d4ed8);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
        transform: translateY(-1px);
    }

    .vfy-btn-search:active {
        transform: translateY(0);
    }

.vfy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #15803d;
    font-weight: 500;
}

.vfy-panel {
    display: none;
}

    .vfy-panel.active {
        display: block;
    }

/* How It Works */
.how-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.how-card {
    background: white;
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.25s;
}

    .how-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
        border-color: #bfdbfe;
    }

.how-num {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.how-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #0f172a;
    margin: 0 0 0.75rem;
}

.how-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Corporate Section */
.corporate-section {
    padding: 6rem 0;
    background: white;
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.corporate-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #0f172a;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.corporate-text p {
    color: #475569;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.corp-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

    .corp-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.6rem 0;
        color: #334155;
        font-size: 0.95rem;
        border-bottom: 1px solid #f1f5f9;
    }

        .corp-features li:last-child {
            border-bottom: none;
        }

.corp-feat-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #eff6ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.corp-stat-box {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
}

    .corp-stat-box h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        margin: 0 0 2rem;
        color: white;
    }

.corp-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

    .corp-stat-item:last-child {
        border-bottom: none;
    }

.corp-stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.corp-stat-val {
    font-weight: 700;
    color: #60a5fa;
    font-size: 1rem;
}

.btn-corp-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: #2563eb;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

    .btn-corp-contact:hover {
        background: #1d4ed8;
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
        transform: translateY(-2px);
    }

/* Certificate Types */
.cert-types-section {
    padding: 5rem 0;
    background: #0f172a;
}

    .cert-types-section .section-title {
        color: white;
    }

    .cert-types-section .section-desc {
        color: rgba(255, 255, 255, 0.65);
    }

.cert-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ct-card {
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.25s;
}

    .ct-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
    }

.ct-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
}

.ct-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.85rem;
}

    .ct-badge.lvl1 {
        background: rgba(37, 99, 235, 0.2);
        color: #93c5fd;
    }

    .ct-badge.lvl2 {
        background: rgba(22, 163, 74, 0.2);
        color: #86efac;
    }

    .ct-badge.lvl3 {
        background: rgba(202, 138, 4, 0.2);
        color: #fde047;
    }

.ct-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: white;
    margin: 0 0 0.65rem;
}

.ct-card p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin: 0;
}

/* Verification CTA */
.vfy-cta {
    background: linear-gradient(135deg, #1d4ed8, #2563eb 60%, #3b82f6);
    padding: 5rem 0;
    text-align: center;
}

    .vfy-cta h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        color: white;
        margin-bottom: 1rem;
    }

    .vfy-cta p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        max-width: 520px;
        margin: 0 auto 2rem;
        line-height: 1.75;
    }

.vfy-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-white {
    padding: 0.95rem 2rem;
    background: white;
    color: #1d4ed8;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

    .cta-white:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.cta-ghost-white {
    padding: 0.95rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

    .cta-ghost-white:hover {
        background: rgba(255, 255, 255, 0.2);
    }

/* Verification Responsive */
@media (max-width: 900px) {

    .how-grid,
    .cert-types-grid {
        grid-template-columns: 1fr 1fr;
    }

    .corporate-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .vfy-input-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .how-grid,
    .cert-types-grid {
        grid-template-columns: 1fr;
    }

    .vfy-search-wrap {
        padding: 1.75rem 1.25rem;
    }
}


/* Policy & Documentation Styles */
.policy-container {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    color: #334155;
    line-height: 1.8;
}

    .policy-container ul li {
        color: #0f172a;
        margin-bottom: 1rem;
    }

        .policy-container ul li::marker {
            color: #0f172a;
        }

    .policy-container h2 {
        margin-top: 3rem;
        color: #0f172a;
        margin-bottom: 2rem;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 1rem;
    }

    .policy-container p {
        color: #0f172a;
    }

    .policy-container strong {
        color: #0f172a;
    }

    .policy-container a {
        color: #0f172a;
    }

.policy-card {
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

    .policy-card.info {
        background: #eff6ff;
        border-left-color: #2563eb;
    }

    .policy-card.warning {
        background: #fff7ed;
        border-left-color: #ea580c;
    }

    .policy-card p {
        margin: 0;
        font-weight: 500;
    }

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.93rem;
}

    .policy-table th {
        background: #0f172a;
        color: #fff;
        padding: 0.75rem 1rem;
        text-align: left;
        font-weight: 600;
    }

    .policy-table td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e2e8f0;
        color: #1e293b;
        vertical-align: top;
    }

    .policy-table tr:nth-child(even) td {
        background: #f8fafc;
    }

.steps {
    counter-reset: steps;
    list-style: none;
    padding: 0;
}

    .steps li {
        counter-increment: steps;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

        .steps li::before {
            content: counter(steps);
            background: #0f172a;
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            min-width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.method-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

    .method-card .icon {
        font-size: 1.75rem;
        line-height: 1;
        flex-shrink: 0;
    }

    .method-card h5 {
        margin: 0 0 0.25rem;
        font-size: 0.95rem;
        color: #0f172a;
    }

    .method-card p {
        margin: 0;
        font-size: 0.82rem;
        color: #64748b;
    }

.toc {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

    .toc h3 {
        margin: 0 0 1rem;
        font-size: 0.9rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .toc ol {
        margin: 0;
        padding-left: 1.25rem;
    }

    .toc li {
        margin-bottom: 0.4rem;
    }

    .toc a {
        color: #1d4ed8 !important;
        text-decoration: none;
        font-size: 0.95rem;
    }

        .toc a:hover {
            text-decoration: underline;
        }

.highlight-box {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: white;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
}

    .highlight-box p {
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }

    .highlight-box strong {
        color: #fbbf24;
    }

.bg-surface {
    background: #f8fafc;
}

.contact-hero {
    min-height: 40vh;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.highlight-link {
    color: #fbbf24 !important;
}

.policy-footer-text {
    margin-top: 4rem;
    text-align: center;
    font-weight: 700;
}

/* Instructor Section Styles */
.founder-section {
    background: white;
}

/* Redundant instructor styles removed - using Unified block below */

/* Unified Instructor/Founder Styles */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.instructor-image-wrapper {
    position: relative;
    width: 100%;
}

.instructor-image-container {
    background: var(--portal);
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
    display: block;
    width: 100%;
}

    .instructor-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.instructor-badge {
    position: absolute;
    bottom: -2rem;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

    .instructor-badge.primary {
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #7c3aed, #5b21b6);
        color: white;
        width: 90%;
        text-align: center;
    }

    .instructor-badge.lead {
        right: -2rem;
        background: var(--accent);
        color: white;
    }

    .instructor-badge.secondary {
        left: -2rem;
        background: #0ea5e9;
        color: white;
    }

    .instructor-badge h3,
    .instructor-badge p,
    .instructor-badge .stats-mini {
        color: white !important;
    }

.founder-grid.grid-flipped {
    direction: rtl;
}

    .founder-grid.grid-flipped > * {
        direction: ltr;
    }

@media (max-width: 991px) {

    .founder-grid,
    .founder-grid.grid-flipped {
        display: block !important;
        /* Switch to block to kill any flex/grid behavior */
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .instructor-image-wrapper {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 8.5rem !important;
        /* Extra space for the deep badge overlap */
        position: relative !important;
    }

    .instructor-image-container {
        width: 100% !important;
        height: 400px !important;
        border-radius: 20px !important;
        margin: 0 auto !important;
    }

        .instructor-image-container img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }

    .instructor-badge {
        position: absolute !important;
        bottom: -5rem !important;
        /* Moved further down to reduce overlap */
        left: 1rem !important;
        right: 1rem !important;
        width: auto !important;
        padding: 1.5rem !important;
        z-index: 20 !important;
        border-radius: 20px !important;
        text-align: left !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
        transform: none !important;
    }

    .section-title.text-left {
        text-align: center !important;
        margin: 4rem 0 2rem !important;
        /* Increased space above instructor title */
        font-size: 2.2rem !important;
        padding: 0 1rem !important;
    }

    .quote-box {
        margin: 2rem 1rem !important;
        padding: 1.5rem !important;
        text-align: left !important;
        font-size: 1.15rem !important;
    }

    p.muted {
        padding: 0 1.5rem !important;
        text-align: left !important;
    }

    .expert-cta-grid {
        display: block !important;
        /* Stack items vertically */
        padding: 0 1.5rem !important;
    }

        .expert-cta-grid > div {
            margin-bottom: 1rem !important;
            width: 100% !important;
        }

    .flex-gap-4 {
        justify-content: center !important;
        margin-top: 3rem !important;
        padding-bottom: 2rem !important;
    }
}

.expert-cta-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

    .expert-cta-item:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(56, 189, 248, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .expert-cta-item .icon-large {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        filter: drop-shadow(0 4px 10px rgba(56, 189, 248, 0.3));
    }

    .expert-cta-item h4 {
        color: #38bdf8;
        margin-bottom: 0.75rem;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .expert-cta-item p {
        font-size: 0.95rem;
        opacity: 0.85;
        line-height: 1.6;
    }

.final-cta-section {
    background: #0f172a;
    color: white;
    text-align: center;
}

    .final-cta-section h2 {
        font-family: "Playfair Display", serif;
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .final-cta-section p {
        max-width: 600px;
        margin: 0 auto 3rem;
        color: #94a3b8;
        font-size: 1.2rem;
    }

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 1rem;
}

.inherit-link {
    color: inherit;
    text-decoration: none;
}

.bg-blue-accent {
    background: #3b82f6 !important;
}

.bg-green-accent {
    background: #10b981 !important;
}

.bg-yellow-accent {
    background: #f59e0b !important;
}

.bg-white {
    background: white !important;
}

/* Global Footer Responsive Grid */
@media (min-width: 1025px) {
    .site-footer .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-contact {
    margin-top: 1rem;
    font-weight: 600;
}

    .footer-contact a {
        color: inherit;
        text-decoration: none;
    }

/* Hero Video Responsive Wrapper */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

    .hero-video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

@media (max-width: 768px) {
    .hero-video-wrapper {
        margin-top: 2rem;
        border-radius: 12px;
    }

    .hero-primary-btns,
    .hero-video-actions,
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
        gap: 0.75rem;
    }

        .hero-primary-btns .btn-premium,
        .hero-video-actions .btn-glass,
        .hero-video-actions .btn-premium,
        .hero-actions .btn-premium,
        .hero-actions .btn-glass {
            width: 100%;
            min-width: 0;
            max-width: 100%;
            margin: 0;
            text-align: center;
        }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        padding: 0 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-video-section {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    /* Section Padding Refinements for Career Pages */
    .section[style*="padding: 8rem 0"],
    .section[style*="padding: 6rem 0"],
    .section[style*="padding: 4rem 0"] {
        padding: 3.5rem 0 !important;
    }

    /* Grid Gap Refinements */
    .section div[style*="gap: 4rem"],
    .section div[style*="gap: 3rem"] {
        gap: 1.5rem !important;
    }

    /* Stat Box and Table */
    .stat-box {
        padding: 1.25rem !important;
    }

    .stat-number {
        font-size: 1.75rem !important;
    }

    table {
        font-size: 0.85rem !important;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    th,
    td {
        padding: 0.75rem 0.6rem !important;
    }

    /* Card Padding */
    .euro-card,
    .company-card {
        padding: 1.5rem !important;
    }

    /* Heading Size Overrides for Career Pages */
    .section h2[style*="font-size: 2.5rem"],
    .section h2[style*="font-size: 3.5rem"] {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        margin-top: 4rem !important;
    }

    .section h3[style*="font-size: 1.8rem"] {
        font-size: 1.4rem !important;
    }

    /* Career Guide Buttons Uniformity */
    .career-btn-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
        box-sizing: border-box;
    }

        .career-btn-grid .btn-premium,
        .career-btn-grid .btn-glass {
            min-height: 54px;
            font-size: 0.95rem;
        }
}

/* Common Styles for Career Buttons (Uniformity) */
.career-btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

    .career-btn-grid .btn-premium,
    .career-btn-grid .btn-glass {
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1rem;
        font-weight: 700;
        border-radius: 12px;
        transition: all 0.3s ease;
        height: 100%;
        width: 100%;
        box-sizing: border-box;
        margin: 0 !important;
    }

@media (max-width: 640px) {
    .career-btn-grid {
        grid-template-columns: 1fr;
        padding: 0 1.25rem;
    }
}

@media (min-width: 1025px) {
    .site-footer .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-links li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem; /* Her bir bağlantı arasında boşluk */
}

    .footer-links li i {
        margin-right: 0.5rem; /* İkon ile metin arasındaki boşluk */
        color: #fbbf24; /* İkon rengi */
    }

    .footer-links li a {
        text-decoration: none;
        color: inherit;
    }

        .footer-links li a:hover {
            text-decoration: underline; /* Üzerine gelindiğinde altı çizili */
        }

/* Desktop / Tablet nav görünümü */
.desktop-nav {
    display: flex;
}

.mobile-nav {
    display: none;
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-nav {
        display: flex !important;
        flex-direction: column;
    }

        .mobile-nav a {
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
}

@media (min-width: 1025px) {
    .desktop-nav {
        display: flex !important;
    }

    .mobile-nav {
        display: none !important;
    }
}


/* Global Floating CTA Styles - PREMIUM VERTICAL LEFT (WhatsApp Style) */
.floating-cta {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 99999;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.floating-cta-item {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    /* Makes text read bottom-to-top */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white !important;
    padding: 25px 12px;
    border-radius: 12px 0 0 12px;
    /* Rounded corners facing the page after 180deg rotation */
    text-decoration: none !important;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15), 2px 0 5px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    white-space: nowrap;
}

    .floating-cta-item span {
        display: inline-block;
    }

    .floating-cta-item:hover {
        padding-left: 20px;
        /* Pop out from the wall */
        background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
        box-shadow: 8px 0 30px rgba(37, 211, 102, 0.4);
    }

@media (max-width: 768px) {

    /* Fixed Header on Mobile */
    .site-header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 2001;
    }

    /* Fixed Vertical Left CTA on Mobile */
    .floating-cta-item {
        padding: 18px 8px !important;
        font-size: 0.85rem !important;
        gap: 8px !important;
    }

        .floating-cta-item:hover {
            padding-left: 15px !important;
            transform: rotate(180deg) scale(1.02) !important;
        }
}


/* Mobil görünüm */
/* --- PREMIUM TOOLTIP ENGINE --- */
#tooltip {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    color: white;
    padding: 0;
    border-radius: 16px;
    font-size: 0.9rem;
    z-index: 999999 !important;
    display: none;
    width: 320px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: auto;
    line-height: 1.4;
    text-align: left;
}

    #tooltip[data-show] {
        display: block;
    }

    #tooltip.tt-visible {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

#tt-content {
    padding: 1.5rem;
}

.tt-header {
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.tt-badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.tt-title {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.tt-body {
    margin-bottom: 1.25rem;
}

.tt-section-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.tt-overview {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tt-gains {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

    .tt-gains li {
        position: relative;
        padding-left: 1.25rem;
        margin-bottom: 0.4rem;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
    }

        .tt-gains li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #38bdf8;
            font-weight: bold;
        }

.tt-stats-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.tt-stats-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.tt-stats-desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.tt-footer {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tt-meta-item {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tt-detail-link {
    display: block;
    background: var(--accent);
    color: white !important;
    text-align: center;
    padding: 0.8rem;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

    .tt-detail-link:hover {
        background: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
    }

#arrow,
#arrow::before {
    position: absolute;
    width: 10px;
    height: 10px;
    background: inherit;
}

#arrow {
    visibility: hidden;
}

    #arrow::before {
        visibility: visible;
        content: "";
        transform: rotate(45deg);
    }

#tooltip[data-popper-placement^="top"] > #arrow {
    bottom: -5px;
}

#tooltip[data-popper-placement^="bottom"] > #arrow {
    top: -4px;
}

#tooltip[data-popper-placement^="left"] > #arrow {
    right: -4px;
}

#tooltip[data-popper-placement^="right"] > #arrow {
    left: -4px;
}

/* =========================================================================
   CERTIFICATE VERIFICATION - ON-PAGE PREMIUM DESIGN
   ========================================================================= */

/* Hide result section initially */
.vfy-onpage-result {
    display: none;
    padding: 4rem 0;
    background: #ffffff;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Banner & Actions */
.vfy-result-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #f0fdf4;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
    position: relative;
    overflow: hidden;
}

    .vfy-result-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, #16a34a, #22c55e);
    }

.vfy-brand {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: #0f172a;
    /* text color */
    text-decoration: none;
    margin-bottom: 2rem;
    transition: opacity 0.2s;
}

    .vfy-brand:hover {
        opacity: 0.8;
    }

.vfy-brand-accent {
    color: #2563eb;
    /* accent color */
}

.vfy-header-name {
    font-family: 'Playfair Display', serif;
    color: #0f172a;
    /* script-safe black */
    font-size: 3.5rem;
    /* dev punto */
    font-weight: 900;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
    /* gölgeli */
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.vfy-gold-seal {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 98px;
    height: 98px;
    z-index: 10;
    animation: sealRotate 20s linear infinite;
}

@keyframes sealRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media print {
    .vfy-gold-seal {
        animation: none;
    }
}

.vfy-header-course {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    /* Made smaller */
    font-weight: 700;
    color: #334155;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    text-shadow: none;
}

.vfy-header-code {
    font-family: monospace;
    font-size: 0.85rem;
    /* Made smaller */
    font-weight: 600;
    color: #64748b;
    text-shadow: none;
}

.vfy-header-level {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 0.45rem 1.25rem;
    display: inline-block;
    background: #fffbeb;
    border: 2px solid currentColor;
    border-radius: 50px;
}

.vfy-header-date {
    font-size: 1.05rem;
    color: #1e3a5f;
    /* dark navy-blue for authority */
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vfy-verification-info {
    margin: 1.5rem auto 2.5rem auto;
    max-width: 650px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: left;
}

.vfy-fraud-warning {
    color: #991b1b;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.vfy-verify-link {
    display: block;
    font-family: monospace;
    color: #2563eb;
    font-size: 0.95rem;
    word-break: break-all;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}

    .vfy-verify-link:hover {
        color: #1d4ed8;
    }

.vfy-success-icon {
    font-size: 4rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.vfy-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #064e3b;
    margin-bottom: 0.5rem;
}

.vfy-success-desc {
    font-size: 1.1rem;
    color: #166534;
    margin-bottom: 2rem;
}

.btn-print-pdf {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0f172a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

    .btn-print-pdf:hover {
        background: #1e293b;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.3);
    }

/* Two-column grid layout */
.vfy-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column: Certificate Identity & Projects */
.vfy-result-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Hero Certificate Card (Big Fonts) */
.vfy-info-card {
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 8px solid;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

    .vfy-info-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
    }

.vfy-cert-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.vfy-cert-level {
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.vfy-cert-name {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    /* Dev punto (huge font) */
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.vfy-cert-course {
    font-size: 1.4rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 1.5rem;
}

.vfy-cert-meta {
    font-size: 1rem;
    color: #475569;
    font-family: monospace;
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Section Titles */
.vfy-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1rem;
}

/* Projects List */
.vfy-project-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vfy-project-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.2s ease;
}

    .vfy-project-item:hover {
        background: #ffffff;
        border-color: #cbd5e1;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
        transform: translateX(4px);
    }

.vfy-project-name {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: block;
}

.vfy-project-desc {
    font-size: 1.05rem;
    color: #475569;
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
}

.vfy-project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: background 0.2s;
}

    .vfy-project-link:hover {
        background: rgba(37, 99, 235, 0.2);
    }

/* Right Column: Fully Expanded Curriculum */
.vfy-result-right {
    display: flex;
    flex-direction: column;
}

.vfy-expanded-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    /* Fill available space, no scroll */
}

.vfy-curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vfy-curriculum-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.75rem;
}

    .vfy-curriculum-item::before {
        content: '▪';
        position: absolute;
        left: 0;
        top: 2px;
        color: #16a34a;
        font-size: 1.8rem;
        line-height: 1;
    }

.vfy-curriculum-title {
    font-weight: 800;
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    display: block;
}

.vfy-curriculum-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .vfy-result-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* =========================================================================
   PRINT STYLES (@media print)
   ========================================================================= */
@media print {

    /* Hide unnecessary elements */
    .site-header,
    .site-footer,
    .vfy-hero,
    .how-section,
    .cert-types-section,
    .corporate-section,
    .vfy-cta,
    .floating-cta,
    #scrollToggle,
    .btn-print-pdf {
        display: none !important;
    }

    /* Reset body and main container */
    body,
    html {
        background: #ffffff !important;
        font-size: 12pt !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #main-content {
        background: #ffffff !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    @page {
        size: A4 portrait;
        margin: 1.5cm;
    }

    .vfy-onpage-result {
        display: block !important;
        padding: 0 !important;
        background: #ffffff !important;
    }

    /* Ensure colors and backgrounds print perfectly */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* Force grid to maintain layout if possible, or stack cleanly if space is tight */
    .vfy-result-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        break-inside: avoid;
    }

    /* Avoid breaking cards across pages */
    .vfy-info-card,
    .vfy-expanded-panel,
    .vfy-project-item {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #cbd5e1 !important;
        /* Ensure borders are visible */
    }

    .vfy-result-header {
        border: 1px solid #bbf7d0 !important;
        padding: 2rem !important;
        page-break-after: always;
        /* Force break after header (Page 1) */
        break-after: page;
        /* Fill the entire printed page */
        min-height: calc(100vh - 3cm);
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
        margin-bottom: 0 !important;
    }

        /* Hide the decorative top gradient bar when printing */
        .vfy-result-header::before {
            display: none !important;
        }

    /* Page 2 (identity card) hidden from print — removed per user request */
    .vfy-info-card {
        display: none !important;
    }

    /* Target the projects container specifically */
    .vfy-result-left > div:not(.vfy-info-card) {
        page-break-after: always;
        /* Force break after projects list (Page 3) */
        break-after: page;
    }

    /* Expand curriculum panel for the final page (Page 4) */
    .vfy-result-right {
        page-break-inside: avoid;
    }

    .vfy-project-link {
        border: 1px solid #bfdbfe !important;
    }
}
