/* THE ART CONSERVATOIRE - COMPLETE THEME v5.0 */

:root {
    --primary-blue: #0e223b;
    --primary-gold: #fc9e12;
    --primary-red: #b00507;
    --light-bg: #f4fafc;
    --white: #ffffff;
    --dark-text: #1a1a2e;
    --gray-text: #5a5a6e;
    --light-gray: #e8eef2;
    --grad-hero: linear-gradient(135deg, rgba(14, 34, 59, 0.85) 0%, rgba(176, 5, 7, 0.7) 100%);
    --grad-gold: linear-gradient(135deg, #fc9e12 0%, #f7b733 100%);
    --grad-blue: linear-gradient(135deg, #0e223b 0%, #1a3a5c 100%);
    --container-width: 1300px;
    --header-height: 60px;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a1628' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--dark-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-red);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section {
    padding: 1.5rem 0;
    position: relative;
}

.text-center {
    text-align: center;
}

/* ==================== HEADER ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: var(--primary-blue);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 42px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.4rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-cta .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50px;
    border: none;
}

.header-cta .btn:hover {
    background: #e8900f;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* MOBILE MENU */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: right 0.3s ease;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    right: 0;
    visibility: visible;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.mobile-menu-close {
    color: var(--dark-text);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-list li a {
    color: var(--dark-text);
    font-size: 1rem;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-list li a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.mobile-cta {
    margin-top: 1.5rem;
}

.mobile-cta .btn {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 40vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: var(--header-height);
}

/* Full height hero for homepage only */
.home .hero-section {
    min-height: 100vh;
}

.hero-slider,
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(255, 193, 7, 0.3) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(252, 158, 18, 0.2);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    opacity: 0.9;
    color: var(--white);
}

.hero-feature i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.hero-slider-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--grad-gold);
    color: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(252, 158, 18, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(252, 158, 18, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
    background: var(--primary-blue);
    padding: 0.6rem 0;
    overflow: hidden;
}

.promo-marquee {
    display: flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
}

.promo-item {
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.subtitle {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.15rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.section-header h2 span {
    color: var(--primary-gold);
}

.section-header p {
    color: var(--gray-text);
    max-width: 650px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--white);
    padding: 1rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-stats-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.about-stats-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.about-stats-card .stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.about-content h2 span {
    color: var(--primary-gold);
}

.about-content p {
    color: var(--gray-text);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.25rem 0 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-feature-item i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.about-feature-item span {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose-section {
    background: var(--white);
    padding: 3rem 0;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
    box-shadow: var(--shadow);
    flex: 0 1 260px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-gold);
    background: var(--light-bg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--grad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 158, 18, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(252, 158, 18, 0.4);
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==================== COURSES SECTION ==================== */
.courses-section {
    background: var(--light-bg);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.course-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.course-content {
    padding: 1rem;
}

.course-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.course-description {
    color: var(--gray-text);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-duration {
    color: var(--gray-text);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.course-link {
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.course-link:hover {
    gap: 0.4rem;
}

/* Course Search */
.course-search-section {
    margin-bottom: 1.5rem;
}

.course-search-wrapper {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.search-box {
    position: relative;
    margin-bottom: 0.75rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-text);
    font-size: 0.9rem;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.course-filters {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.4rem 0.8rem;
    border: none;
    background: var(--light-gray);
    color: var(--dark-text);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: var(--grad-blue);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--grad-blue);
    padding: 3rem 0;
    text-align: center;
    color: var(--white);
}

.cta-badge {
    display: inline-block;
    background: rgba(252, 158, 18, 0.2);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.cta-section h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-offers {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-offers span {
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pulse-btn {
    animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ==================== PAGE HERO (Inner Pages) ==================== */
.page-hero {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(255, 193, 7, 0.3) 100%);
    padding: 2rem 0 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
    position: relative;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.3rem;
}

.page-hero h1 span {
    color: var(--primary-gold);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.breadcrumb a,
.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.75rem 0 1.25rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* ==================== SINGLE COURSE PAGE ==================== */
.single-course-content {
    padding: 3.5rem 0;
}

.course-featured-image {
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.course-featured-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: var(--light-bg);
    padding: 1rem;
}

.course-details {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.course-details h2 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.course-details p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Course Sidebar */
.course-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.sidebar-widget {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.25rem;
}

.sidebar-widget h3 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary-gold);
}

.sidebar-widget ul li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-gold);
}

.sidebar-widget ul li a img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.contact-info h2 {
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

.contact-info p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--grad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.contact-details p {
    color: var(--gray-text);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

/* ==================== GALLERY PAGE ==================== */
.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 34, 59, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.75rem;
}

/* ==================== ENROLL PAGE ==================== */
.enroll-section {
    padding: 4rem 0;
}

.enroll-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.enroll-info {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.enroll-info h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.enroll-info p {
    color: var(--gray-text);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.enroll-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9rem;
}

.enroll-benefits li i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.enroll-form {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .benefit-card {
        flex: 0 1 calc(50% - 0.75rem);
    }


    .courses-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .benefits-grid {
        gap: 1.25rem;
    }

    .benefit-card {
        flex: 0 1 100%;
        max-width: 350px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 1.5rem 0 1rem;
        min-height: 100px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ==================== KAMPALA TRIP VIDEO GALLERY ==================== */
.kampala-trip-section {
    background: var(--light-bg);
    padding: 3rem 0;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-gallery-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.video-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a5c 100%);
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 34, 59, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-gallery-item:hover .video-overlay {
    background: rgba(14, 34, 59, 0.3);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--grad-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(252, 158, 18, 0.4);
}

.play-btn i {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 4px;
}

.play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(252, 158, 18, 0.6);
}

.video-info {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.video-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
}

.video-info h4 {
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 600;
}

.no-videos-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.no-videos-message p {
    color: var(--gray-text);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }

    .play-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== ENHANCED VIDEO GALLERY STYLING ==================== */
.kampala-trip-section .section-header {
    margin-bottom: 1.5rem;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.video-gallery-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0e223b 100%);
    overflow: hidden;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23fc9e12" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 80px 80px;
    opacity: 0.5;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 34, 59, 0.3) 0%, rgba(14, 34, 59, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.video-gallery-item:hover .video-overlay {
    background: linear-gradient(to bottom, rgba(14, 34, 59, 0.1) 0%, rgba(14, 34, 59, 0.4) 100%);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fc9e12 0%, #e88c0a 100%);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(252, 158, 18, 0.5);
    position: relative;
}

.play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(252, 158, 18, 0.4);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.play-btn i {
    color: #ffffff;
    font-size: 1.75rem;
    margin-left: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 40px rgba(252, 158, 18, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
}

.video-info {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, #ffffff 0%, #f8f9fa 100%);
    border-top: 3px solid var(--primary-gold);
}

.video-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e88c0a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    line-height: 1;
}

.video-info h4 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.no-videos-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px dashed rgba(252, 158, 18, 0.3);
}

.no-videos-message p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 992px) {
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn i {
        font-size: 1.25rem;
    }

    .video-info {
        padding: 1rem 1.25rem;
    }

    .video-number {
        font-size: 2rem;
    }
}

/* ==================== HERO VIDEO BACKGROUND ==================== */
.hero-video-section {
    position: relative;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-section .hero-slider {
    z-index: 1;
}

.hero-video-section .hero-overlay {
    z-index: 2;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.80) 0%, rgba(176, 5, 7, 0.45) 50%, rgba(252, 158, 18, 0.25) 100%);
}

.hero-video-section .hero-content {
    z-index: 3;
}

.hero-video-section .hero-slider-controls {
    z-index: 4;
}

/* ==================== CAMPUS GALLERY SECTION ==================== */
.campus-gallery-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

/* Featured Video Banner */
.gallery-featured-video {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-height: 420px;
}

.gallery-featured-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-featured-video .gallery-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 34, 59, 0.65) 0%, rgba(176, 5, 7, 0.35) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-featured-video .gallery-video-overlay:hover {
    background: linear-gradient(135deg, rgba(14, 34, 59, 0.4) 0%, rgba(176, 5, 7, 0.15) 100%);
}

.gallery-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: 4px solid rgba(255, 255, 255, 0.9);
    color: var(--white);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(252, 158, 18, 0.5);
}

.gallery-play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(252, 158, 18, 0.7);
}

.gallery-play-btn i {
    margin-left: 5px;
}

.gallery-video-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

/* Uniform Gallery Grid */
.gallery-uniform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-img img {
    transform: scale(1.08);
}

.gallery-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(252, 158, 18, 0.3);
}

.gallery-card-info {
    padding: 0.85rem 1rem;
}

.gallery-card-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.4;
}

/* Gallery Responsive */
@media (max-width: 992px) {
    .gallery-uniform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .gallery-card-img {
        height: 180px;
    }

    .gallery-featured-video {
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .gallery-uniform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-card-img {
        height: 160px;
    }

    .gallery-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .gallery-featured-video {
        max-height: 260px;
    }

    .gallery-video-overlay h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-uniform-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .gallery-card-img {
        height: 200px;
    }

    .gallery-play-btn {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }

    .campus-gallery-section {
        padding: 2.5rem 0;
    }
}