/* =========================
    CSS RESET & GLOBAL STYLES
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #234181;
    --primary-light: #4fc9f5;
    --secondary-color: #fff041;
    --secondary-light: #fff9c4;
    --light-color: #ffffff;
    --dark-color: #333;
    --gray-color: #6c757d;
    --light-gray: #f5f7fa;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}



body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  */
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--light-gray);
}

.btn {
    display: inline-block;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(255, 240, 65, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-photo{
    position: relative;
    width: 100%;
}

/* =========================
    HEADER & NAVIGATION
========================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 15px rgba(35, 65, 129, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* =========================
    HERO SECTION
========================== */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, rgba(35, 65, 129, 0.05) 0%, rgba(79, 201, 245, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    /* top: 0;  */
    bottom: 0;
    right: 0;
    width: 33%;
    aspect-ratio: 4/5;
    background: url('../images/cbeposter.jpg') no-repeat center center/cover;
    border-radius: 0 0 0 100px;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================
    TRUST INDICATORS
========================== */
.trust-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    margin: 0.5rem 0;
}

.trust-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* =========================
    PROBLEM & SOLUTION
========================== */
.problem-solution-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.problem-solution-text {
    flex: 1;
}

.problem-solution-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.problem-solution-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.problem-solution-image:hover img {
    transform: scale(1.05);
}

.problem-box, .solution-box {
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.problem-box {
    background-color: rgba(255, 240, 65, 0.08);
    border-left: 4px solid var(--secondary-color);
}

.solution-box {
    background-color: rgba(79, 201, 245, 0.08);
    border-left: 4px solid var(--primary-light);
}

/* =========================
    COURSE OVERVIEW
========================== */
.course-overview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================
    LEARNING OUTCOMES
========================== */
.outcomes-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.outcomes-list {
    flex: 1;
}

.outcomes-icon {
    flex: 0 0 150px;
    text-align: center;
}

.outcomes-icon i {
    font-size: 8rem;
    color: var(--primary-light);
    
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.outcome-item i {
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    
}

.thinned { 
    font-weight: 500; 
    font-size: 1rem;
}

/* =========================
    TARGET AUDIENCE
========================== */
.audience-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.audience-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.audience-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.audience-image:hover img {
    transform: scale(1.05);
}

.audience-list {
    flex: 1;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.audience-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

/* =========================
    COURSE STRUCTURE
========================== */
.structure-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.structure-text {
    flex: 1;
}

.structure-highlight {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
}

.highlight-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.structure-details {
    flex: 1;
}

.structure-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.structure-detail-item i {
    color: var(--primary-light);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

/* =========================
    COURSE SCHEDULE
========================== */
.schedule-cycles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cycle-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cycle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-light);
}

.cycle-label {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cycle-dates {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* =========================
    PARTICIPANT BENEFITS
========================== */
.benefits-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.benefits-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 250px;
    display: flex;
    align-items: flex-start;
}

.benefit-item i {
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.benefits-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.benefits-image:hover img {
    transform: scale(1.05);
}

/* =========================
    FACILITATORS
========================== */
.facilitators-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.facilitator-card {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: left;
}

.facilitator-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--light-gray);
    transition: var(--transition);
}

.facilitator-card:hover .facilitator-photo {
    border-color: var(--primary-light);
    transform: scale(1.05);
}

.facilitator-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facilitator-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.facilitator-bio {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* =========================
    PRICING
========================== */
.pricing-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.price-note {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

/* =========================
    FINAL CTA
========================== */
.final-cta {
    background: linear-gradient(rgba(35, 65, 129, 0.85), rgba(35, 65, 129, 0.9)), url('') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.final-cta h2 {
    color: white;
}

.final-cta h2::after {
    background-color: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

/* =========================
    FOOTER
========================== */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.copyright {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* =========================
    RESPONSIVE STYLES
========================== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero::before {
        width: 40%;
        border-radius: 0 0 0 50px;
    }
    
    .problem-solution-content,
    .outcomes-content,
    .audience-content,
    .structure-content,
    .benefits-content {
        flex-direction: column;
    }
    
    .outcomes-icon {
        order: -1;
    }
    
    .audience-image,
    .benefits-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .highlight-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   TYPOGRAPHY SYSTEM
========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@400;700&display=swap');

:root {
    /* Font Families */
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Font Sizes - Modular Scale (1.25 ratio) */
    --text-xs: 0.8rem;
    --text-sm: 0.9rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.563rem;
    --text-3xl: 1.953rem;
    --text-4xl: 2.441rem;
    --text-5xl: 3.052rem;
}

body {
    font-family: var(--font-body);
    font-weight: var(--font-regular);
    line-height: 1.6;
    color: var(--dark-color);
}

/* Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: var(--text-5xl);
    letter-spacing: -0.5px;
}

h2 {
    font-size: var(--text-4xl);
    letter-spacing: -0.3px;
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

/* Paragraphs */
p {
    font-size: var(--text-base);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: var(--text-xl);
    font-weight: var(--font-light);
    line-height: 1.7;
}

/* Hero Section */
.hero h1 {
    font-size: var(--text-5xl);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: var(--text-xl);
    font-weight: var(--font-light);
    line-height: 1.7;
}

/* Cards & Highlights */
.card h3 {
    font-size: var(--text-xl);
    color: var(--primary-color);
}

.highlight-item h3 {
    font-size: var(--text-lg);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    letter-spacing: 0.3px;
}

/* Navigation */
.nav-links a {
    font-weight: var(--font-medium);
    letter-spacing: 0.2px;
}

/* Footer */
footer {
    font-weight: var(--font-light);
}

footer h3 {
    font-family: var(--font-body);
    font-weight: var(--font-semibold);
    font-size: var(--text-lg);
}

/* Responsive Typography */
@media (max-width: 992px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
    }
    
    h1 {
        font-size: var(--text-4xl);
    }
    
    h2 {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
        --text-xl: 1.125rem;
    }
    
    .hero h1 {
        font-size: var(--text-3xl);
    }
    
    .hero p {
        font-size: var(--text-lg);
    }
}

/* Special Text Elements */
.price-amount {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    font-size: 3.5rem;
}

.facilitator-name {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
}

.cycle-label {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
}

/* =========================
   ENROLMENT FORM STYLES
========================== */
.enrolment-section {
    background: linear-gradient(135deg, rgba(35, 65, 129, 0.05) 0%, rgba(79, 201, 245, 0.05) 100%);
}

.enrolment-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.enrolment-info {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.enrolment-form-wrapper {
    flex: 1;
}

.payment-details {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.payment-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.payment-method i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.payment-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.payment-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.payment-info-label {
    font-weight: var(--font-medium);
}

.payment-info-value {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    color: var(--secondary-color);
}

/* Form Styles */
.enrolment-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-medium);
    color: var(--primary-color);
}

.form-label .required {
    color: #e74c3c;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(79, 201, 245, 0.1);
}

.form-control.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23234181' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: var(--text-sm);
    color: var(--gray-color);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    margin-top: 2.5rem;
    text-align: center;
}

.form-submit .btn {
    min-width: 200px;
}

/* Form Validation States */
.form-control.error {
    border-color: #e74c3c;
}

.form-control.success {
    border-color: #2ecc71;
}

/* Responsive Form */
@media (max-width: 992px) {
    .enrolment-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .enrolment-form,
    .enrolment-info {
        padding: 1.5rem;
    }
    
    .payment-method {
        flex-direction: column;
        text-align: center;
    }
}

.hlit{ color: var(--primary-light); }
.hlit:hover{ color: var(--light-color); }

/* =========================
   HEADER & NAVIGATION
========================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 15px rgba(35, 65, 129, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* MOBILE STYLES - IMPORTANT */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1000;
        margin: 0;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    .nav-links a.btn {
        margin: 1rem auto;
        width: 80%;
        text-align: center;
    }
}

