/* Master Chef Training Institute - Courses Page CSS */
/* Golden Gradient Theme: #ebc779 + #c88c0c + Black */
/* Body Font: Inter | Heading Font: Poppins */
/* All sizes reduced to 85% of original */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #ebc779;
    --primary-gold-dark: #c88c0c;
    --text-dark: #000000;
    --text-medium: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #fef9f4;
    --shadow-sm: 0 1.7px 6.8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6.8px 21.25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12.75px 29.75px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 21.25px 42.5px rgba(0, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #ebc779 0%, #c88c0c 100%);
    --tg-body-font-family: 'Inter', sans-serif;
    --tg-heading-font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 13.6px; /* 16px * 0.85 */
}

body {
    font-family: var(--tg-body-font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font-family);
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem; /* 2rem * 0.85 */
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.95rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(17px);
    box-shadow: var(--shadow-md);
    padding: 0.7125rem 0;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.9rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.7125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 82.5px; /* Updated to match other pages */
    height: 82.5px; /* Updated to match other pages */
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.375rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.475rem 0;
}

.navbar.scrolled .nav-link {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.85px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    border-radius: 1.9px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.7125rem 1.425rem;
    border-radius: 23.75px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    transform: translateY(-1.9px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3.8px;
    padding: 7.6px;
}

.hamburger {
    width: 23.75px;
    height: 2.85px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1.9px;
}

.navbar.scrolled .hamburger {
    background: var(--text-dark);
}

/* Courses Hero Section - Image Background */
.courses-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.courses-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.courses-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.courses-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.courses-hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 80vh;
    padding-top: 68px;
}

.courses-hero-content {
    color: white;
}

.courses-hero-badge {
    background: var(--gradient-gold);
    color: white;
    padding: 0.425rem 0.85rem;
    border-radius: 17px;
    font-size: 0.765rem;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    margin-bottom: 1.275rem;
    display: inline-block;
}

.courses-hero-title {
    font-size: 2.975rem;
    font-weight: 900;
    font-family: var(--tg-heading-font-family);
    line-height: 1.1;
    margin-bottom: 1.275rem;
    color: white;
}

.courses-hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.courses-hero-description {
    font-size: 0.935rem;
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.7rem;
    line-height: 1.7;
}

.courses-hero-buttons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.courses-enroll-btn-hero {
    background: var(--gradient-gold);
    color: white;
    padding: 0.85rem 1.7rem;
    border: none;
    border-radius: 21.25px;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem;
    font-size: 0.85rem;
}

.courses-brochure-btn-hero {
    background: transparent;
    color: white;
    padding: 0.85rem 1.7rem;
    border: 1.7px solid var(--primary-gold);
    border-radius: 21.25px;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem;
    font-size: 0.85rem;
}

.courses-enroll-btn-hero:hover,
.courses-brochure-btn-hero:hover {
    transform: translateY(-1.7px);
    box-shadow: var(--shadow-lg);
}

.courses-brochure-btn-hero:hover {
    background: var(--primary-gold);
    color: white;
}

.courses-enroll-btn-hero i,
.courses-brochure-btn-hero i {
    transition: transform 0.3s ease;
}

.courses-enroll-btn-hero:hover i,
.courses-brochure-btn-hero:hover i {
    transform: translateX(4.25px);
}

/* Courses Hero Visual */
.courses-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.courses-visual-section {
    position: relative;
    text-align: center;
}

.courses-visual-container {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-gold);
    padding: 8.5px;
    margin-bottom: 1.7rem;
}

.courses-visual-thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.courses-visual-badge {
    position: absolute;
    bottom: 17px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.85rem 1.275rem;
    border-radius: 21.25px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.courses-visual-badge h4 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--primary-gold-dark);
    margin-bottom: 0.2125rem;
    font-family: var(--tg-heading-font-family);
}

.courses-visual-badge p {
    font-size: 0.68rem;
    color: var(--text-medium);
    font-family: var(--tg-body-font-family);
    margin: 0;
}

.courses-stats-avatars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    max-width: 340px;
    margin: 0 auto;
}

.courses-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.6375rem 0.85rem;
    border-radius: 10.2px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.courses-stat-item:hover {
    transform: translateY(-2.55px);
    background: rgba(255, 255, 255, 0.15);
}

.courses-stat-item h3 {
    font-size: 0.8075rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.1275rem;
    font-family: var(--tg-heading-font-family);
}

.courses-stat-item p {
    font-size: 0.595rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--tg-body-font-family);
    margin: 0;
    line-height: 1.2;
}

/* Section Headers */
.courses-section-header {
    text-align: center;
    margin-bottom: 3.4rem; /* 4rem * 0.85 */
}

.courses-section-label {
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.7px; /* 2px * 0.85 */
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.courses-section-title {
    font-size: 2.125rem; /* 2.5rem * 0.85 */
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
    color: var(--text-dark);
}

.courses-section-subtitle {
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    max-width: 510px; /* 600px * 0.85 */
    margin: 0 auto;
    line-height: 1.6;
}

/* Course Tabs Section */
.courses-tabs-section {
    padding: 68px 0; /* 80px * 0.85 */
    background: white;
}

/* Course Tabs Navigation */
.course-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1.275rem; /* 1.5rem * 0.85 */
    margin-bottom: 3.4rem; /* 4rem * 0.85 */
    flex-wrap: wrap;
}

.course-tab {
    background: var(--bg-light);
    border: none;
    padding: 1.275rem; /* 1.5rem * 0.85 */
    border-radius: 12.75px; /* 15px * 0.85 */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.85rem; /* 1rem * 0.85 */
    min-width: 170px; /* 200px * 0.85 */
    box-shadow: var(--shadow-sm);
    border: 1.7px solid transparent; /* 2px * 0.85 */
}

.course-tab:hover {
    transform: translateY(-2.55px); /* -3px * 0.85 */
    box-shadow: var(--shadow-md);
    background: white;
}

.course-tab.active {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-2.55px); /* -3px * 0.85 */
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold-dark);
}

.tab-icon {
    font-size: 1.7rem; /* 2rem * 0.85 */
    line-height: 1;
}

.tab-content h4 {
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-weight: 700;
    margin-bottom: 0.2125rem; /* 0.25rem * 0.85 */
    font-family: var(--tg-heading-font-family);
    color: var(--text-dark);
}

.course-tab.active .tab-content h4 {
    color: white;
}

.tab-content span {
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    color: var(--text-light);
    font-family: var(--tg-body-font-family);
    font-weight: 500;
}

.course-tab.active .tab-content span {
    color: rgba(255, 255, 255, 0.9);
}

/* Course Content Panels */
.course-content-panels {
    position: relative;
    min-height: 425px; /* 500px * 0.85 */
}

.course-panel {
    display: none;
    width: 100%;
}

.course-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25.5px); /* 30px * 0.85 */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Course Cards Grid */
.course-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); /* 300px * 0.85 */
    gap: 2.125rem; /* 2.5rem * 0.85 */
}

/* Course Card Styles */
.course-card {
    background: white;
    border-radius: 12.75px; /* 15px * 0.85 */
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0.85px solid #f0f0f0; /* 1px * 0.85 */
}

.course-card:hover {
    transform: translateY(-6.8px); /* -8px * 0.85 */
    box-shadow: var(--shadow-lg);
}

.course-image {
    position: relative;
    height: 170px; /* 200px * 0.85 */
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 12.75px; /* 15px * 0.85 */
    right: 12.75px; /* 15px * 0.85 */
    background: var(--gradient-gold);
    color: white;
    padding: 0.425rem 0.85rem; /* 0.5rem 1rem * 0.85 */
    border-radius: 17px; /* 20px * 0.85 */
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
}

.course-duration {
    position: absolute;
    top: 12.75px; /* 15px * 0.85 */
    left: 12.75px; /* 15px * 0.85 */
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.425rem 0.85rem; /* 0.5rem 1rem * 0.85 */
    border-radius: 17px; /* 20px * 0.85 */
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
}

.course-badge.women {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.course-badge.trending {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.course-content-inner {
    padding: 1.275rem; /* 1.5rem * 0.85 */
}

.course-category {
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    margin-bottom: 0.425rem; /* 0.5rem * 0.85 */
}

.course-content-inner h3 {
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    color: var(--text-dark);
    margin-bottom: 0.425rem; /* 0.5rem * 0.85 */
}

.course-content-inner p {
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
    line-height: 1.5;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.course-features span {
    display: flex;
    align-items: center;
    gap: 0.2125rem; /* 0.25rem * 0.85 */
    font-size: 0.6375rem; /* 0.75rem * 0.85 */
    color: var(--text-light);
    background: var(--bg-light);
    padding: 0.2125rem 0.425rem; /* 0.25rem 0.5rem * 0.85 */
    border-radius: 10.2px; /* 12px * 0.85 */
    font-family: var(--tg-body-font-family);
}

.course-features i {
    font-size: 0.595rem; /* 0.7rem * 0.85 */
    color: var(--primary-gold-dark);
}

.enroll-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.6375rem 1.275rem; /* 0.75rem 1.5rem * 0.85 */
    border: none;
    border-radius: 6.8px; /* 8px * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    width: 100%;
    justify-content: center;
    font-size: 0.68rem; /* 0.8rem * 0.85 */
}

.enroll-btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-1.7px); /* -2px * 0.85 */
    box-shadow: var(--shadow-md);
}

.enroll-btn i {
    transition: transform 0.3s ease;
}

.enroll-btn:hover i {
    transform: translateX(2.55px); /* 3px * 0.85 */
}

/* Course Features Section */
.course-features-section {
    padding: 68px 0; /* 80px * 0.85 */
    background: var(--bg-light);
}

.course-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); /* 300px * 0.85 */
    gap: 2.125rem; /* 2.5rem * 0.85 */
    margin-top: 2.55rem; /* 3rem * 0.85 */
}

.course-feature-card {
    background: white;
    padding: 2.125rem; /* 2.5rem * 0.85 */
    border-radius: 12.75px; /* 15px * 0.85 */
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 0.85px solid #f0f0f0; /* 1px * 0.85 */
}

.course-feature-card:hover {
    transform: translateY(-6.8px); /* -8px * 0.85 */
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 68px; /* 80px * 0.85 */
    height: 68px; /* 80px * 0.85 */
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.275rem; /* 1.5rem * 0.85 */
    transition: all 0.3s ease;
}

.course-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-icon i {
    font-size: 1.7rem; /* 2rem * 0.85 */
    color: white;
}

.course-feature-card h4 {
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
    font-family: var(--tg-heading-font-family);
}

.course-feature-card p {
    font-size: 0.8075rem; /* 0.95rem * 0.85 */
    color: var(--text-medium);
    line-height: 1.6;
    font-family: var(--tg-body-font-family);
}

/* Enrollment CTA Section */
.enrollment-cta-section {
    padding: 68px 0; /* 80px * 0.85 */
    background: var(--text-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.enrollment-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('./Images/about1.jpg') center/cover;
    z-index: 1;
}

.enrollment-cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px; /* 800px * 0.85 */
    margin: 0 auto;
}

.enrollment-cta-badge {
    background: var(--gradient-gold);
    color: white;
    padding: 0.425rem 0.85rem; /* 0.5rem 1rem * 0.85 */
    border-radius: 17px; /* 20px * 0.85 */
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    display: inline-block;
}

.enrollment-cta-title {
    font-size: 2.55rem; /* 3rem * 0.85 */
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    color: white;
}

.enrollment-cta-description {
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    font-family: var(--tg-body-font-family);
    margin-bottom: 2.125rem; /* 2.5rem * 0.85 */
    line-height: 1.6;
    opacity: 0.9;
}

.enrollment-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.275rem; /* 1.5rem * 0.85 */
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
    flex-wrap: wrap;
}

.enrollment-cta-btn-primary {
    background: white;
    color: var(--primary-gold-dark);
    padding: 0.85rem 1.7rem; /* 1rem 2rem * 0.85 */
    border-radius: 21.25px; /* 25px * 0.85 */
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    box-shadow: var(--shadow-md);
}

.enrollment-cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 0.85rem 1.7rem; /* 1rem 2rem * 0.85 */
    border: 1.7px solid white; /* 2px * 0.85 */
    border-radius: 21.25px; /* 25px * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    cursor: pointer;
}

.enrollment-cta-btn-tertiary {
    background: var(--gradient-gold);
    color: white;
    padding: 0.85rem 1.7rem; /* 1rem 2rem * 0.85 */
    border-radius: 21.25px; /* 25px * 0.85 */
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
}

.enrollment-cta-btn-primary:hover {
    transform: translateY(-2.55px); /* -3px * 0.85 */
    box-shadow: var(--shadow-xl);
}

.enrollment-cta-btn-secondary:hover {
    background: white;
    color: var(--primary-gold-dark);
    transform: translateY(-2.55px); /* -3px * 0.85 */
}

.enrollment-cta-btn-tertiary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2.55px); /* -3px * 0.85 */
}

.enrollment-contact-info {
    display: flex;
    justify-content: center;
    gap: 1.7rem; /* 2rem * 0.85 */
    flex-wrap: wrap;
    font-family: var(--tg-body-font-family);
    opacity: 0.9;
    font-size: 0.8075rem; /* 0.95rem * 0.85 */
}

.enrollment-contact-info span {
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 51px 0 17px; /* 60px 20px * 0.85 */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(212.5px, 1fr)); /* 250px * 0.85 */
    gap: 2.55rem; /* 3rem * 0.85 */
    margin-bottom: 2.55rem; /* 3rem * 0.85 */
}

.footer-section h4 {
    font-family: var(--tg-heading-font-family);
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    font-weight: 600;
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6375rem; /* 0.75rem * 0.85 */
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.footer-logo-image {
    width: 34px; /* 40px * 0.85 */
    height: 34px; /* 40px * 0.85 */
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold); /* 2px * 0.85 */
}

.footer-logo-text {
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
}

.footer-social {
    display: flex;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.footer-social a {
    width: 34px; /* 40px * 0.85 */
    height: 34px; /* 40px * 0.85 */
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2.55px); /* -3px * 0.85 */
    box-shadow: var(--shadow-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6375rem; /* 0.75rem * 0.85 */
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(4.25px); /* 5px * 0.85 */
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6375rem; /* 0.75rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    color: var(--primary-gold);
    transform: translateX(4.25px); /* 5px * 0.85 */
}

.contact-item i {
    color: var(--primary-gold);
    width: 17px; /* 20px * 0.85 */
}

.footer-bottom {
    border-top: 0.85px solid rgba(255, 255, 255, 0.1); /* 1px * 0.85 */
    padding-top: 1.7rem; /* 2rem * 0.85 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.footer-copyright p {
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.7rem; /* 2rem * 0.85 */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .courses-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.55rem;
    }

    .courses-hero-title {
        font-size: 2.38rem;
    }

    .course-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(212.5px, 1fr)); /* 250px * 0.85 */
        gap: 1.7rem; /* 2rem * 0.85 */
    }

    .course-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(212.5px, 1fr)); /* 250px * 0.85 */
        gap: 1.7rem; /* 2rem * 0.85 */
    }

    .enrollment-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .course-tabs-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem; /* 1rem * 0.85 */
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .courses-hero-title {
        font-size: 1.87rem;
    }

    .courses-hero-buttons {
        justify-content: center;
    }

    .courses-visual-container {
        width: 255px;
        height: 255px;
    }

    .courses-stats-avatars {
        gap: 0.6375rem;
    }

    .courses-section-title {
        font-size: 1.7rem; /* 2rem * 0.85 */
    }

    .enrollment-cta-title {
        font-size: 1.87rem; /* 2.2rem * 0.85 */
    }

    .course-tabs-nav {
        grid-template-columns: 1fr;
        gap: 0.85rem; /* 1rem * 0.85 */
    }

    .course-tab {
        min-width: auto;
        width: 100%;
        justify-content: center;
        max-width: 255px; /* 300px * 0.85 */
        margin: 0 auto;
    }

    .course-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.275rem; /* 1.5rem * 0.85 */
    }

    .course-features-grid {
        grid-template-columns: 1fr;
        gap: 1.275rem; /* 1.5rem * 0.85 */
    }

    .enrollment-contact-info {
        flex-direction: column;
        gap: 0.85rem; /* 1rem * 0.85 */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem; /* 1rem * 0.85 */
    }

    .courses-hero-title {
        font-size: 1.53rem;
    }

    .courses-hero-description {
        font-size: 0.85rem;
    }

    .courses-hero-buttons {
        flex-direction: column;
    }

    .courses-enroll-btn-hero,
    .courses-brochure-btn-hero {
        padding: 0.74375rem 1.275rem;
        font-size: 0.765rem;
        justify-content: center;
    }

    .courses-visual-container {
        width: 212.5px;
        height: 212.5px;
    }

    .courses-stats-avatars {
        grid-template-columns: 1fr;
        gap: 0.6375rem;
    }

    .courses-stat-item {
        padding: 0.53125rem 0.6375rem;
    }

    .courses-section-title {
        font-size: 1.36rem; /* 1.6rem * 0.85 */
    }

    .enrollment-cta-title {
        font-size: 1.53rem; /* 1.8rem * 0.85 */
    }

    .course-tab {
        padding: 1.02rem; /* 1.2rem * 0.85 */
        flex-direction: column;
        text-align: center;
        gap: 0.425rem; /* 0.5rem * 0.85 */
    }

    .tab-icon {
        font-size: 1.275rem; /* 1.5rem * 0.85 */
    }

    .tab-content h4 {
        font-size: 0.8075rem; /* 0.95rem * 0.85 */
    }

    .tab-content span {
        font-size: 0.595rem; /* 0.7rem * 0.85 */
    }

    .course-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.02rem; /* 1.2rem * 0.85 */
    }

    .course-card {
        margin: 0 auto;
        max-width: 272px; /* 320px * 0.85 */
    }

    .course-image {
        height: 153px; /* 180px * 0.85 */
    }

    .course-content-inner {
        padding: 1.0625rem; /* 1.25rem * 0.85 */
    }

    .course-content-inner h3 {
        font-size: 0.935rem; /* 1.1rem * 0.85 */
    }

    .course-content-inner p {
        font-size: 0.68rem; /* 0.8rem * 0.85 */
    }

    .enroll-btn {
        padding: 0.53125rem 1.0625rem; /* 0.625rem 1.25rem * 0.85 */
        font-size: 0.595rem; /* 0.7rem * 0.85 */
    }

    .course-feature-card {
        padding: 1.7rem; /* 2rem * 0.85 */
    }

    .feature-icon {
        width: 51px; /* 60px * 0.85 */
        height: 51px; /* 60px * 0.85 */
    }

    .feature-icon i {
        font-size: 1.275rem; /* 1.5rem * 0.85 */
    }

    .enrollment-cta-btn-primary,
    .enrollment-cta-btn-secondary,
    .enrollment-cta-btn-tertiary {
        padding: 0.74375rem 1.275rem; /* 0.875rem 1.5rem * 0.85 */
        font-size: 0.765rem; /* 0.9rem * 0.85 */
        justify-content: center;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.7rem; /* 2rem * 0.85 */
    }
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(17px); /* 20px * 0.85 */ 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .enroll-btn {
    opacity: 0.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6.8px; /* 8px * 0.85 */
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 3.4px; /* 4px * 0.85 */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* Selection Styles */
::selection {
    background: var(--primary-gold);
    color: white;
}

::-moz-selection {
    background: var(--primary-gold);
    color: white;
}

/* Focus Styles */
*:focus {
    outline: 1.7px solid var(--primary-gold); /* 2px * 0.85 */
    outline-offset: 1.7px; /* 2px * 0.85 */
    border-radius: 3.4px; /* 4px * 0.85 */
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .courses-header-background,
    .courses-header-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .courses-page-header,
    .enrollment-cta-section {
        background: white !important;
        color: black !important;
    }
    
    .course-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}