.navbar-brand img {
    height: 150px;
}

/* Sidebar Navigation Styles */
.sidebar-nav {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(to left, #0f0875, #1c175b);
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.12);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(.77, 0, .18, 1);
    display: flex;
    flex-direction: column;
    padding-top: 32px;
}

.sidebar-nav.show {
    right: 0;
}

.sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    cursor: pointer;
}

.sidebar-list {
    margin-top: 48px;
    padding-left: 0;
}

.sidebar-list .nav-link {
    color: #fff !important;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s, color 0.2s;
}

.sidebar-list .nav-link:hover {
    background: #d92d67;
    color: #fff !important;
}

@media (max-width: 989px) {
    .sidebar-nav {
        width: 85vw;
        min-width: 220px;
        max-width: 340px;
    }
}

:root {
    --martinique: #433964;
    --copperfield: #dc8c69;
    --hibiscus: #a92074;
    --amethyst-smoke: #9a8aa3;
    /* New logo colors */
    --ripe-lemon: #f3e026;
    --carrot-orange: #ee9a25;
    --tom-thumb: #2d452d;
    --tabasco: #aa2312;
    --green-smoke: #aeac76;
    --falu-red: #85261a;
    --tango: #ed722c;
    --copper: #be8e37;
    --rob-roy: #e8c466;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease;
}

.navbar-scrolled {
    background-color: #ffffff !important;
}

.navbar-scrolled .navbar-nav .nav-link {
    color: var(--tabasco) !important;
}

.navbar-collapse.collapse.show .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 5) !important;
}

.navbar-nav .nav-link {
    color: white !important;
    font-size: 1.1rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--rob-roy) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-dark .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    animation: zoomImage 8s ease-out forwards;
}

.contact-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--tom-thumb), var(--tabasco));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--tom-thumb);
    text-shadow: 0 2px 9px var(--amethyst-smoke);
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-hero-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('/assets/imgs/hero/slider-3.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}


/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-form-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 3rem 2rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tabasco);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-description {
    text-align: center;
    color: var(--martinique);
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    color: var(--martinique);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: 0.5rem;
    border: 2px solid var(--golden-sand);
    padding: 0.75rem;
    transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--tabasco);
    box-shadow: 0 0 0 0.2rem rgba(170, 35, 18, 0.25);
}

.btn-contact {
    background: linear-gradient(135deg, var(--tabasco) 0%, var(--hibiscus) 100%);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 35, 18, 0.3);
    background: linear-gradient(135deg, var(--hibiscus) 0%, var(--tabasco) 100%);
    color: white;
}

.contact-info-section {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tabasco);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.contact-info-item:hover {
    background: #f8f9fa;
}

.contact-info-item i {
    font-size: 1.8rem;
    color: var(--tabasco);
    margin-right: 1rem;
    width: 40px;
    text-align: center;
    margin-top: 0.25rem;
}

.contact-info-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--martinique);
    margin-bottom: 0.25rem;
}

.contact-info-details p {
    color: #666;
    margin: 0;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #d92d67;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f1ce76;
}

@keyframes zoomImage {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 950px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-social {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
}

.hero-social a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-social a:hover {
    color: var(--secondary-color);
}

.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.btn-close {
    background: none;
    border: none;
}

.btn-primary-custom {
    background-color: var(--carrot-orange);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--hibiscus);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 45, 103, 0.3);
}

/* Programs Section */
.programs-section {
    padding: 2.5rem 0;
    background-color: #fff;
    cursor: none;
    position: relative;
}

/* Custom Cursor - Only in Programs Section */
.programs-section .cursor {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.programs-section .cursor__ball {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
}

.programs-section .cursor__ball circle {
    fill: #f3e026;
}

.programs-section .cursor__ball--big text {
    fill: #fff;
    font-size: 5px;
    font-weight: bold;
    text-anchor: middle;
    pointer-events: none;
    font-family: monospace;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.programs-section .cursor__ball--big.active text {
    opacity: 1;
}

.section-title {
    color: var(--tabasco);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-description {
    text-align: center;
    color: #666;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.program-card {
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    background: white;
    cursor: none;
}

.program-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.program-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.program-card h3 {
    color: var(--tango);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Book Now Section */
.booknow-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    background-image: url('https://images.unsplash.com/photo-1596464716127-f2a82984de30?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.booknow-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.booknow-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.booknow-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-white-custom {
    background-color: white;
    color: var(--tabasco);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    transition: all 0.3s;
}

.btn-white-custom:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Partnership Section */
.partnership-section {
    padding: 4rem 0;
    background-color: rgba(247, 247, 247, 0.3);
}

.partnership-section .nav-tabs {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 2rem;
}

.partnership-section .nav-tabs .nav-link {
    color: var(--martinique);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.partnership-section .nav-tabs .nav-link:hover {
    color: var(--tabasco);
    border-bottom-color: var(--rob-roy);
}

.partnership-section .nav-tabs .nav-link.active {
    color: var(--tabasco);
    background-color: transparent;
    border-bottom-color: var(--carrot-orange);
}

.partnership-section .nav-tabs .nav-link i {
    margin-left: 0.5rem;
}

.partnership-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.partnership-title span {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--martinique);
}

.partnership-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.partnership-content p {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Branches Section */
.branches-section {
    padding: 4rem 0;
    background-color: #fff;
}

.branch-card {
    position: relative;
    height: 260px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
}

.branch-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.branch-card:hover img {
    transform: scale(1.1);
}

.branch-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.branch-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.15rem;
    z-index: 1;
}

/* Insights Section */
.insights-section {
    padding: 4rem 0;
    background-color: rgba(247, 247, 247, 0.3);
}

.article-card {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
    height: 100%;
    cursor: pointer;
}

.article-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 1.5rem;
}

.article-tag {
    display: inline-block;
    background-color: var(--rob-roy);
    color: var(--tom-thumb);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.article-card h3 {
    color: var(--tango);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card p {
    color: #666;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-outline-custom {
    border: 2px solid var(--tabasco);
    color: var(--tabasco);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 0.5rem;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--tabasco);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--tom-thumb);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer h3 {
    color: var(--rob-roy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: white;
}

.footer-separator {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Programs Slider Styles */
.programs-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    position: relative;
}

.programs-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.programs-slider::-webkit-scrollbar {
    display: none;
}

.program-slide {
    flex: 0 0 320px;
    scroll-snap-align: center;
    padding: 0;
    min-width: 320px;
    max-width: 340px;
}

.programs-nav-btn {
    position: absolute;
    background: var(--tabasco);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.programs-nav-btn:hover {
    background: var(--carrot-orange);
    transform: scale(1.1);
}

.programs-dots {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
}

.programs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.programs-dot.active {
    background: var(--carrot-orange);
    width: 24px;
    border-radius: 4px;
}

#programsPrevBtn {
    left: 3%;
}

/* Responsive */
@media (max-width: 989px) {
    .navbar-collapse {
        background: linear-gradient(to right, #0f0875, #1c175b);
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 65px;
    }

    .hero-social {
        display: none;
    }

    .hero-navigation {
        display: none;
    }

    .hero-title,
    .booknow-content h2 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .program-card {
        margin-bottom: 1.5rem;
    }

    .branch-card {
        margin-bottom: 1.5rem;
    }

    .article-card {
        margin-bottom: 1.5rem;
    }

    .programs-slider {
        gap: 12px;
    }

    .program-slide {
        min-width: 83vw;
        max-width: 85vw;
    }

    #programsPrevBtn {
        left: 10%;
        bottom: -3%;
    }

    #programsNextBtn {
        left: 73%;
        bottom: -3%;
    }
}

.sidebar-list .nav-item .nav-link {
    color: rgba(255, 255, 255, 5) !important;
}

/* ========================================
   GALLERY PAGE STYLES
   ======================================== */

.gallery-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--tom-thumb), var(--tabasco));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 9px var(--amethyst-smoke);
}

.gallery-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.gallery-hero-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('../imgs/hero/slider-3.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    border: 2px solid var(--rob-roy);
    color: var(--martinique);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--tabasco), var(--hibiscus));
    color: white;
    border-color: var(--tabasco);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 35, 18, 0.3);
}

.gallery-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    background: white;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: var(--rob-roy);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s;
    z-index: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 160px;
    height: 160px;
    background: var(--tabasco);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0;
    transition: all 0.5s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.15;
    transform: scale(1.5);
}

.gallery-item:hover::after {
    opacity: 0.1;
    transform: rotate(45deg) scale(1.2);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s;
    position: relative;
    z-index: 2;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-category {
    color: var(--rob-roy);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--tabasco);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
    z-index: 3;
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: scale(1);
}

.lightbox-modal .modal-dialog {
    max-width: 90vw;
}

.lightbox-modal .modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: none;
}

.lightbox-modal .modal-body {
    padding: 0;
    position: relative;
}

.lightbox-modal img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-modal .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: white;
    opacity: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--tom-thumb), var(--tabasco));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 9px var(--amethyst-smoke);
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.about-hero-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('../imgs/hero/slider-3.jpeg');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding-top: 50px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--carrot-orange);
    display: block;
}

.stat-icon-about {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--rob-roy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tabasco);
    font-size: 1.5rem;
}

.features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(243, 224, 38, 0.05), rgba(238, 154, 37, 0.05));
}

.section-subtitle {
    text-align: center;
    color: var(--martinique);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--carrot-orange), var(--tango));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tabasco);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

.story-section {
    padding: 4rem 0;
    background: white;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--tabasco);
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(243, 224, 38, 0.05), rgba(238, 154, 37, 0.05));
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: var(--rob-roy);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.1;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: var(--tabasco);
    border-radius: 50%;
    opacity: 0.08;
}

.team-section .container {
    position: relative;
    z-index: 1;
}

.message-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.message-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--rob-roy);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s;
}

.message-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    background: var(--tabasco);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s;
}

.message-card:hover::before {
    opacity: 0.1;
    transform: scale(1.2);
}

.message-card:hover::after {
    opacity: 0.08;
    transform: scale(1.3);
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.message-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.message-image-container {
    position: relative;
    flex-shrink: 0;
}

.message-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rob-roy);
}

.message-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--tabasco), var(--hibiscus));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    border: 3px solid white;
}

.message-badge.academic {
    background: linear-gradient(135deg, var(--carrot-orange), var(--tango));
}

.message-title-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--tabasco);
    margin-bottom: 0.25rem;
}

.message-role {
    font-size: 0.95rem;
    color: var(--martinique);
    font-weight: 500;
}

.message-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--carrot-orange), var(--tango));
    margin-top: 0.5rem;
}

.message-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: var(--rob-roy);
    opacity: 0.3;
    z-index: 0;
}

.message-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.message-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.signature-line {
    width: 40px;
    height: 2px;
    background: var(--tabasco);
}

.signature-name {
    font-weight: 600;
    color: var(--tabasco);
    font-size: 0.95rem;
}

.message-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}

.contact-info i {
    font-size: 1.1rem;
    color: var(--tabasco);
}

/* ========================================
   ACHIEVEMENTS PAGE STYLES
   ======================================== */

.achievements-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--tom-thumb), var(--tabasco));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.achievements-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
}

.achievements-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.achievements-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    color: white;
}

.achievements-hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--ripe-lemon);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--carrot-orange);
    border-radius: 50%;
    bottom: 15%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--rob-roy);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    top: 50%;
    right: 20%;
    animation: float 7s ease-in-out infinite;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--tabasco), var(--tango));
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--carrot-orange), var(--tango));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tabasco);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.timeline-section {
    padding: 5rem 0;
    background: white;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--carrot-orange), var(--tango));
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--tabasco), var(--tango));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 52%;
    text-align: right;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 52%;
    padding-left: 2rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--tabasco);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--tabasco);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -62px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -62px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--carrot-orange), var(--tango));
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, 0 0 0 8px var(--tabasco);
    z-index: 2;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tabasco);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--martinique);
    margin-bottom: 0.75rem;
}

.timeline-description {
    color: #666;
    line-height: 1.6;
}

.awards-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(243, 224, 38, 0.05), rgba(238, 154, 37, 0.05));
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.award-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tabasco), var(--hibiscus));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.award-card:hover::before {
    opacity: 0.03;
}

.award-header {
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.award-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--carrot-orange), var(--tango));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.award-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--tabasco);
    margin-bottom: 0.5rem;
}

.award-category {
    font-size: 0.9rem;
    color: var(--martinique);
}

.award-body {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.award-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #666;
}

.award-detail i {
    color: var(--tabasco);
    font-size: 1.1rem;
}

.award-description {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonials-section {
    padding: 4rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--rob-roy);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--carrot-orange), var(--tango));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: 700;
    color: var(--tabasco);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.85rem;
    color: #999;
}

/* BLOG PAGE STYLES */
.bg-carrot-orange {
    background-color: var(--carrot-orange) !important;
}

.bg-tango {
    background-color: var(--tango) !important;
}

/* Blog Card Styles */
.blog-card {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
    height: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.blog-image {
    height: 208px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge-category {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: none;
}

.badge-tag {
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid var(--rob-roy);
    color: var(--tom-thumb);
    background: transparent;
}

.blog-title {
    color: var(--tango);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-title {
    color: var(--tabasco);
}

.blog-excerpt {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.blog-meta-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-meta-left div {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-meta-icon {
    width: 1rem;
    height: 1rem;
    color: var(--tango);
    font-weight: bold;
}

/* Blog Detail Modal */
.blog-detail-modal .modal-content {
    border-radius: 0.75rem;
}

.blog-detail-title {
    color: var(--tabasco);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    margin-right: 2rem;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.blog-detail-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.blog-detail-image {
    height: 384px;
    overflow: hidden;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-excerpt {
    font-size: 1.125rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.blog-detail-content {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-detail-content p {
    margin-bottom: 1rem;
}

.blog-detail-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.btn-share {
    border: 1px solid #e0e0e0;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-share:hover {
    background: var(--tabasco);
    color: white;
    border-color: var(--tabasco);
}

/* Insights Section */
.insights-section {
    padding: 4rem 0;
    background-color: rgba(247, 247, 247, 0.3);
}

/* EVENT PAGE STYLES */

/* Event Card Styles */
.event-card {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
    cursor: pointer;
    position: relative;
}

.event-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.event-card.past {
    opacity: 0.7;
}

.event-image {
    height: 192px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 4rem;
}

.date-day {
    color: var(--tabasco);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.date-month {
    color: var(--tabasco);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.date-year {
    color: var(--tom-thumb);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--carrot-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    border: none;
}

.event-content {
    padding: 1.5rem;
}

.event-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: none;
}

.event-title {
    color: var(--tango);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card:hover .event-title {
    color: var(--tabasco);
}

.event-description {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-icon {
    width: 1rem;
    height: 1rem;
    color: var(--tango);
    font-weight: bold;
}

.registrations {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
    font-size: 0.75rem;
    color: #666;
}

.registrations span {
    color: var(--tabasco);
    font-weight: 600;
}

/* Event Detail Modal */
.event-detail-modal .modal-content {
    border-radius: 0.75rem;
}

.event-detail-title {
    color: var(--tabasco);
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
}

.event-detail-image {
    height: 256px;
    overflow: hidden;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.event-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-video {
    height: 600px;
}

.event-detail-video-2-3 {
    position: relative;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #000;
    margin-bottom: 1rem;
}

.event-detail-video-2-3 video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0.5rem;
    background: #000;
}

.event-detail-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--carrot-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .event-detail-video-2-3 {
        aspect-ratio: 2 / 3;
        min-height: 220px;
        max-height: 400px;
    }

    .event-detail-video-2-3 video {
        min-height: 220px;
        max-height: 400px;
    }
}

.event-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.event-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.event-info-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--tango);
    font-weight: bold;
    margin-top: 0.25rem;
}

.event-info-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.event-info-value {
    font-weight: 600;
}

.event-description-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.event-description-section p {
    color: #666;
    line-height: 1.6;
}

.registration-form {
    margin-top: 1.5rem;
}

.registration-form h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    width: 100%;
}

.btn-register {
    background: var(--tabasco);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-register:hover {
    background: var(--falu-red);
    transform: translateY(-2px);
}

.btn-register:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.past-notice {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    color: #666;
}

/* Events Section */
.events-section {
    padding: 4rem 0;
    background-color: rgba(247, 247, 247, 0.3);
}