:root {
    --primary: #1B2A4A;
    --primary-dark: #0F1A33;
    --primary-light: #2A3D6B;
    --accent: #C4A747;
    --accent-dark: #A8892E;
    --accent-light: #D4B857;
    --dark: #0A0F1A;
    --gray: #2C3E50;
    --light-gray: #F4F6F9;
    --white: #FFFFFF;
    --black: #000000;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   EVENT PAGE STYLES
   ============================================ */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header h2 i {
    color: var(--accent);
    margin-right: 10px;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 3px;
}

/* Events Grid */
.events-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

/* Horizontal Event Card */
.event-card-horizontal {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.event-card-horizontal:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.event-date-large {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px 35px;
    text-align: center;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date-day {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.event-date-month-year {
    margin-top: 5px;
}

.event-date-month {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.event-date-year {
    font-size: 14px;
    opacity: 0.8;
}

.event-content-horizontal {
    padding: 25px 30px;
    flex: 1;
}

.event-content-horizontal h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.event-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.event-meta span {
    color: #666;
    font-size: 14px;
}

.event-meta i {
    color: var(--accent);
    margin-right: 8px;
}

.btn-event-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-event-detail:hover {
    background: var(--accent);
    gap: 12px;
}

/* Past Events Grid */
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.event-card-past {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.event-card-past:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-image-fixed {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card-past:hover .event-image-fixed img {
    transform: scale(1.05);
}

.event-overlay-past {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(27,42,74,0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.event-content-past {
    padding: 20px;
}

.event-date-past {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 10px;
}

.event-content-past h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.event-content-past p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* No Events */
.no-events {
    text-align: center;
    padding: 60px;
    background: var(--light-gray);
    border-radius: 20px;
}

.no-events i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Event Detail Page */
.event-detail-section {
    padding: 60px 0;
}

.event-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.event-detail-hero {
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
}

.event-detail-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.event-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: white;
}

.info-card:hover .info-icon i {
    color: var(--accent);
}

.info-card:hover .info-text h4,
.info-card:hover .info-text p {
    color: white;
}

.info-icon i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-text h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #666;
}

.info-text p {
    font-weight: 600;
    color: var(--dark);
}

.event-description {
    margin-bottom: 40px;
}

.event-description h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.event-description h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.event-content {
    line-height: 1.8;
    color: #555;
}

.event-content p {
    margin-bottom: 15px;
}

/* Share Section */
.event-share-section {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.event-share-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.share-btn i {
    font-size: 16px;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.telegram {
    background: #0088cc;
    color: white;
}

.share-btn.email {
    background: #6c757d;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

/* Event Register Button */
.event-register {
    text-align: center;
    margin-top: 30px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-large i {
    margin-right: 10px;
}

/* Sidebar Widgets */
.event-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.sidebar-widget h3 i {
    color: var(--accent);
    margin-right: 8px;
}

/* Latest Events List */
.latest-events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.latest-event-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s;
}

.latest-event-item:hover {
    background: var(--primary);
    transform: translateX(5px);
}

.latest-event-item:hover .latest-event-info h4,
.latest-event-item:hover .latest-event-info p {
    color: white;
}

.latest-event-date {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 10px 15px;
    border-radius: 12px;
    min-width: 60px;
}

.latest-event-date .latest-day {
    font-size: 20px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.latest-event-date .latest-month {
    font-size: 10px;
    text-transform: uppercase;
}

.latest-event-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.latest-event-info p {
    font-size: 12px;
    color: #666;
}

.latest-event-info p i {
    font-size: 10px;
    margin-right: 4px;
}

/* Category List */
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-gray);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark);
    font-size: 13px;
    transition: all 0.3s;
}

.category-item i {
    color: var(--accent);
    font-size: 12px;
}

.category-item:hover {
    background: var(--primary);
    color: white;
}

.category-item:hover i {
    color: white;
}

/* Social Links Widget */
.social-links-widget {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.social-link i {
    width: 25px;
    font-size: 18px;
}

.social-link span {
    font-weight: 500;
}

.social-link.fb { background: #1877f2; }
.social-link.tw { background: #1da1f2; }
.social-link.ig { background: linear-gradient(45deg, #f09433, #d62976, #962fbf); }
.social-link.ln { background: #0077b5; }
.social-link.tg { background: #0088cc; }
.social-link.yt { background: #ff0000; }

.social-link:hover {
    transform: translateX(5px);
    filter: brightness(1.05);
}

/* Help Widget */
.help-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.help-widget .help-content i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 15px;
}

.help-widget .help-content h3 {
    color: white;
    border-bottom: none;
    padding-bottom: 0;
}

.help-widget .help-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.btn-help {
    display: inline-block;
    padding: 10px 25px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-help:hover {
    background: white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .event-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .event-sidebar {
        position: static;
    }
    
    .event-info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .event-card-horizontal {
        flex-direction: column;
    }
    
    .event-date-large {
        flex-direction: row;
        justify-content: space-around;
        padding: 15px;
    }
    
    .event-date-day {
        font-size: 32px;
    }
    
    .event-date-month-year {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .event-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .past-events-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .share-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .event-content-horizontal {
        padding: 20px;
    }
    
    .event-content-horizontal h3 {
        font-size: 1.2rem;
    }
    
    .event-meta {
        gap: 15px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* ============================================
   HEADER STYLES
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu li a:hover:before,
.nav-menu li a.active:before {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
}

.dropdown-menu li a:before {
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 25px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    background: var(--light-gray);
    padding: 5px;
    border-radius: 50px;
}

.lang-btn {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--dark);
    border-radius: 50px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(27,42,74,0.1);
    color: var(--primary);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
    margin-top: 1px;
    margin-bottom: 10px;
    position: relative;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,26,51,0.85) 0%, rgba(27,42,74,0.75) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
    animation: fadeInUp 1s ease-out;
}

.slide-content h1 span {
    color: var(--accent);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.slide-content .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(27,42,74,0.3);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196,167,71,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--accent);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background: var(--accent);
    transform: scale(1.2);
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 100px 0;
}

.bg-light {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.section-line {
    display: none;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 20px auto 0;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 60px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* News Cards */
.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    text-align: center;
    padding: 10px 14px;
    min-width: 60px;
    box-shadow: var(--shadow-sm);
}

.date-day {
    font-size: 24px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.date-month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--dark);
}

.news-content p {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent);
    gap: 12px;
}

/* Events Section */
.events-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-item {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.event-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.event-date-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px 35px;
    text-align: center;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-day {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.event-month {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.event-year {
    font-size: 14px;
    opacity: 0.8;
}

.event-details-box {
    padding: 30px;
    flex: 1;
}

.event-details-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.event-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.event-meta span {
    color: #666;
    font-size: 14px;
}

.event-meta i {
    color: var(--accent);
    margin-right: 8px;
}

.event-details-box p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.cta-content p {
    color: #666;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.btn-large {
    padding: 16px 45px;
    font-size: 1.1rem;
}

/* About Page */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.about-image:before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 30px;
    z-index: -1;
}

.about-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.values-list li {
    list-style: none;
    padding: 12px 20px;
    background: var(--light-gray);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.values-list li:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 45px;
    border-radius: 25px;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196,167,71,0.1);
}

.contact-form button {
    width: 100%;
}

/* News Detail & Event Detail */
.news-detail-wrapper,
.event-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.news-detail-image,
.event-detail-image {
    width: 100%;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.news-meta,
.event-meta {
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.news-content,
.event-content {
    line-height: 1.9;
    color: #444;
}

.news-content p,
.event-content p {
    margin-bottom: 20px;
}

.sidebar {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 25px;
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    margin-bottom: 25px;
    color: var(--dark);
    font-size: 1.3rem;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    display: block;
}

.sidebar-list a:hover {
    color: var(--accent);
}

.sidebar-list .date {
    font-size: 12px;
    color: #999;
    display: block;
    margin-top: 5px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #aaa;
    line-height: 1.7;
}

.footer h4 {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
}

.footer-contact i {
    width: 30px;
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #888;
    font-size: 14px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    display: block;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Pagination */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination-wrapper {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.pagination-wrapper span,
.pagination-wrapper a {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
}

.pagination-wrapper a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-wrapper span.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .about-grid,
    .contact-grid,
    .news-detail-wrapper,
    .event-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 25px;
        transition: left 0.3s;
        z-index: 999;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        padding: 15px 0 0;
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .lang-switcher {
        position: absolute;
        top: 15px;
        right: 80px;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .event-item {
        flex-direction: column;
    }
    
    .event-date-box {
        flex-direction: row;
        justify-content: space-around;
        padding: 15px 20px;
    }
    
    .event-day {
        font-size: 32px;
    }
    
    .event-month {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .news-meta, .event-meta {
        flex-direction: column;
        gap: 8px;
    }
}
