/* ====== Global Styles ====== */
:root {
    --primary: #1a3a6e;       /* Deep blue for trust/professionalism */
    --secondary: #d4af37;     /* Gold for luxury/premium */
    --accent: #e63946;       /* Red for CTAs/important elements */
    --light: #f8f9fa;        /* Light background */
    --dark: #212529;         /* Dark text */
    --gray: #6c757d;         /* Secondary text */
    --light-gray: #e9ecef;    /* Borders/light elements */
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lora', serif;
    
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--secondary);
    text-align: center;
}

.btn:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ====== Header Styles ====== */
header {
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 2rem;
}

nav a {
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--secondary);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ====== Hero Section ====== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1501594907352-04cda38ebc29?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero .container {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

/* ====== Programs Section ====== */
.programs {
    padding: 6rem 0;
    background: var(--light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-header {
    padding: 2rem;
    background: var(--primary);
    color: white;
    text-align: center;
}

.program-header h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.program-body {
    padding: 2rem;
}

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

.program-body li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.program-body i {
    color: var(--secondary);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.program-countries {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

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

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.country-tags span {
    background: var(--light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--dark);
}

.program-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

/* ====== Benefits Section ====== */
.benefits {
    padding: 6rem 0;
    background: white;
}

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

.benefit-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--secondary);
    transform: rotate(10deg) scale(1.1);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ====== Process Section ====== */
.process {
    padding: 6rem 0;
    background: var(--light);
}

.timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    width: 18%;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--light);
    transition: var(--transition);
}

.step:hover .step-number {
    background: var(--secondary);
    transform: scale(1.1);
}

.step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.step-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ====== Testimonials Section ====== */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.testimonial {
    min-width: 350px;
    background: var(--light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ====== Contact Section ====== */
.contact {
    padding: 6rem 0;
    background: var(--primary);
    color: white;
}

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

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

/* ====== Footer ====== */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 0;
}

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

.footer-about h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-about p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h3,
.footer-legal h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-legal a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 1rem auto 0;
}

.footer-disclaimer small {
    opacity: 0.6;
    font-size: 0.8rem;
}

/* ====== Responsive Styles ====== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .timeline {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .timeline::before {
        display: none;
    }
    
    .step {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn, .btn-outline {
        width: 100%;
        display: block;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
/* ====== About Page Specific Styles ====== */

/* About Hero */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Our Story */
.our-story {
    padding: 6rem 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark);
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission & Values */
.mission-values {
    padding: 6rem 0;
    background: var(--light);
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

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

/* Leadership Team */
.leadership {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-contact {
    display: flex;
    gap: 1rem;
}

.member-contact a {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.member-contact a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Global Presence */
.global-presence {
    padding: 6rem 0;
    background: var(--light);
}

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

.office-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.office-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: var(--transition);
}

.office-card:hover .office-icon {
    background: var(--secondary);
    transform: rotate(10deg) scale(1.1);
}

.office-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.office-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Accreditation */
.accreditation {
    padding: 6rem 0;
    background: white;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.logo-item {
    padding: 1.5rem;
    background: var(--light);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* About CTA */
.about-cta {
    padding: 5rem 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* ====== Responsive Adjustments ====== */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
    z-index: 1001;
}

.mobile-menu-btn .fa-times {
    display: none;
}

.mobile-menu-btn.active .fa-bars {
    display: none;
}

.mobile-menu-btn.active .fa-times {
    display: block;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    /* Overlay when menu is open */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
/* Mobile Menu Styles - Simplified Version */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary);
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}
/* Eligibility Quiz Styles */
.eligibility-quiz {
    padding: 5rem 0;
    background: var(--light);
}

.quiz-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quiz-header h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.quiz-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-progress {
    margin-bottom: 2rem;
    position: relative;
}

.progress-bar {
    height: 6px;
    background: var(--secondary);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    transition: width 0.3s ease;
}

.quiz-progress span {
    font-size: 0.9rem;
    color: var(--gray);
}

.quiz-step h3 {
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 1.3rem;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quiz-option {
    background: var(--light);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-option i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.quiz-option span {
    font-weight: 600;
    color: var(--dark);
}

.quiz-option:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.quiz-option:hover i,
.quiz-option:hover span {
    color: white;
}

.quiz-results {
    display: none;
    text-align: center;
}

.quiz-results.active {
    display: block;
}

.result-header i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.result-header h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.result-programs {
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.result-program {
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
}

.result-program img {
    width: 60px;
    margin-right: 1.5rem;
}

.result-program h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.result-program p {
    color: var(--gray);
    font-size: 0.9rem;
}

.result-cta {
    margin-top: 2rem;
}

.result-cta p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .quiz-step h3 {
        font-size: 1.1rem;
    }
    
    .quiz-option {
        padding: 1rem;
    }
}
/* Destination Page Specific Styles */
.destination-hero {
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.breadcrumbs a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--secondary);
}

.destination-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.destination-hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.stat-item i {
    color: var(--secondary);
}

/* Quick Facts */
.quick-facts {
    padding: 4rem 0;
    background: var(--light);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fact-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.fact-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.fact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* Program Benefits */
.program-benefits {
    padding: 6rem 0;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Investment Options */
.investment-options {
    padding: 6rem 0;
    background: var(--light);
}

.options-tabs {
    margin-top: 3rem;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.option-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.option-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.option-image img {
    width: 100%;
    height: auto;
    display: block;
}

.option-text h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.option-text p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.option-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.option-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.option-features i {
    color: var(--secondary);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

/* Visa Free Section */
.visa-free {
    padding: 6rem 0;
}

.visa-map {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.country-group h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.country-group ul {
    list-style: none;
}

.country-group li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.country-group li::before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
}

/* Destination Process */
.destination-process {
    padding: 6rem 0;
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-steps .step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-steps .step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-steps .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.process-steps .step:hover .step-number {
    background: var(--secondary);
    transform: scale(1.1);
}

.process-steps h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Comparison Table */
.program-comparison {
    padding: 6rem 0;
}

.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, 
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: var(--light);
}

.comparison-table tr:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Destination CTA */
.destination-cta {
    padding: 5rem 0;
    background: var(--primary);
    color: white;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .destination-hero h1 {
        font-size: 2.8rem;
    }
    
    .option-details {
        grid-template-columns: 1fr;
    }
    
    .option-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .destination-hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .destination-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tab-header {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
    }
    
    .tab-btn.active {
        border-left-color: var(--secondary);
    }
}

@media (max-width: 576px) {
    .destination-hero {
        height: 70vh;
    }
    
    .destination-hero h1 {
        font-size: 2rem;
    }
    
    .destination-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}
/* Enhanced Quiz Results */
.program-result {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.program-result h3 {
    color: var(--primary);
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.program-benefits ul {
    margin: 15px 0 25px;
}

.program-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.program-benefits i {
    color: var(--secondary);
    margin-right: 10px;
}

.program-options {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.program-option {
    background: var(--light);
    padding: 20px;
    border-radius: 6px;
}

.program-details {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9em;
}

.program-details span {
    display: flex;
    align-items: center;
}

.program-details i {
    margin-right: 5px;
    color: var(--text-light);
}

/* Tab Styles */
.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}