/* ========================================
   ACADIGO EDU - BRAND STYLESHEET
   Updated: December 2025
   ======================================== */

/* ========== CSS Variables (Brand Colors) ========== */
:root {
    /* Primary Colors - Updated from reference design */
    --dark-teal: #0d4d4d;
    --dark-teal-deep: #063F47;
    --energy-green: #a4d65e;
    --energy-green-bright: #8bc34a;
    
    /* Secondary Colors */
    --light-purple: #B262E0;
    --lime-yellow: #F7E986;
    --gray: #E2E2E2;
    --gray-light: #f5f5f5;
    --white: #FFFFFF;
    --cream: #fef9e7;
    
    /* Functional Colors */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-on-dark: #ffffff;
    --border-color: #E2E2E2;
    
    /* Typography */
    --font-heading: 'Arsenal', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Content Spacing */
    --content-padding: 2.5rem;
    --card-padding: 2rem;
    --section-padding: 5rem 0;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(6, 63, 71, 0.08);
    --shadow-md: 0 4px 16px rgba(6, 63, 71, 0.12);
    --shadow-lg: 0 8px 32px rgba(6, 63, 71, 0.16);
}

/* ========== Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-teal);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========== Container ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-body);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--energy-green);
    color: var(--dark-teal);
    border-color: var(--energy-green);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--energy-green);
    border-color: var(--energy-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-large {
    background-color: var(--energy-green);
    color: var(--dark-teal);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.btn-primary-large:hover {
    background-color: transparent;
    color: var(--energy-green);
    border-color: var(--energy-green);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-teal);
}

.btn-outline-small {
    background-color: transparent;
    color: var(--dark-teal);
    border-color: var(--dark-teal);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn-outline-small:hover {
    background-color: var(--dark-teal);
    color: var(--white);
}

/* ========== Navigation ========== */
.navbar {
    background-color: var(--dark-teal);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu > li > a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu > li > a:hover {
    color: var(--energy-green);
}

.nav-menu > li > a.cta-link {
    background-color: var(--energy-green);
    color: var(--dark-teal);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
}

.nav-menu > li > a.cta-link:hover {
    background-color: var(--white);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: var(--gray);
    color: var(--dark-teal);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== Hero Section ========== */
.hero {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #084b56 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 227, 77, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--energy-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* ========== Section Styles ========== */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ========== Countries Section ========== */
.countries-section {
    background-color: var(--white);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.country-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-card:hover {
    border-color: var(--energy-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.country-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.country-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-teal);
}

.country-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--energy-green);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ========== Courses Section ========== */
.courses-section {
    background-color: #f9fafb;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.course-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.course-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.course-card > p {
    margin-bottom: 1.5rem;
}

.course-highlights {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.course-highlights li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.course-highlights li::marker {
    color: var(--energy-green);
}

/* ========== Why Section ========== */
.why-section {
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--energy-green) 0%, #6bc93d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.95rem;
}

/* ========== Process Section ========== */
.process-section {
    background: linear-gradient(135deg, #f9fafb 0%, var(--white) 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--energy-green);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--dark-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
}

.process-cta {
    text-align: center;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--energy-green);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--dark-teal);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* ========== FAQ Section ========== */
.faq-section {
    background-color: #f9fafb;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-teal);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--energy-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    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: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* ========== Locations Section ========== */
.locations-section {
    background-color: var(--white);
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.location-link {
    padding: 0.75rem 1.5rem;
    background-color: #f9fafb;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--dark-teal);
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-link:hover {
    background-color: var(--dark-teal);
    color: var(--white);
    border-color: var(--dark-teal);
    transform: translateY(-2px);
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #084b56 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 227, 77, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ========== Footer ========== */
.footer {
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--energy-green);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--energy-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ========== Sticky CTA ========== */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
}

/* ========== Responsive Design ========== */

/* Tablet */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countries-grid,
    .courses-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Logo visibility on tablet */
    .logo img {
        height: 40px;
        display: block;
        background: white;
        padding: 7px 10px;
        border-radius: 5px;
    }
    
    /* Contact Us button fix for tablet */
    .nav-menu > li > a.cta-link {
        background-color: var(--energy-green);
        color: var(--dark-teal);
        padding: 0.6rem 1.25rem;
        border-radius: var(--radius-sm);
        font-weight: 600;
        white-space: nowrap;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Logo sizing for mobile */
    .logo img {
        height: 35px;
        display: block;
        background: white;
        padding: 6px 8px;
        border-radius: 4px;
    }
    
    /* Center-align hero stats on mobile */
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .stat {
        text-align: center;
        align-items: center;
    }
    
    /* Navigation */
    .mobile-toggle {
        display: flex;
        z-index: 10001;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 58, 58, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        z-index: 10000;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        color: var(--white);
    }
    
    /* Hero */
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Grids */
    .countries-grid,
    .courses-grid,
    .why-grid,
    .testimonials-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Sticky CTA */
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .sticky-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ========== Enhanced Table Styles ========== */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #084b56 100%);
}

.comparison-table thead th {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.comparison-table thead th:first-child {
    border-top-left-radius: var(--radius-md);
}

.comparison-table thead th:last-child {
    border-top-right-radius: var(--radius-md);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f9fafb;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody td {
    padding: 1.25rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    vertical-align: top;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--dark-teal);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

.comparison-table strong {
    color: var(--dark-teal);
    font-weight: 700;
}

/* Fee Breakdown Table Specific */
.fee-breakdown {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem 0;
}

.fee-breakdown h3 {
    color: var(--dark-teal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--energy-green);
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.fee-item:last-child {
    border-bottom: none;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--border-color);
}

.fee-item span {
    color: var(--text-dark);
    font-size: 1rem;
}

.fee-item strong {
    color: var(--dark-teal);
    font-size: 1.25rem;
    font-weight: 700;
}

.fee-item:last-child strong {
    color: var(--energy-green);
    font-size: 1.5rem;
}

/* Cost Summary */
.cost-summary {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px solid var(--energy-green);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.cost-summary h3 {
    color: var(--dark-teal);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.highlight-text {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #084b56 100%);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin: 1rem 0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========== Enhanced Content Boxes ========== */
.universities-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.universities-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.university-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.university-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.university-card:hover {
    border-color: var(--energy-green);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.university-card h3 {
    color: var(--dark-teal);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.university-card p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.university-card p strong {
    color: var(--dark-teal);
    font-weight: 700;
}

.university-card a {
    color: var(--dark-teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

.university-card a:hover {
    color: var(--energy-green);
}

/* Programs Section */
.programs-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.programs-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.course-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--energy-green);
}

.course-category h3 {
    color: var(--dark-teal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    font-size: 1.35rem;
}

.course-category ul {
    list-style: none;
}

.course-category ul li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.6;
}

.course-category ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--energy-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Admission Section */
.admission-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.admission-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.admission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.admission-box {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.admission-box h3 {
    color: var(--dark-teal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--energy-green);
    font-size: 1.5rem;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    padding: 0.85rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--energy-green);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.requirements-list li strong {
    color: var(--dark-teal);
    font-weight: 700;
}

/* Visa Section */
.visa-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.visa-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Work Section */
.work-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.work-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Scholarship Section */
.scholarship-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.scholarship-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* ========== Enhanced Benefits Grid ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0;
}

.benefit-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--energy-green);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.benefit-item h3 {
    color: var(--dark-teal);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========== Enhanced FAQ Section ========== */
.faq-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--energy-green);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--dark-teal);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========== Enhanced Quick Stats ========== */
.quick-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.stat-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--energy-green);
    box-shadow: var(--shadow-lg);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--energy-green);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.stat-box p {
    color: var(--dark-teal);
    margin: 0;
    font-weight: 600;
    font-size: 1.05rem;
}

/* ========== Content Section Enhancements ========== */
.content-section {
    padding: 5rem 0;
}

.content-section h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== Comparison Section ========== */
.comparison-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* ========== Countries Section ========== */
.countries-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.countries-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--dark-teal);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--dark-teal);
    color: var(--white);
    border-color: var(--dark-teal);
}

/* ========== Page Hero Enhancement ========== */
.page-hero {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #084b56 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 227, 77, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== Additional Page Styles ========== */

/* Breadcrumb */
.breadcrumb {
    background-color: #f9fafb;
    padding: 1rem 0;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--dark-teal);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--energy-green);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #084b56 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
}

/* Quick Stats */
.quick-stats {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--energy-green);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Universities List */
.universities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.university-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
}

.university-card:hover {
    border-color: var(--energy-green);
    box-shadow: var(--shadow-md);
}

.uni-location {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Course Categories */
.course-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.course-category {
    background: #f9fafb;
    padding: 2rem;
    border-radius: var(--radius-md);
}

.course-category h3 {
    color: var(--dark-teal);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--energy-green);
}

.course-category ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.course-category ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--energy-green);
}

.course-category ul li a {
    color: var(--dark-teal);
    font-weight: 500;
}

.course-category ul li a:hover {
    color: var(--energy-green);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.column h2 {
    margin-bottom: 2rem;
}

/* Eligibility List */
.eligibility-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.eligibility-item h4 {
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

.eligibility-item ul {
    padding-left: 1.5rem;
}

.eligibility-item ul li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.eligibility-item ul li::marker {
    color: var(--energy-green);
}

/* Intake Info */
.intake-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intake-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

.intake-item h4 {
    color: var(--dark-teal);
    margin-bottom: 0.75rem;
}

/* Fee Cards */
.fee-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.fee-card h3 {
    color: var(--dark-teal);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--energy-green);
}

.fee-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: var(--radius-sm);
}

.fee-item span {
    color: var(--text-light);
}

.fee-item strong {
    color: var(--dark-teal);
    font-weight: 600;
}

.note {
    background: #fff9e6;
    border-left: 4px solid var(--lime-yellow);
    padding: 1rem;
    margin-top: 2rem;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
}

/* Visa Steps */
.visa-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.visa-step {
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--energy-green);
    color: var(--dark-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.visa-requirements {
    background: #f9fafb;
    padding: 2rem;
    border-radius: var(--radius-md);
}

.visa-requirements h3 {
    margin-bottom: 1rem;
}

.visa-requirements ul {
    padding-left: 1.5rem;
}

.visa-requirements ul li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Work Cards */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.work-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.work-card h3 {
    color: var(--dark-teal);
    margin-bottom: 1.5rem;
}

.work-card p {
    margin-bottom: 0.75rem;
}

/* Comparison Cards */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comparison-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    border-color: var(--energy-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.detail-item strong {
    color: var(--dark-teal);
    font-weight: 600;
}

.comparison-card .highlights {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.comparison-card .highlights li {
    list-style: none;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Eligibility Boxes */
.eligibility-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.eligibility-box {
    background: #f9fafb;
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--energy-green);
}

.eligibility-box h3 {
    margin-bottom: 1.5rem;
}

.eligibility-box ul {
    padding-left: 1.5rem;
}

.eligibility-box ul li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.doc-category {
    background: #f9fafb;
    padding: 2rem;
    border-radius: var(--radius-md);
}

.doc-category h3 {
    color: var(--dark-teal);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--energy-green);
}

.doc-category ul {
    padding-left: 1.5rem;
}

.doc-category ul li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--energy-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.social-links a {
    padding: 0.5rem 1rem;
    background-color: var(--dark-teal);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--energy-green);
    color: var(--dark-teal);
}

/* Offices */
.offices-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.office-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.office-card h3 {
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

/* About Page */
.about-section {
    padding: 4rem 0;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mv-card {
    background: linear-gradient(135deg, var(--dark-teal) 0%, #084b56 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
}

.mv-card h3 {
    color: var(--energy-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--white);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Achievements */
.achievements-section {
    padding: 4rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: linear-gradient(135deg, #f9fafb 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    border-color: var(--energy-green);
    transform: translateY(-5px);
}

.achievement-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--energy-green);
    margin-bottom: 0.5rem;
}

/* Services Timeline */
.services-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--energy-green);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Team Features */
.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-feature {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.team-feature h3 {
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

/* Admission Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.admission-step {
    background: #f9fafb;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--energy-green);
}

.admission-step strong {
    color: var(--dark-teal);
    font-weight: 700;
}

.intake-dates {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

.intake-dates h4 {
    color: var(--dark-teal);
    margin-bottom: 1rem;
}

/* Responsive for new components */
@media (max-width: 1024px) {
    .university-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Layout adjustments */
    .two-column,
    .mission-vision,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid,
    .benefits-grid,
    .universities-list,
    .university-grid {
        grid-template-columns: 1fr;
    }
    
    .admission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-categories {
        grid-template-columns: 1fr;
    }
    
    /* Table responsive */
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.85rem;
        font-size: 0.85rem;
    }
    
    /* Spacing adjustments */
    section {
        padding: 3rem 0;
    }
    
    .content-section,
    .universities-section,
    .programs-section,
    .admission-section,
    .visa-section,
    .work-section,
    .scholarship-section,
    .faq-section,
    .countries-section,
    .comparison-section {
        padding: 3rem 0;
    }
    
    .page-hero {
        padding: 3rem 0;
    }
    
    .quick-stats {
        padding: 2.5rem 0;
    }
    
    /* Card padding adjustments */
    .university-card,
    .benefit-item,
    .admission-box,
    .course-category {
        padding: 1.75rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    /* Stats grid mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    /* Filter buttons mobile */
    .filter-tabs {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    h1 {
        font-size: 1.85rem;
    }
    
    h2 {
        font-size: 1.65rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .university-card h3 {
        font-size: 1.25rem;
    }
    
    .benefit-icon {
        font-size: 2.25rem;
    }
    
    .stat-box h3 {
        font-size: 1.75rem;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.65rem;
        font-size: 0.8rem;
    }
    
    /* Further reduce spacing on mobile */
    .university-card,
    .benefit-item,
    .admission-box,
    .course-category,
    .fee-breakdown,
    .faq-item {
        padding: 1.25rem;
    }
}

/* ========== FOOTER STYLES ========== */
.site-footer {
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--dark-teal-deep) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--energy-green);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--energy-green);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info i {
    color: var(--energy-green);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--energy-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--energy-green);
}

/* ========== MOBILE & TABLET RESPONSIVE FIXES ========== */

/* Stats Section Mobile Center Alignment */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stat-box {
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .stat-box h3,
    .stat-box p {
        text-align: center;
    }
    
    /* About Us section center alignment */
    .about-section,
    .about-content {
        text-align: center;
    }
    
    .about-content h2,
    .about-content h3,
    .about-content p,
    .about-content ul {
        text-align: center;
    }
    
    .about-content ul {
        list-style-position: inside;
    }
    
    /* Center align all content on mobile */
    .content-section,
    .universities-section,
    .programs-section,
    .admission-section,
    .scholarship-section {
        text-align: center;
    }
    
    .university-card,
    .benefit-item,
    .admission-box,
    .course-category {
        text-align: center;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-links,
    .contact-info {
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Tablet Overflow Prevention */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
        overflow-x: hidden;
    }
    
    /* Logo for tablet */
    .logo img {
        height: 42px;
        display: block;
        background: white;
        padding: 7px 11px;
        border-radius: 5px;
    }
    
    /* Navigation adjustments for tablet */
    .nav-menu {
        gap: 1.25rem;
    }
    
    .nav-menu > li > a {
        font-size: 0.95rem;
    }
    
    .nav-menu > li > a.cta-link {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Prevent table overflow on tablet */
    .comparison-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.85rem 0.6rem;
        white-space: nowrap;
    }
    
    /* Grid adjustments for tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        text-align: center;
    }
    
    .stat-box {
        text-align: center;
    }
    
    .university-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Prevent content overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
}

/* CTA Button Visibility Enhancement */
.cta-section {
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--dark-teal-deep) 100%);
    padding: 5rem 0;
    text-align: center;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 214, 94, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--energy-green);
    color: var(--dark-teal);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
    border: none;
    box-shadow: 0 8px 20px rgba(164, 214, 94, 0.3);
    position: relative;
    z-index: 2;
}

.cta-section .btn:hover {
    background: var(--energy-green-bright);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(164, 214, 94, 0.4);
}

/* Primary Button Enhancement */
.btn-primary {
    background: var(--energy-green);
    color: var(--dark-teal);
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 12px rgba(164, 214, 94, 0.25);
}

.btn-primary:hover {
    background: var(--energy-green-bright);
    color: var(--dark-teal);
    box-shadow: 0 6px 20px rgba(164, 214, 94, 0.35);
}

/* Ensure all content doesn't overflow on tablet */
@media (max-width: 1024px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        overflow-x: hidden;
    }
    
    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .site-footer,
    .cta-section,
    .filter-tabs {
        display: none;
    }
    
    .comparison-table {
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
