/* ============================================
   GLOBAL STYLES & FONTS
   ============================================ */

/* Ubuntu Bold Italic Font */
@font-face {
    font-family: 'Ubuntu';
    font-style: italic;
    font-weight: 700;
    src: url('http://fonts.gstatic.com/s/ubuntu/v8/pqisLQoeO9YTDCNnlQ9bf1tXRa8TVwTICgirnJhmVJw.woff2') format('woff2');
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
    color: #333;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Info Bar */
.top-info-bar {
    background-color: #e8e8e8;
    color: #333;
    padding: 6px 20px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.top-info-bar::-webkit-scrollbar {
    display: none;
}

.top-info-left {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
    text-decoration: none;
    flex-shrink: 0;
}

.top-info-item:hover {
    opacity: 0.7;
}

.trust-badge {
    background: rgba(0,0,0,0.1);
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 11px;
    flex-shrink: 0;
}

/* Top Bar with Logo */
.top-bar {
    background: #000000;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    flex-wrap: nowrap;
    gap: 10px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 15px;
    flex-shrink: 0;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.logo-prefix {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

.logo-text {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    line-height: 1;
    font-style: italic;
    white-space: nowrap;
}

.logo-registered {
    font-size: 12px;
    vertical-align: super;
    font-weight: 400;
    margin-left: 2px;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: white;
    font-weight: 400;
    margin-top: 3px;
    margin-left: 35px;
    text-align: center;
    letter-spacing: 0.5px;
}

.top-bar-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    transform: translateY(-1px);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Sign In Button - Hidden in top bar */
.signin-btn-topbar {
    display: none;
}
/* Sign In Button in Header (replacing WhatsApp) */
.signin-btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.signin-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.signin-icon {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .signin-btn-header {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .signin-icon {
        width: 18px;
        height: 18px;
    }
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0 20px;
    margin: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #10b981;
    background-color: #f0fdf4;
}

.nav-link.signin-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    margin-left: 10px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.nav-link.signin-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

.dropdown-indicator {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-indicator {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: #f0fdf4;
    border-left-color: #10b981;
    padding-left: 25px;
}

@media (min-width: 769px) {
    .desktop-nav {
        display: block;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    overflow-x: auto;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
    display: none;
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 10px;
    gap: 0;
}

.mobile-nav-item {
    flex-shrink: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-item.active .mobile-nav-link {
    color: #10b981;
    border-bottom-color: #10b981;
}

.mobile-nav-link.signin-btn-mobile {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    margin: 8px 10px 8px 4px;
    font-weight: 600;
    border: none;
}

.mobile-nav-link.signin-btn-mobile:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.mobile-dropdown-indicator {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.mobile-nav-item.active .mobile-dropdown-indicator {
    transform: rotate(180deg);
}

.mobile-dropdown-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.mobile-dropdown-container.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-dropdown {
    position: absolute;
    background: white;
    min-width: 240px;
    max-width: 90vw;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border-radius: 8px;
    transform: translate(-50%, 0) scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown-container.active .mobile-dropdown {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
}

.mobile-dropdown-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.mobile-dropdown-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-link {
    display: block;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-dropdown-link:hover,
.mobile-dropdown-link:active {
    background-color: #f0fdf4;
    border-left-color: #10b981;
    padding-left: 25px;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f9fafb;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #9ca3af;
}

.breadcrumb-link {
    color: #10b981;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #059669;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #9ca3af;
}

/* ============================================
   MAIN CONTENT & HERO SECTION
   ============================================ */

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

.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    color: #1f2937;
    padding: 70px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

/* Geometric Shapes Background */
.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.03);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

/* CFA FRM Watermarks */
.hero-watermark-cfa {
    position: absolute;
    top: 15%;
    left: 5%;
    font-size: 85px;
    font-weight: 900;
    color: rgba(134, 239, 172, 0.40);
    letter-spacing: 10px;
    transform: rotate(-15deg);
    z-index: 0;
    user-select: none;
    pointer-events: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-watermark-frm {
    position: absolute;
    top: 23%;
    left: 23%;
    font-size: 85px;
    font-weight: 900;
    color: rgba(134, 239, 172, 0.35);
    letter-spacing: 10px;
    transform: rotate(15deg);
    z-index: 0;
    user-select: none;
    pointer-events: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-watermark-brand {
    position: absolute;
    bottom: 12%;
    right: 3%;
    font-size: 32px;
    font-weight: 600;
    color: rgba(107, 114, 128, 0.12);
    letter-spacing: 2px;
    transform: rotate(10deg);
    z-index: 0;
    user-select: none;
    pointer-events: none;
    font-style: italic;
}

.hero-watermark-top-center {
    position: absolute;
    top: 0.5%;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 72px;
    font-weight: 700;
    font-style: italic;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 4px;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.08);
}

.hero-watermark-top-center .reg-symbol {
    font-size: 28px;
    vertical-align: super;
    margin-left: 2px;
}

.watermark-reg {
    font-size: 0.35em;
    vertical-align: super;
    margin-left: 3px;
    font-weight: 700;
}

/* Additional geometric shapes */
.hero-shape-1 {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.04);
    border-radius: 15px;
    transform: rotate(45deg);
    z-index: 0;
}

.hero-shape-2 {
    position: absolute;
    bottom: 25%;
    left: 10%;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(37, 99, 235, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-shape-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: rgba(16, 185, 129, 0.02);
    border-radius: 30%;
    transform: translate(-50%, -50%) rotate(25deg);
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-header {
    text-align: center;
    margin-bottom: 50px;
}

.hero-welcome {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #10b981;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 0;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.hero-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-left {
    text-align: left;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-courses {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.hero-courses-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-course-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.course-badge {
    background: white;
    color: #10b981;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #10b981;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.course-badge:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    min-width: 280px;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: #1f2937;
    border: 2px solid #e5e7eb;
}

.hero-btn-secondary:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
}

.hero-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.hero-metric {
    background: white;
    padding: 40px 35px;
    border-radius: 25% 75% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid #f3f4f6;
    transition: all 0.4s ease;
    position: relative;
}

.hero-metric:nth-child(2) {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.hero-metric:nth-child(3) {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.hero-metric:hover {
    border-color: #10b981;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    border-radius: 30%;
}

.hero-metric-number {
    font-size: 56px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
    line-height: 1;
}

.hero-metric-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-metric-description {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
}

/* Mobile responsiveness for hero */
@media (max-width: 768px) {
    .hero {
        padding: 50px 20px;
    }

    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-header {
        margin-bottom: 40px;
    }

    .hero-welcome {
        font-size: 11px;
        letter-spacing: 1px;
        word-spacing: 2px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-courses {
        margin-top: 20px;
        padding-top: 20px;
    }

    .hero-course-badges {
        justify-content: center;
    }

    .course-badge {
        font-size: 12px;
        padding: 7px 14px;
    }

    .hero-metric {
        padding: 35px 30px;
        border-radius: 25% 75% 70% 30% / 30% 30% 70% 70%;
        max-width: 100%;
        width: 100%;
    }

    .hero-metric-number {
        font-size: 48px;
    }

    .hero-watermark-cfa,
    .hero-watermark-frm {
        font-size: 55px;
        opacity: 1;
    }

    .hero-watermark-brand {
        font-size: 18px;
        opacity: 0.6;
    }

    .hero-watermark-top-center {
        font-size: 40px;
        top: 0.3%;
        letter-spacing: 2px;
    }
    
    .hero-watermark-top-center .reg-symbol {
        font-size: 16px;
    }

    .hero-shape-1,
    .hero-shape-2 {
        display: none;
    }
}

@media (max-width: 350px) {
    .hero-header {
        margin-bottom: 30px;
    }
    
    .hero-welcome {
        font-size: 9px;
        letter-spacing: 0.5px;
        word-spacing: 1px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .course-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-watermark-cfa,
    .hero-watermark-frm,
    .hero-watermark-brand,
    .hero-watermark-top-center,
    .hero-shape-3 {
        display: none;
    }
}

/* ============================================
   WHY CHOOSE US - ZIGZAG LAYOUT
   ============================================ */

.why-choose-us {
    background: #f7f7f7;
    padding: 70px 20px;
    margin-bottom: 40px;
}

.why-choose-us h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1f2937;
    font-weight: 700;
}

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

.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

.zigzag-row.reverse {
    direction: rtl;
}

.zigzag-row.reverse > * {
    direction: ltr;
}

.zigzag-content h3 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.zigzag-content p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.zigzag-stat {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.zigzag-stat:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.zigzag-stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
    line-height: 1;
}

.zigzag-stat-label {
    font-size: 16px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.zigzag-stat-description {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .why-choose-us h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .zigzag-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .zigzag-row.reverse {
        direction: ltr;
    }

    .zigzag-content h3 {
        font-size: 28px;
    }

    .zigzag-stat-number {
        font-size: 52px;
    }

    .zigzag-stat {
        padding: 40px 30px;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #555;
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */

.feature-section {
    background: linear-gradient(135deg, #fafefb 0%, #f9fefb 50%, #fafefb 100%);
    padding: 80px 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Geometric Shapes for CFA Section */
.feature-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(134, 239, 172, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.feature-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(134, 239, 172, 0.06);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.feature-section .feature-shape-1 {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(134, 239, 172, 0.05);
    border-radius: 15px;
    transform: rotate(45deg);
    z-index: 0;
}

.feature-section .feature-shape-2 {
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(134, 239, 172, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.feature-section .feature-shape-3 {
    position: absolute;
    top: 50%;
    left: 40%;
    width: 180px;
    height: 180px;
    background: rgba(134, 239, 172, 0.04);
    border-radius: 30%;
    transform: translate(-50%, -50%) rotate(25deg);
    z-index: 0;
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.feature-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.feature-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
}

.feature-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-description {
    font-size: 16px;
    color: #6b7280;
    max-width: 800px;
    line-height: 1.7;
}

/* Exam Window Selector */
.exam-window-selector {
    display: inline-block;
    position: relative;
    margin-bottom: 50px;
    z-index: 2;
}

.exam-window-select {
    appearance: none;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 18px 60px 18px 24px;
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 280px;
}

.exam-window-select:hover {
    background: white;
    border-color: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.exam-window-select:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.exam-window-selector::after {
    content: '▼';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-size: 16px;
    pointer-events: none;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.90);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.feature-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #10b981;
}

.feature-item {
    margin-bottom: 18px;
}

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

.feature-item-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 5px;
    display: block;
    line-height: 1.8;
}

.feature-item-value {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.5;
}

.feature-item-value.highlight {
    color: #059669;
    font-weight: 600;
}

/* Registration Tier Badge */
.tier-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    margin-right: 6px;
    letter-spacing: 0.5px;
}

.tier-badge.early {
    background: #d1fae5;
    color: #065f46;
}

.tier-badge.standard {
    background: #fef3c7;
    color: #92400e;
}

.tier-badge.final {
    background: #fecaca;
    color: #991b1b;
}

.feature-note {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    line-height: 1.6;
}

.feature-note:first-of-type {
    margin-top: 20px;
    padding-top: 20px;
}

.feature-note + .feature-note {
    border-top: none;
    margin-top: 8px;
    padding-top: 0;
}

/* Link Styling */
.feature-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.feature-link:hover {
    color: #059669;
    text-decoration: underline;
}

.feature-link::after {
    content: '›';
    font-size: 18px;
    transition: transform 0.2s ease;
}

.feature-link:hover::after {
    transform: translateX(3px);
}

/* Additional Feature Sections */
.feature-section.alternate {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
}

/* Geometric Shapes for FRM Section */
.feature-section.alternate::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(74, 222, 128, 0.08);
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    z-index: 0;
}

.feature-section.alternate::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 280px;
    height: 280px;
    background: rgba(74, 222, 128, 0.10);
    border-radius: 50%;
    z-index: 0;
}

.feature-section.alternate .feature-shape-1 {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 90px;
    height: 90px;
    border: 3px solid rgba(74, 222, 128, 0.10);
    border-radius: 20px;
    transform: rotate(-25deg);
    z-index: 0;
}

.feature-section.alternate .feature-shape-2 {
    position: absolute;
    bottom: 35%;
    right: 12%;
    width: 110px;
    height: 110px;
    background: rgba(74, 222, 128, 0.07);
    border-radius: 50%;
    z-index: 0;
}

.feature-section.alternate .feature-shape-3 {
    position: absolute;
    top: 60%;
    left: 35%;
    width: 160px;
    height: 160px;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 25%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 0;
}

.feature-section.light {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

/* Geometric Shapes for Third Section */
.feature-section.light::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: rgba(209, 213, 219, 0.3);
    border-radius: 50%;
    z-index: 0;
}

.feature-section.light::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 320px;
    height: 320px;
    background: rgba(209, 213, 219, 0.25);
    border-radius: 35% 65% 65% 35% / 65% 35% 65% 35%;
    z-index: 0;
}

.feature-section.light .feature-shape-1 {
    position: absolute;
    top: 25%;
    right: 8%;
    width: 95px;
    height: 95px;
    background: rgba(209, 213, 219, 0.2);
    border-radius: 18px;
    transform: rotate(30deg);
    z-index: 0;
}

.feature-section.light .feature-shape-2 {
    position: absolute;
    bottom: 30%;
    left: 10%;
    width: 115px;
    height: 115px;
    border: 3px solid rgba(209, 213, 219, 0.25);
    border-radius: 50%;
    z-index: 0;
}

/* Mobile Responsiveness for Feature Sections */
@media (max-width: 768px) {
    .feature-section {
        padding: 60px 20px;
    }

    .feature-title {
        font-size: 32px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .exam-window-select {
        font-size: 24px;
        padding: 16px 50px 16px 20px;
        min-width: 240px;
    }

    .feature-card {
        padding: 28px 24px;
    }
    
    .tier-badge {
        font-size: 9px;
        padding: 2px 6px;
        margin-right: 4px;
    }

    .feature-shape-2,
    .feature-shape-3 {
        display: none;
    }

    .feature-section::before,
    .feature-section::after {
        width: 180px;
        height: 180px;
    }

    .feature-section.alternate::before,
    .feature-section.alternate::after {
        width: 180px;
        height: 180px;
    }

    .feature-section.light::before,
    .feature-section.light::after {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .feature-title {
        font-size: 28px;
    }

    .exam-window-select {
        font-size: 20px;
        width: 100%;
    }

    .feature-shape-1,
    .feature-shape-2,
    .feature-shape-3 {
        display: none;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    background: linear-gradient(135deg, #fafefb 0%, #f9fefb 50%, #fafefb 100%);
    padding: 80px 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Geometric Shapes */
.pricing-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(134, 239, 172, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(134, 239, 172, 0.06);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.pricing-shape-1 {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(134, 239, 172, 0.05);
    border-radius: 15px;
    transform: rotate(45deg);
    z-index: 0;
}

.pricing-shape-2 {
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(134, 239, 172, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-description {
    font-size: 16px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* CFA/FRM Toggle */
.course-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-wrapper {
    background: white;
    border: 2px solid #10b981;
    border-radius: 50px;
    padding: 6px;
    display: flex;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.toggle-btn {
    padding: 12px 40px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.toggle-btn:hover:not(.active) {
    color: #10b981;
}

/* Exam Window & Level Selectors */
.selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.selector-item {
    text-align: center;
}

.exam-window-label {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    display: block;
}

.exam-window-dropdown {
    position: relative;
    display: inline-block;
}

.exam-window-dropdown::after {
    content: '▼';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-size: 14px;
    pointer-events: none;
}

/* Pricing Cards Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: #10b981;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

.pricing-card.featured {
    border-color: #10b981;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.plan-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
}

.plan-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: super;
    margin-right: 4px;
}

.price-period {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

.price-note {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 8px;
    font-style: italic;
}

.plan-cta {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.plan-cta.primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.plan-cta.primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.plan-cta.secondary {
    background: white;
    color: #10b981;
    border: 2px solid #10b981;
}

.plan-cta.secondary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

/* Features List */
.features-list {
    list-style: none;
}

.feature-item {
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-icon.included {
    color: #10b981;
}

.feature-icon.not-included {
    color: #d1d5db;
}

.feature-text {
    flex: 1;
}

.feature-name {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 4px;
}

.feature-item.not-included .feature-name {
    color: #9ca3af;
}

.feature-details {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-top: 6px;
}

/* Expandable Feature Details */
.feature-expandable {
    cursor: pointer;
    position: relative;
}

.expand-icon {
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 12px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.feature-expandable.expanded .expand-icon {
    transform: rotate(180deg);
}

.feature-details.collapsed {
    display: none;
}

.feature-details.expanded {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

/* Comparison Note */
.comparison-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.comparison-note-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.comparison-note-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Mobile Responsiveness for Pricing */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-title {
        font-size: 32px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .toggle-btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .exam-window-select {
        font-size: 16px;
        min-width: 280px;
        padding: 14px 50px 14px 20px;
    }

    .selector-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-name {
        font-size: 22px;
    }

    .price-amount {
        font-size: 40px;
    }

    .pricing-shape-1,
    .pricing-shape-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 28px;
    }

    .toggle-wrapper {
        width: 100%;
    }

    .toggle-btn {
        flex: 1;
        padding: 12px 20px;
        font-size: 14px;
    }

    .exam-window-select {
        width: 100%;
        min-width: auto;
    }

    .selector-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .selector-item {
        width: 100%;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}

/* ============================================
   ACCORDION SECTIONS STYLES
   ============================================ */

.accordion-sections {
    background: #f7f7f7;
    padding: 70px 20px;
    margin-bottom: 40px;
}

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

.accordion-panel {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-panel:hover {
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

.accordion-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-bottom-color: #10b981;
}

.accordion-header h3 {
    margin: 0;
    font-size: 24px;
    color: #1f2937;
    font-weight: 700;
}

.accordion-icon {
    font-size: 32px;
    color: #10b981;
    font-weight: bold;
    transition: transform 0.3s ease;
    line-height: 1;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content.active {
    max-height: 5000px;
}

.accordion-inner {
    padding: 40px 30px;
}

/* Demo Time Bubble Styles */
.demo-time-bubble {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.demo-time-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
    border-color: #059669;
}

.demo-course-name {
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #bbf7d0;
}

.demo-date-time {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-date {
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.demo-date-number {
    font-size: 32px;
}

.demo-time {
    font-size: 16px;
    color: #047857;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.no-demo-message {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    color: #92400e;
    font-weight: 600;
}

/* Demo Form Styles */
.demo-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 12px;
}

.consent-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.consent-box input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.consent-box label {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    cursor: pointer;
}

.demo-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.demo-submit-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.demo-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
    display: block;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Video Testimonials Grid */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.video-testimonial-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* View All Testimonials Button */
.view-all-testimonials-btn {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.view-all-testimonials-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-linkedin-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.author-linkedin-link:hover .author-name {
    color: #10b981;
}

.linkedin-icon {
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    color: #0077b5;
    transition: transform 0.3s ease;
}

.author-linkedin-link:hover .linkedin-icon {
    transform: scale(1.2);
}

.author-name {
    color: #1f2937;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-course {
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #10b981;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.faq-question span:first-child {
    color: #1f2937;
    font-weight: 600;
    font-size: 16px;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    color: #10b981;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px 25px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    background: #f9fafb;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f9fafb;
}

.gallery-item:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-category {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-caption {
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.placeholder-icon {
    font-size: 50px;
}

.gallery-placeholder p {
    color: #1f2937;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

/* Lightbox/Modal Styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    color: #1f2937;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #10b981;
    color: white;
    transform: rotate(90deg);
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 20px;
    font-size: 16px;
}

/* Mobile Responsive for Accordion */
@media (max-width: 768px) {
    .accordion-sections {
        padding: 50px 15px;
    }
    
    .accordion-header {
        padding: 20px;
    }
    
    .accordion-header h3 {
        font-size: 18px;
    }
    
    .accordion-icon {
        font-size: 24px;
    }
    
    .accordion-inner {
        padding: 25px 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .demo-form-container {
        padding: 25px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .video-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, #d4d4d4 0%, #c0c0c0 100%);
    color: #333;
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4d4d4 0%, #c0c0c0 100%);
    color: #333;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button:hover {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

footer {
    background-color: #1f2937;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #10b981;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #10b981;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
}

/* Mobile Responsiveness for Top Bar & Header */
@media (max-width: 768px) {
    .top-bar {
        padding: 12px 15px;
        gap: 8px;
    }

    .logo-text {
        font-size: 30px;
    }

    .logo-prefix {
        font-size: 10px;
    }

    .tagline {
        font-size: 10px;
        margin-left: 20px;
        text-align: center;
    }

    .whatsapp-btn {
        padding: 10px;
        font-size: 12px;
        gap: 6px;
    }

    .whatsapp-btn span {
        display: none;
    }

    .logo {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 22px;
    }

    .logo-prefix {
        font-size: 9px;
    }

    .tagline {
        font-size: 9px;
        margin-left: 15px;
        text-align: center;
        letter-spacing: 0.3px;
    }

    .top-info-bar {
        padding: 6px 10px;
        font-size: 11px;
        gap: 15px;
    }

    .top-info-left {
        gap: 15px;
    }

    .trust-badge {
        flex-shrink: 0;
    }

    .logo {
        gap: 8px;
    }

    .whatsapp-btn {
        padding: 8px;
        font-size: 11px;
    }

    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}