:root {
    --primary: #1a5f7a;
    --primary-dark: #134a5e;
    --secondary: #159895;
    --accent: #d4af37;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --light: #f8f9fa;
    --dark: #1e293b;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
}

* {
    /*font-family: 'Vazirmatn', sans-serif;*/
}

body {
    overflow-x: hidden;
    color: var(--dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.display-1, .display-2, .display-3 {
    font-weight: 900;
}

/* Navbar */
.navbar {
    background: rgba(26, 95, 122, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1030;
}

    .navbar.scrolled {
        padding: 0.5rem 0;
        background: rgba(26, 95, 122, 0.98);
    }

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white !important;
}

.navbar-brand span {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1;
}

.navbar-brand img.brand-logo {
    height: 32px;
    width: auto;
}

.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.5rem;
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Desktop Menu */
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

/* Underline only for non-dropdown nav-links */
.navbar-nav .nav-item:not(.mega-dropdown) .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(50%);
}

.navbar-nav .nav-item:not(.mega-dropdown) .nav-link:hover::after,
.navbar-nav .nav-item:not(.mega-dropdown) .nav-link.active::after {
    width: 50%;
}

/* Mega Menu - Desktop */
.mega-dropdown {
    position: relative;
}

.mega-dropdown > .nav-link {
    display: flex;
    align-items: center;
}

.mega-dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mega-dropdown:hover .mega-dropdown-icon {
    transform: rotate(180deg);
}

.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.98), rgba(21, 152, 149, 0.98));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.25rem;
    z-index: 1000;
    overflow: hidden;
    min-width: 280px;
}

/* Keep menu open when hovering over it */
.mega-dropdown:hover .mega-dropdown-menu,
.mega-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-content {
    padding: 1rem;
    display: grid;
    gap: 0.5rem;
}

.mega-dropdown-grid-1 {
    grid-template-columns: 1fr;
    min-width: 280px;
}

.mega-dropdown-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    min-width: 520px;
}

.mega-dropdown-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    min-width: 720px;
}

/* Mega dropdown items */
.mega-dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9375rem;
    background: transparent;
}

.mega-dropdown-item:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent);
    transform: translateX(-4px);
}

.mega-dropdown-item:active {
    color: var(--accent);
}

.mega-dropdown-item.active {
    background: rgba(212, 175, 55, 0.3);
    color: var(--accent);
}

.mega-dropdown-item.mega-dropdown-parent {
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.25rem;
    padding-bottom: 0.75rem;
}

.mega-dropdown-children {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-right: 1rem;
}

.mega-dropdown-children .mega-dropdown-item {
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
}

.mega-dropdown-children .mega-dropdown-section {
    border-right: 2px solid rgba(212, 175, 55, 0.2);
    padding-right: 0.75rem;
    margin-right: 0.5rem;
}

.nav-actions .btn {
    border-radius: 999px;
    white-space: nowrap;
}

.nav-actions-mobile {
    flex-wrap: nowrap;
}

.nav-actions-mobile form {
    display: inline-flex;
}

.nav-actions-mobile .text-truncate {
    max-width: 8rem;
    display: inline-block;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1040;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(26, 95, 122, 0.95);
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: white !important;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
}

.mobile-menu-brand .brand-logo {
    height: 32px;
    width: auto;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

/* Mobile Navigation */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 0.375rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent);
}

.mobile-nav-link.ps-3 {
    padding-right: 2rem;
}

.mobile-nav-link.ps-4 {
    padding-right: 3rem;
}

.mobile-nav-link.ps-5 {
    padding-right: 4rem;
}

.mobile-nav-arrow {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.mobile-nav-item.has-children.expanded > .mobile-nav-link .mobile-nav-arrow {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    list-style: none;
    padding: 0;
    margin: 0.375rem 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item.has-children.expanded > .mobile-nav-submenu {
    max-height: 1500px;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .navbar #navbarNav {
        flex-wrap: nowrap;
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding-inline: 0.75rem !important;
    }

    .navbar-brand {
        white-space: nowrap;
    }

    .nav-actions {
        flex-wrap: nowrap;
        gap: 0.75rem;
        width: auto;
    }

    .nav-actions .btn {
        width: auto;
        min-width: max-content;
    }

    /* Hide mobile menu elements on desktop */
    .mobile-menu-overlay,
    .mobile-menu-drawer {
        display: none;
    }
}

@media (max-width: 991.98px) {
    /* Hide desktop menu on mobile */
    #navbarNav {
        display: none !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 50vh;
    padding-top: 60px;
    overflow: hidden;
    background-color: #0c2c32;
    color: #ffffff;
}

.hero-slider {
    height: 50vh;
    min-height: 400px;
    position: relative;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slide-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.hero-slide-link:hover {
    text-decoration: none;
    color: inherit;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50vh;
    height: 100%;
    padding: clamp(2rem, 3vw, 3rem) 0 clamp(1.5rem, 2vw, 2rem);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-slide--gradient {
    background-image: linear-gradient(135deg, #104554 0%, #1ba7a1 100%);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(7, 17, 20, 0.7) 0%, rgba(11, 67, 74, 0.55) 55%, rgba(9, 113, 118, 0.45) 100%);
    mix-blend-mode: multiply;
}

.hero-slide > .container {
    position: relative;
    z-index: 2;
}

.hero-slide-content {
    max-width: 720px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.hero-title-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.1vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-cta-group .btn {
    border-radius: 999px;
    padding: 0.9rem 2.25rem;
    font-weight: 600;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta-group .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-slider .carousel-indicators {
    position: absolute;
    bottom: 2.5rem;
    gap: 0.75rem;
}

.hero-slider .carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-slider .carousel-indicators .active {
    background-color: var(--accent);
    transform: scale(1.15);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 3.5rem;
    height: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    filter: invert(1) grayscale(100%);
}

@media (max-width: 1199.98px) {
    .hero-slide {
        padding-inline: 0;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 56px;
    }

    .hero-slide,
    .hero-slider {
        min-height: 45vh;
        height: 45vh;
    }

    .hero-slide {
        padding-top: clamp(1.5rem, 3vw, 2rem);
        padding-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .hero-cta-group {
        gap: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-slide-content {
        max-width: 100%;
    }

    .hero-kicker {
        font-size: 0.85rem;
        padding: 0.3rem 1rem;
    }

    .hero-slider .carousel-indicators {
        bottom: 1.5rem;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
}

.footer-compact {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.85);
}

    .footer-compact a {
        color: inherit;
        text-decoration: none;
    }

        .footer-compact a:hover,
        .footer-compact a:focus {
            color: #38bdf8;
            text-decoration: none;
        }

.footer-compact-inner {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-compact-name {
    font-size: 1rem;
}

.footer-compact-info {
    color: rgba(255, 255, 255, 0.7);
}

.footer-compact-item span,
.footer-compact-item small {
    color: rgba(255, 255, 255, 0.7);
}

.footer-compact-item .fw-semibold {
    color: rgba(255, 255, 255, 0.9);
}

.footer-compact-badge {
    background: rgba(148, 163, 184, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.footer-compact-badge-img {
    height: 3rem;
    width: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .footer-compact-inner {
        border: none;
    }

    .footer-compact {
        text-align: center;
    }

    .footer-compact-brand,
    .footer-compact-info,
    .footer-compact-badges {
        justify-content: center;
    }

    .footer-compact-item {
        justify-content: center;
    }
}


/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 95, 122, 0.3);
}

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(26, 95, 122, 0.4);
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        color: white;
    }

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

    .btn-outline-custom:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-2px);
    }

.btn-accent {
    background: var(--accent);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-accent:hover {
        background: #c49a2e;
        transform: translateY(-2px);
        color: white;
    }

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid transparent;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(26, 95, 122, 0.15);
        border-color: var(--primary);
    }

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-1 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.service-icon-2 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.service-icon-3 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-icon-4 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #a5f3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255,255,255,0.95);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .event-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.event-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    overflow: hidden;
}

    .event-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(255,255,255,0.1));
    }

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.badge-ziarat {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.badge-tafrih {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.badge-amozesh {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.price-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(239, 68, 68, 0.95);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.event-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 12px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

    .event-meta-item i {
        color: var(--primary);
        font-size: 1rem;
    }

.event-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.event-footer {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.event-price-unit {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: white;
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .filter-tab:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    .filter-tab.active {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
    }

/* Media Gallery Section */
.media-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

    .media-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.media-thumbnail {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .media-thumbnail i {
        font-size: 4rem;
        color: white;
        z-index: 2;
    }

.media-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.media-card:hover .media-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.media-play-btn i {
    font-size: 1.5rem;
    color: var(--primary);
    padding-right: 3px;
}

.media-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.media-body {
    padding: 1.25rem;
}

.media-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
    line-height: 1.4;
}

.media-speaker {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.media-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Support/Donation Section */
.support-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .support-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 95, 122, 0.05), rgba(21, 152, 149, 0.05));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .support-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(26, 95, 122, 0.15);
        border-color: var(--primary);
    }

        .support-card:hover::before {
            opacity: 1;
        }

.support-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--accent), #c49a2e);
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.support-card:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
}

.support-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.support-desc {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.testimonial-tour {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-rating {
    color: #fbbf24;
    margin-top: 0.5rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.blog-image {
    height: 250px;
    background: var(--gray-200);
    position: relative;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-body {
    padding: 1.5rem;
}

.blog-date {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: rgba(255,255,255,0.8) !important;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: white !important;
    margin-bottom: 1rem;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.7) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

    .social-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(26, 95, 122, 0.3);
        color: white;
    }

.footer-title {
    color: white !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-link {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

    .footer-link:hover {
        color: var(--accent) !important;
        padding-right: 5px;
    }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8) !important;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 0;
        width: 60%;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), transparent);
        border-radius: 2px;
    }

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 20px 20px 0 0;
    border: none;
}

    .modal-header .btn-close {
        filter: brightness(0) invert(1);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Progress Bar */
.capacity-progress {
    height: 8px;
    background: var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.capacity-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--success), #16a34a);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        min-height: 45vh;
        padding-top: 56px;
    }

    .hero-search {
        padding: 1.5rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    .filter-tabs {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .navbar-nav {
        padding: 1rem 0;
    }
}

/* Performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
