/* 
   Theme: Apple Minimal (Arabic)
   Philosophy: "Less is More" - Whitespace, Typography, Focus.
   Fonts: Tajawal (Primary for everything)
*/

:root {
    /* Apple Inspired Palette */
    --bg-body: #F5F5F7;
    /* Light Grey Background */
    --bg-card: #FFFFFF;
    /* Crisp White Cards */
    --text-primary: #1D1D1F;
    --text-white: #FFFFFF;
    /* Almost Black */
    --text-secondary: #86868B;
    /* Secondary Grey */
    --accent: #2D3389;
    /* Apple Link Blue */
    --accent-hover: #2D3389;
    --border: #D2D2D7;
    /* Subtle Border */

    /* Spacing & Layout */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 120px;

    --container-width: 980px;
    /* Apple's standard is tighter for reading */

    /* Typography */
    --font-main: 'IBM Plex Sans Arabic', sans-serif;

    /* UI Tokens */
    --radius-sm: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 56px;
    line-height: 1.05;
}

h2 {
    font-size: 40px;
    line-height: 1.1;
}

h3 {
    font-size: 24px;
}

p {
    color: var(--text-secondary);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.45;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-lg);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-badge {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 980px;
    /* Pill shape */
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: scale(1.02);
}

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

.btn-outline:hover {
    text-decoration: underline;
}

/* Navbar - Enhanced Padding */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

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

.logo {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 24px;
    flex: 1;
    margin-left: 40px;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    font-size: 12px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    flex-shrink: 0;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 996;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 997;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    flex-shrink: 0;
}

.mobile-menu-close:active {
    opacity: 0.6;
}

.mobile-menu-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    order: 2;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    list-style: none;
    flex: 1;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-links a {
    display: block;
    padding: 18px 20px;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.2s ease;
    text-align: right;
}

.mobile-nav-links a.btn {
    color: var(--text-white);
}


.mobile-nav-links a:hover {
    background: var(--bg-body);
    color: var(--accent);
}

.btn-mobile {
    display: inline-flex;
    justify-content: center;
    margin: 20px;
    width: calc(100% - 40px);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    background: white;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-sub {
    max-width: 600px;
    margin: 0 auto 30px;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.trust-badges {
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0.8;
}

.video-placeholder {
    margin: 60px auto 0;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: black;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.play-button {
    font-size: 40px;
    color: white;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.video-placeholder:hover .play-button {
    opacity: 1;
}

.circle-decoration {
    display: none;
}

/* Removing non-minimal decoration */
.partners-strip {
    display: none;
}

/* Removing clutter */

/* Instructor (Bento Style) */
.instructor-section {
    background-color: var(--bg-body);
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.instructor-image-wrapper {
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.instructor-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1.2;
    background: #eee;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.exp-badge {
    display: none;
}

/* Too noisy for minimal style */

.instructor-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.role {
    display: block;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
}

.instructor-highlights li {
    font-size: 17px;
    margin-bottom: 12px;
    padding-left: 0;
    list-style: none;
    /* Icon handles bullet */
}


/* Course Overview (Grid) */
.overview-section {
    background: white;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.curriculum-card {
    background: var(--bg-body);
    /* Grey on White */
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.curriculum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.curriculum-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.curriculum-card p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Stats (Minimal Strip) */
.stats-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    background: white;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Target Audience & Testimonials & Career (Cards) */
.target-section,
.career-section {
    background: var(--bg-body);
}

.audience-grid,
.reviews-grid,
.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.audience-card,
.review-card,
.career-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.check-icon,
.career-icon {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
}

.audience-card h3 {
    font-size: 20px;
}

.audience-card p {
    font-size: 16px;
}

.career-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    width: auto;
}


.audience-card,
.review-card,
.career-item {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.audience-card:hover,
.review-card:hover,
.career-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.review-card .reviewer-info {
    margin-top: 10px;
}

.review-card h4 {
    margin: 0;
}

.audience-card:hover .check-icon,
.career-item:hover .career-icon {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

.audience-card:hover h3 {
    letter-spacing: 0.5px;
    transition: letter-spacing 0.3s ease;
}

.career-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.career-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.career-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.career-item:hover .career-icon {
    transform: scale(1.2) rotate(5deg);
}



/* FAQ - Enhanced Card Style */
.faq-section {
    background: var(--bg-body);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(0, 113, 227, 0.12);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-main);
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question .icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
        padding 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
        opacity 0.3s ease;
    opacity: 0;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
    opacity: 1;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}


/* Pricing */
.pricing-section {
    background: var(--bg-body);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

/* Pro Plan Highlight */
.pricing-card.pro-plan {
    border: 2px solid var(--accent);
    box-shadow: 0 20px 60px rgba(0, 113, 227, 0.15);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.pro-plan:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.price {
    color: var(--text-primary);
    margin: 24px 0 8px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
    font-weight: 700;
    font-size: 56px;
}

.price .currency {
    font-size: 24px;
    margin-top: 8px;
    font-weight: 500;
}

.price-sub {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.pricing-features {
    text-align: right;
    margin-bottom: 40px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.pricing-features li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    gap: 12px;
    color: var(--text-primary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.guarantee {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Apply to all pricing cards */
.pricing-card {
    transition: transform 0.3s ease-in-out;
    /* smooth animation */
}

/* On hover: scale 1.1 and move up slightly */
.pricing-card:hover {
    transform: scale(1.1) translateY(-10px);
    /* adjust -10px as needed */
    z-index: 10;
    /* ensures the card is above others */
}

/* Mobile Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card.pro-plan {
        transform: scale(1);
        border-width: 2px;
    }

    .pricing-card.pro-plan:hover {
        transform: translateY(-5px);
    }
}



/* Modal Polish */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #FFFFFF;
    width: 90%;
    max-width: 480px;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.94);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #F5F5F7;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #E5E5EA;
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 32px;
    text-align: center;
}

.modal-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.modal-header p {
    font-size: 15px;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 16px;
    background: #F5F5F7;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    background: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
}




/* Footer - Modern Design */
.footer {
    background: white;
    border-top: 1px solid var(--border);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: var(--spacing-lg);
}

.footer-col .logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links span {
    width: 40px;
    height: 40px;
    background: var(--bg-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-links span:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 60px;
        --spacing-lg: 40px;
        --container-width: 100%;
    }

    html {
        font-size: 15px;
    }

    h1 {
        font-size: 36px;
        line-height: 1.1;
    }

    h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    /* Navbar */
    .navbar {
        padding: 12px 0;
    }

    .navbar-content {
        justify-content: space-between;
        gap: 16px;
    }

    .logo {
        font-size: 16px;
        flex: 1;
    }

    .nav-links {
        display: none !important;
    }

    .navbar-content>.btn {
        display: none !important;
    }

    .hamburger-menu {
        display: flex !important;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-sub {
        max-width: 100%;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .trust-badges {
        font-size: 13px;
    }

    .video-placeholder {
        margin: 20px auto 0;
        max-width: 100%;
    }

    /* Instructor Section */
    .instructor-section {
        padding: 40px 0;
    }

    .instructor-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .instructor-content h2 {
        font-size: 28px;
    }

    .instructor-highlights li {
        font-size: 15px;
    }

    /* Curriculum Grid */
    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .curriculum-card {
        padding: 24px;
    }

    .card-icon {
        font-size: 32px;
    }

    /* Stats Section */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        text-align: center;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Audience, Reviews, Career Cards */
    .audience-grid,
    .career-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audience-card,
    .review-card,
    .career-item {
        padding: 24px;
    }

    .audience-card h3 {
        font-size: 18px;
    }

    .audience-card p {
        font-size: 14px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* Pricing */
    .pricing-section {
        padding: 40px 0;
    }

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

    .pricing-card {
        padding: 30px;
    }

    .pricing-card.pro-plan {
        transform: scale(1);
    }

    .price {
        font-size: 42px;
    }

    .pricing-features {
        padding-top: 20px;
    }

    .pricing-features li {
        font-size: 14px;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        padding: 40px 24px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .form-group input {
        padding: 14px;
        font-size: 16px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col .logo {
        font-size: 18px;
    }

    .footer-col p {
        font-size: 14px;
    }

    .footer-col h4 {
        font-size: 14px;
    }

    .footer-col ul li a {
        font-size: 14px;
    }

    .social-links {
        justify-content: center;
    }

    .section {
        padding: 40px 0;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    :root {
        --spacing-xl: 40px;
        --spacing-lg: 24px;
        --spacing-md: 20px;
        --container-width: 100%;
    }

    html {
        font-size: 14px;
    }

    h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
        line-height: 1.5;
    }

    .container {
        padding: 0 16px;
    }

    /* Navbar */
    .navbar {
        padding: 10px 0;
        position: static;
        background: white;
    }

    .navbar-content {
        gap: 12px;
    }

    .logo {
        font-size: 14px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .navbar-content .btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    /* Hero Section */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

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

    .hero-sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-cta-group {
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-cta-group .btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .btn-lg {
        padding: 10px 16px !important;
    }

    .trust-badges {
        font-size: 12px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .video-placeholder {
        aspect-ratio: 16/9;
        margin-top: 20px;
        border-radius: 12px;
    }

    .play-button {
        font-size: 30px;
    }

    /* Instructor Section */
    .instructor-section {
        padding: 30px 0;
    }

    .instructor-img-placeholder {
        font-size: 40px;
    }

    .instructor-content h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .role {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .instructor-highlights li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    /* Curriculum */
    .curriculum-grid {
        gap: 12px;
    }

    .curriculum-card {
        padding: 20px;
    }

    .card-icon {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .curriculum-card h3 {
        font-size: 16px;
    }

    .curriculum-card p {
        font-size: 13px;
    }

    /* Stats */
    .stats-section {
        padding: 30px 0;
    }

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

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Cards */
    .audience-grid,
    .reviews-grid,
    .career-grid {
        gap: 12px;
    }

    .audience-card,
    .review-card,
    .career-item {
        padding: 20px;
    }

    .audience-card h3 {
        font-size: 16px;
    }

    .audience-card p {
        font-size: 13px;
    }

    /* FAQ */
    .faq-section {
        padding: 30px 0;
    }

    .faq-question {
        padding: 16px;
        font-size: 14px;
        gap: 12px;
    }

    .faq-question .icon {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    /* Pricing */
    .pricing-section {
        padding: 30px 0;
    }

    .pricing-card {
        padding: 24px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .price {
        font-size: 36px;
    }

    .price .currency {
        font-size: 20px;
    }

    .price-sub {
        font-size: 14px;
    }

    .pricing-features {
        padding-top: 16px;
    }

    .pricing-features li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .guarantee {
        font-size: 12px;
        margin-top: 12px;
    }

    /* Modal */
    .modal-content {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .modal-header {
        margin-bottom: 24px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input {
        padding: 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }

    .footer-content {
        gap: 30px;
    }

    .footer-col .logo {
        font-size: 16px;
    }

    .footer-col p {
        font-size: 13px;
        max-width: 100%;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        font-size: 13px;
    }

    .social-links span {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .section {
        padding: 30px 0;
    }

    .section-badge {
        font-size: 12px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 20px;
    }

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

/* Large Screens (1200px and above) - Optional Enhancement */
@media (min-width: 1200px) {
    :root {
        --container-width: 1140px;
    }

    h1 {
        font-size: 64px;
    }

    h2 {
        font-size: 48px;
    }

    .hero-section {
        padding-top: 180px;
        padding-bottom: 100px;
    }
}


.social-links i {
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s;
}

.social-links i:hover {
    color: #5A60AB;
}


.reviews-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    gap: 20px;
    position: relative;
    left: 0;
}

.review-card {
    min-width: 300px;
    max-width: 350px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #666;
}

.stars {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #f5c518;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 250px;
        max-width: 280px;
        padding: 15px;
    }
}