/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A1628;
    --navy-light: #1a2942;
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray: #6C757D;
    --shadow: rgba(10, 22, 40, 0.1);
    --shadow-lg: rgba(10, 22, 40, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(10, 22, 40, 0.3);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s;
    border-bottom: 2px solid var(--gold);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 6px 40px rgba(10, 22, 40, 0.4);
    background: linear-gradient(135deg, var(--navy) 0%, #0d1f35 100%);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: transform 0.3s;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-brand .logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.nav-brand:hover .logo {
    border-color: var(--gold-light);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--gold);
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transition: all 0.3s;
    border: 2px solid var(--gold);
    letter-spacing: 0.3px;
}

.btn-nav:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
}

.btn-nav::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

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

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 3rem 0 3.5rem;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gold);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-authority {
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta .btn span {
    margin-right: 0.5rem;
}

.hero-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    display: inline-block;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-link:hover {
    color: var(--gold-light);
    transform: translateX(5px);
    transition: all 0.3s;
}

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

.hero-video {
    position: relative;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Backup thumbnail (shows if iframe doesn't load) */
.video-backup {
    display: none;
    margin-top: 1rem;
}

.video-link {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    transition: all 0.3s;
}

.video-link:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.7);
}

/* Section Styles */
section {
    padding: 3rem 0;
}

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

.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--gold);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--gray-light);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-lg);
    border-color: var(--gold);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.about-highlight-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 1.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.about-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0;
    line-height: 1.5;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow-lg);
    border-color: var(--gold);
}

.feature-icon-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* About Features List */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s;
}

.about-feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

.feature-check {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.about-feature-item strong {
    color: var(--navy);
    display: block;
    margin-bottom: 0.25rem;
}

.about-feature-item div {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* About Image Container */
.about-image-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

.about-profile-image {
    width: 100%;
    max-width: 280px;
    height: 350px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.25);
    border: 3px solid var(--gold);
    object-fit: cover;
    transition: all 0.3s;
}

.about-profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(10, 22, 40, 0.35);
}

.about-image-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.badge-icon {
    font-size: 1.1rem;
}

.badge-text {
    font-weight: 700;
}

/* Programs Section */
.programs {
    background: var(--white);
}

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

.program-card {
    background: var(--gray-light);
    padding: 2.25rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px var(--shadow-lg);
    border-color: var(--gold);
}

.program-featured {
    background: var(--navy);
    color: var(--white);
    border-color: var(--gold);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.coming-soon {
    background: var(--gray);
    color: var(--white);
}

.program-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.program-featured .program-number {
    color: var(--gold-light);
}

.program-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.program-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.program-featured .program-subtitle {
    color: var(--gold);
}

.program-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 2px solid var(--gold);
}

.program-featured .program-price {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-light);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.program-featured .price-amount {
    color: var(--gold-light);
}

.price-label {
    font-size: 0.875rem;
    color: var(--navy);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-featured .price-label {
    color: var(--white);
    opacity: 0.9;
}

.program-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.program-featured .program-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.program-features li:before {
    content: "✓ ";
    color: var(--gold);
    font-weight: 700;
    margin-right: 0.5rem;
}

.program-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.program-card .btn span {
    font-size: 1.1rem;
}

/* Assessment Section */
.assessment {
    background: var(--gray-light);
}

.assessment-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.assessment-content {
    max-width: 700px;
    margin: 0 auto;
}

.assessment-form-custom {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

.assessment-form iframe {
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-light);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.25rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.875rem;
}

/* YouTube Section */
.youtube {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.youtube .container {
    position: relative;
    z-index: 1;
}

.youtube .section-title {
    color: var(--white);
}

.section-badge-light {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--gold);
}

.section-description-light {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.youtube-channel-name {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.channel-icon {
    font-size: 2.5rem;
}

.youtube-premium-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Video Showcase */
.youtube-video-showcase {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.75rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.video-label {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.youtube-embed-premium {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--gold);
    margin-bottom: 1.5rem;
}

.youtube-embed-premium iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-cta-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 1.75rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.cta-content h4 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--navy);
    opacity: 0.8;
    margin: 0;
}

.btn-gold {
    background: var(--navy);
    color: var(--gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.5);
}

/* Categories */
.youtube-categories {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.categories-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.category-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateX(10px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.category-header h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0;
}

.category-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.category-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Stats Bar */
.youtube-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.75rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.youtube-stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.youtube-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon-large {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
    .youtube-premium-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .youtube-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .video-cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-gold {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .youtube-channel-name {
        font-size: 1.5rem;
    }
    
    .channel-icon {
        font-size: 2rem;
    }
    
    .youtube-stats-bar {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .youtube-stat-item {
        justify-content: center;
    }
    
    .category-card {
        padding: 1.5rem;
    }
}

/* Future Section */
.future {
    background: var(--gray-light);
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.future-item {
    text-align: center;
    padding: 1.75rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.3s;
}

.future-item:hover {
    transform: translateY(-5px);
}

.future-icon {
    font-size: 2.75rem;
    display: block;
    margin-bottom: 0.875rem;
}

.future-item h3 {
    font-size: 1.125rem;
    color: var(--navy);
}

/* Waitlist Form */
.waitlist-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-lg);
    border: 2px solid var(--gold);
}

.waitlist-form-card h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-align: center;
}

.waitlist-form-card > p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 1.75rem;
    font-size: 1.125rem;
}

.waitlist-form {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.waitlist-form textarea {
    resize: vertical;
    grid-column: 1 / -1;
}

.waitlist-note {
    text-align: center;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .waitlist-form-card {
        padding: 2rem 1.5rem;
    }
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form button {
    width: 100%;
    border: none;
    font-family: inherit;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--navy);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.contact-link:hover {
    background: var(--navy);
    color: var(--white);
}

.contact-icon {
    font-size: 1.5rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--navy);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px var(--shadow);
        transition: right 0.3s ease;
        z-index: 999;
        gap: 1.5rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 0.75rem 0;
        width: 100%;
        color: var(--white);
    }
    
    .btn-nav {
        text-align: center;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-container {
        order: -1;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .about-profile-image {
        max-width: 220px;
        height: 280px;
    }
    
    .about-image-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .badge-icon {
        font-size: 1rem;
    }
    
    .youtube-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card {
        padding: 2rem;
    }
    
    .assessment-form-custom {
        padding: 2rem 1.5rem;
    }
    
    .youtube-features-list {
        gap: 1rem;
    }
    
    .youtube-feature-item {
        padding: 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-brand .logo {
        width: 40px;
        height: 40px;
    }
    
    .nav-brand span {
        font-size: 1.25rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .program-card {
        padding: 1.75rem;
    }
    
    .program-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.6s ease-out;
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Success Stories */
.success-stories {
    padding: 5rem 0;
    background: var(--gray-light);
}

.story-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.story-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(to bottom, var(--white) 0%, #fffef8 100%);
}

.story-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.story-info h3 {
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.story-role {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.story-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.story-content {
    margin-bottom: 1.5rem;
}

.story-quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    font-style: italic;
}

.story-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333;
}

.story-results {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.result-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-item strong {
    color: var(--navy);
    min-width: 80px;
}

.result-item span {
    color: #333;
}

.story-footer {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.story-tag {
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: var(--navy);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Active Nav Link */
.nav-links a.active {
    color: var(--gold);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}


/* Why Choose Section */
.why-choose {
    background: var(--white);
    padding: 3.5rem 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.why-card {
    background: var(--gray-light);
    padding: 1.75rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px var(--shadow);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.why-icon {
    font-size: 2.75rem;
    margin-bottom: 0.875rem;
}

.why-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* How It Works Section */
.how-it-works {
    background: var(--gray-light);
    padding: 4rem 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.step-card {
    background: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.step-icon {
    font-size: 2.75rem;
    margin: 1.25rem 0 0.875rem;
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.875rem;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.25rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.step-card:last-child .step-arrow {
    display: none;
}

.cta-box-centered {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.cta-box-centered h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box-centered p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
}

.cta-buttons-inline {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive for New Sections */
@media (max-width: 968px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
    
    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card {
        padding: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-box-centered {
        padding: 2rem 1.5rem;
    }
    
    .cta-box-centered h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons-inline {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons-inline .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .why-icon {
        font-size: 2.5rem;
    }
    
    .why-card h3 {
        font-size: 1.125rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .step-card h3 {
        font-size: 1.125rem;
    }
}
