/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --primary-color: #ffccad; */

    --primary-color: #000000;
    --secondary-color: #c00000;
    --accent-color: #c55a11;
    /* --light-bg: #843b0c; */
    --white: #fff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: linear-gradient(200deg, var(--primary-color), var(--secondary-color));
    overflow-x: hidden;

}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: var(--primary-color);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-logo a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial Black', Arial, sans-serif;
}

.navbar.scrolled .nav-logo a {
    color: white;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar.scrolled .nav-link {
    color: white;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-book {
    background: linear-gradient(45deg, var(--accent-color), #c0392b);
    color: white !important;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.navbar.scrolled .hamburger span {
    background: white;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-color);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
    padding-left: 1rem;
}

.mobile-btn-book {
    background: linear-gradient(45deg, var(--accent-color), #c0392b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    margin-top: 1rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.mobile-btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.6);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #ff4d4d;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-menu:hover {
    color: #ffffff;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* Header */
header {
    height: 100vh;
    /* background: linear-gradient(rgba(225, 103, 103, 0.6), rgba(152, 99, 99, 0.6)), url("../Images/gallery-9.jpg") center/cover no-repeat; */

    background: linear-gradient(200deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.header-content h1 {
    font-size: 3.5rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 800;
    /* margin-bottom: 1rem; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.header-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.header-content h3,
.header-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.theme-img {
    width: 300px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    margin-top: 0rem;
    animation: float 3s ease-in-out infinite;
    margin-bottom: -6rem;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.creadit-img {
    width: 100px;
    height: auto;
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.8;
}

.header-content p {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: #f0f0f0;
    opacity: 0.9;
}

.brochure-slider {
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    margin: auto;
    border-radius: 10px;
    align-items: center;
    position: relative;
}

.brochure-track {
    display: flex;
    width: 300%;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}

.brochure-card {
    width: 100%;
    flex: 0 0 100%;
    align-items: center;
}

.brochure-card img {
    width: 30%;
    display: block;
    align-items: center;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: auto;
    cursor: zoom-in;
}

.brochure-card img:hover {
    filter: brightness(0.95);
}

body.image-viewer-open {
    overflow: hidden;
}

.image-viewer {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4rem 5rem;
    background: rgba(0, 0, 0, 0.9);
}

.image-viewer.active {
    display: flex;
}

.image-viewer-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.image-viewer-close,
.image-viewer-nav {
    position: absolute;
    border: none;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    transition: background 0.2s ease, transform 0.2s ease;
}

.image-viewer-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
}

.image-viewer-nav {
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 2rem;
    transform: translateY(-50%);
}

.image-viewer-prev {
    left: 1.5rem;
}

.image-viewer-next {
    right: 1.5rem;
}

.image-viewer-close:hover,
.image-viewer-nav:hover {
    background: var(--secondary-color);
}

.image-viewer-nav:hover {
    transform: translateY(-50%) scale(1.08);
}

@media screen and (max-width: 768px) {
    .image-viewer {
        padding: 4rem 1rem;
    }

    .image-viewer-nav {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .image-viewer-prev {
        left: 0.75rem;
    }

    .image-viewer-next {
        right: 0.75rem;
    }
}

/* Buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
}

.brochure-slider .prev,
.brochure-slider .next {
    display: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.8);
}



/* Sections */
section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}


section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}


section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}


/* Notification Section */
.notification-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 50%, #f8fbff 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}


.notification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.notification-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.notification-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.notification-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.notification-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.notification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.notification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.notification-card:hover::before {
    transform: scaleX(1);
}


.notification-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.notification-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.notification-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 480px;
}

.card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #edf0f4;
    background: #fff;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.notification-list,
.schedule-list {
    padding: 1.5rem 2rem;
    overflow-y: auto;
    flex: 1;
}

.notification-list,
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
}

.notification-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1rem;
    border-radius: 12px;
    background: #fafbfc;
    border: 1px solid #eef1f5;
}

.item-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(52, 152, 219, 0.12);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1rem;
}

.item-text {
    color: #1f2937;
    font-size: 0.98rem;
    line-height: 1.5;
}

.item-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.25s ease;
}

.item-link:hover {
    background: var(--primary-color);
}

.notification-program {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.program-card {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.program-card.program-highlight {
    grid-column: 1 / -1;
}

.program-date {
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
}

.program-list {
    display: flex;
    flex-direction: column;
}

.program-row {
    display: grid;
    grid-template-columns: minmax(170px, 0.42fr) 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eef1f5;
}

.program-row:last-child {
    border-bottom: 0;
}

.program-row time {
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.4;
}

.program-row p {
    color: #1f2937;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.event-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
}

.card-footer {
    padding: 0;
    /* remove extra space */
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    /* ensure the button doesn't overflow the card */
    width: 100%;
    padding-left: 0rem;
    padding-right: 0rem;

}

.card-footer a {
    display: block;
    padding: 1.2rem;
    text-align: center;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease;
}

/* Hover */
.card-footer a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Click */
.card-footer a:active {
    transform: scale(0.98);
}



@media screen and (max-width: 1024px) {
    .notification-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .notification-card {
        min-height: auto;
    }

    .notification-item {
        grid-template-columns: auto 1fr;
        align-items: center;
        justify-content: space-between;
        /* display: flex; */
    }

    .item-link {
        justify-self: start;
        align-items: center;
        align-content: center;
        display: inline-block;

        flex-direction: column;
        text-align: center;
    }

    .notification-program {
        grid-template-columns: 1fr;
    }

    .program-card.program-highlight {
        grid-column: auto;
    }

    .program-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding: 0.9rem 1rem;
    }
}


.pdf-section h3,
.schedule-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: sticky;
    top: 0;
    background: white;
    padding: 1rem 0;
    z-index: 2;
    border-radius: 15px 15px 0 0;
}

.pdf-section {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 0;
    max-height: 400px;
    position: relative;
    z-index: 1;
}

.pdf-section .pdf-list {
    padding: 2rem;
    padding-top: 0;
    max-height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.pdf-section .pdf-list::-webkit-scrollbar {
    width: 6px;
}

.pdf-section .pdf-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pdf-section .pdf-list::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.pdf-section .pdf-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.schedule-section {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 0;
    max-height: 400px;
    position: relative;
    z-index: 1;
    display: block;
    visibility: visible;
}

.schedule-section .schedule-content {
    padding: 2rem;
    padding-top: 0;
    max-height: 100%;
    overflow-y: auto;
    color: #333;
    display: block;
    visibility: visible;
    scroll-behavior: smooth;
}

.schedule-section .schedule-content::-webkit-scrollbar {
    width: 6px;
}

.schedule-section .schedule-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.schedule-section .schedule-content::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.schedule-section .schedule-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Tourism Slider */
.tourism-section {
    background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 50%, #f0f7ff 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.tourism-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.tourism-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.tourism-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.tourism-section h2 {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Simple Tourism Slider - Left Photo Right Info */
.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 460px;
}

.tourism-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.tourism-marquee {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.tourism-marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
    gap: 2rem;
    width: max-content;
}

.tourism-marquee-item {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 420px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.tourism-marquee:hover .tourism-marquee-track {
    animation-play-state: paused;
}

.tourism-marquee-track:hover .tourism-marquee-item {
    transform: scale(1.02);
}


.tourism-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tourism-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Simple Tourism Slider - Left Photo Right Info */
.tourism-section .slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 460px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
}

.tourism-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tourism-card {
    min-width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 420px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card-image {
    flex: 0 0 50%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tourism-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.explore-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    color: var(--primary-color);
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .tourism-card {
        flex-direction: column;
        min-height: 380px;
    }

    .card-image {
        flex: none;
        height: 220px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }
}


.tourism-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
}

.tourism-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
    padding: 2rem 3rem;
    width: calc(100% * 6 / 3 + 4.5rem);
    /* For 3 visible, infinite padding later */
}

.tourism-card {
    min-width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 420px;
    transition: all 0.3s ease;
}

.tourism-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 10;
    color: var(--primary-color);
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.card-image {
    flex: 0 0 50%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tourism-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.explore-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .tourism-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }

    .tourism-slider-track {
        width: calc(100% * 6 / 2 + 3rem);
    }
}

@media (max-width: 768px) {
    .tourism-card {
        flex: 0 0 100%;
        min-width: 100%;
        height: 380px;
    }

    .tourism-slider-track {
        width: calc(100% * 6 + 4rem);
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .card-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .tourism-slider-track {
        padding: 1rem 2rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }
}



.tourism-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.tourism-card {
    min-width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.card-image {
    flex: 0 0 50%;
    min-width: 50%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: white;
}

/* Notification Section */
.notification-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.pdf-section h3,
.schedule-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdf-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.pdf-item:hover {
    transform: translateX(10px);
}

.schedule-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    color: #333;
    line-height: 1.6;
    display: block;
    visibility: visible;
}

.schedule-item strong {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-right: 0.5rem;
}

/* Hotels Section */
.hotels-section {
    background: var(--light-bg);
    max-width: 100%;
    padding: 5rem 2rem;
}

.hotels-section h2 {
    max-width: 1200px;
    margin: 0 auto 4rem;
}


.hotels-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hotel-card img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    background: #ddd center/cover no-repeat;
}

.hotel-info {
    padding: 1.5rem;
}

.hotel-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.book-btn {
    margin-top: 0.75rem;
    padding: 0.65rem 1.2rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}


/* Fee Section */
.fee-section {
    background: white;
}

.fee-table-container {
    overflow-x: auto;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.fee-table th,
.fee-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.fee-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.fee-table tbody tr:hover {
    background: var(--light-bg);
}

/* Payment Section */
.payment-qr {
    display: block;
    width: 90%;
    justify-content: center;
    margin-bottom: 2rem;
}


.payment-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef5ff 50%, #f0f7ff 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}


.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.payment-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.payment-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.payment-cards {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Card Design */
.payment-card {
    /* max-width: 350px; */
    /* margin: 50px auto; */
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    /* Center everything */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Heading */
.payment-card h3 {
    color: #5a0000;
    margin-bottom: 15px;
}

/* QR Image */
.payment-qr {
    display: block;
    margin: 15px auto;
    width: 220px;
    max-width: 100%;
}

/* Button */
.pay-btn {
    display: inline-block;
    background: linear-gradient(45deg, #e67e22, #c0392b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 15px;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover Effect */
.pay-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.payment-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.payment-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.payment-card:hover::before {
    transform: scaleX(1);
}

.payment-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* .payment-card .price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
} */

.pay-btn {
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--accent-color), #c0392b);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pay-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.5);
}


/* .payment-section h2 {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
} */

.payment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.payment-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.payment-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.payment-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

body.modal-open {
    overflow: hidden;
}

/* Modal */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.35s ease;
    padding: 1rem;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(16px);
    }
}

.modal[style*="display: flex"] {
    display: flex !important;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.4rem 2rem 2rem;
    border-radius: 32px;
    max-width: 460px;
    width: 100%;
    position: relative;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(200, 210, 220, 0.5);
    backdrop-filter: blur(8px);
    animation: modalSlideIn 0.45s cubic-bezier(0.22, 1.2, 0.36, 1);
    transform: translateZ(0);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-45px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content h2 {
    color: #10243d;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
}

.modal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.8));
    border-radius: 2px;
}

.modal-content .close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: all 0.25s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(230, 235, 240, 0.8);
    border: 1px solid rgba(200, 210, 220, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1001;
    pointer-events: auto;
}

.modal-content .close:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.85);
    transform: rotate(90deg);
}

.modal-content input {
    width: 100%;
    padding: 1.15rem 0.75rem 0.75rem;
    margin-bottom: 1.25rem;
    border: none;
    border-bottom: 2px solid #e0e5eb;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    color: #333;
    box-shadow: none;
}

.modal-content input:focus {
    outline: none;
    border-bottom-color: #2563eb;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}

.modal-content input::placeholder {
    color: #999;
    font-weight: 400;
}

.whatsapp-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    background: transparent;
    padding: 0;
    border: none;
}

.whatsapp-group input[type="tel"] {
    flex: 1;
    padding: 1.15rem 0.75rem 0.75rem;
    margin-bottom: 0;
    border: none;
    border-bottom: 2px solid #e0e5eb;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    color: #333;
    box-shadow: none;
}

.whatsapp-group input[type="tel"]:focus {
    outline: none;
    border-bottom-color: #2563eb;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}

.whatsapp-group label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    color: #333;
}

.whatsapp-group input[type="checkbox"] {
    display: none;
}

/* Radio Disks for WhatsApp */
.radio-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
}

.radio-label:hover {
    color: var(--secondary-color);
}

.radio-label input[type="radio"] {
    display: none;
    position: absolute;
    opacity: 0;
}

.radio-disk {
    width: 22px;
    height: 22px;
    border: 2px solid #c0c8d0;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    background: #f8f9fa;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.radio-label input[type="radio"]:checked+.radio-disk {
    border-color: #2563eb;
    background: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2), 0 4px 12px rgba(37, 99, 235, 0.3);
    animation: radioCheck 0.3s ease;
}

.radio-disk::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.25s ease;
}

.radio-label input[type="radio"]:checked+.radio-disk::after {
    transform: translate(-50%, -50%) scale(1);
}

@keyframes radioCheck {
    0% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.radio-label input[type="radio"]:checked~.radio-disk {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

#whatsapp:disabled {
    opacity: 0.6;
    background: #f8f9fa;
    cursor: not-allowed;
}

.whatsapp-group input[type="checkbox"]:checked+label::before {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #ffffff;
    box-shadow:
        0 0 0 5px rgba(37, 99, 235, 0.18),
        0 8px 16px rgba(37, 99, 235, 0.28),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
    animation: checkboxChecked 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes checkboxChecked {
    0% {
        transform: scale(0.92);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1.08);
    }
}

.whatsapp-group input[type="checkbox"]:checked+label::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    animation: checkmarkAppear 0.25s cubic-bezier(0.22, 1.2, 0.36, 1);
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.3) rotate(-20deg);
    }

    60% {
        opacity: 1;
        transform: translateY(-50%) scale(1.15) rotate(5deg);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1) rotate(0deg);
    }
}

.whatsapp-group input[type="checkbox"]:checked+label {
    font-weight: 700;
    color: #2563eb;
    text-shadow: none;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #142b4d 0%, #1f4068 50%, #3267a0 100%);
    color: #ffffff;
    border: none;
    padding: 1.15rem 2rem;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 28px rgba(22, 50, 91, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(52, 152, 219, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Stylish Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8fcff 0%, #f0f8ff 50%, #f4faff 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}


.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.contact-info {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
    border: 3px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}



.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
}

.contact-item a,
.contact-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}


.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}


.contact-item:nth-child(1) i {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), rgba(231, 76, 60, 0.15));
}

.contact-item:nth-child(2) i {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(52, 152, 219, 0.15));
}

.contact-item:nth-child(3) i {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(52, 152, 219, 0.15));
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-section h2 {
        font-size: 2.2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 2rem 1.5rem;
    }

    .contact-item i {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }
}


/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section:last-child {
    border-right: none;
    padding-right: 0;
}

@media (max-width: 768px) {
    .footer-section {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-section:last-child {
        border-bottom: none;
    }
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 1;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.contact-email,
.footer-email,
.footer-phone {
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
}

.contact-email:hover,
.footer-email:hover,
.footer-phone:hover {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 3px;
    transform: translateX(3px);
    text-shadow: 0 1px 2px rgba(37, 99, 235, 0.3);
}

.footer-section p:hover {
    opacity: 1;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

#currentTime {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    overflow-y: auto;
    /* color: #333; */
    display: block;
    visibility: visible;
    scroll-behavior: smooth;
}

.schedule-section .schedule-content::-webkit-scrollbar {
    width: 6px;
}

.schedule-section .schedule-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.schedule-section .schedule-content::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.schedule-section .schedule-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Tourism Slider */
.tourism-section {
    background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 50%, #f0f7ff 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.tourism-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.tourism-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.tourism-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.tourism-section h2 {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Simple Tourism Slider - Left Photo Right Info */
.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 460px;
}

.tourism-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.tourism-marquee {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.tourism-marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
    gap: 2rem;
    width: max-content;
}

.tourism-marquee-item {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 420px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.tourism-marquee:hover .tourism-marquee-track {
    animation-play-state: paused;
}

.tourism-marquee-track:hover .tourism-marquee-item {
    transform: scale(1.02);
}


.tourism-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tourism-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Simple Tourism Slider - Left Photo Right Info */
.tourism-section .slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 460px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
}

.tourism-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tourism-card {
    min-width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 420px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card-image {
    flex: 0 0 50%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tourism-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.explore-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    color: var(--primary-color);
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .tourism-card {
        flex-direction: column;
        min-height: 380px;
    }

    .card-image {
        flex: none;
        height: 220px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

.tourism-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
}

.tourism-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
    padding: 2rem 3rem;
    width: calc(100% * 6 / 3 + 4.5rem);
    /* For 3 visible, infinite padding later */
}

.tourism-card {
    min-width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 420px;
    transition: all 0.3s ease;
}

.tourism-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 10;
    color: var(--primary-color);
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.card-image {
    flex: 0 0 50%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tourism-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.explore-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .tourism-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }

    .tourism-slider-track {
        width: calc(100% * 6 / 2 + 3rem);
    }
}

@media (max-width: 768px) {
    .tourism-card {
        flex: 0 0 100%;
        min-width: 100%;
        height: 380px;
    }

    .tourism-slider-track {
        width: calc(100% * 6 + 4rem);
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .card-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .tourism-slider-track {
        padding: 1rem 2rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }
}



.tourism-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.tourism-card {
    min-width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.card-image {
    flex: 0 0 50%;
    min-width: 50%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: white;
}

/* Notification Section */
.notification-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.pdf-section h3,
.schedule-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdf-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.pdf-item:hover {
    transform: translateX(10px);
}

.schedule-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    color: #333;
    line-height: 1.6;
    display: block;
    visibility: visible;
}

.schedule-item strong {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-right: 0.5rem;
}

/* Hotels Section */
.hotels-section {
    background: var(--light-bg);
    max-width: 100%;
    padding: 5rem 2rem;
}

.hotels-section h2 {
    max-width: 1200px;
    margin: 0 auto 4rem;
}


.hotels-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hotel-card img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    background: #ddd center/cover no-repeat;
}

.hotel-info {
    padding: 1.5rem;
}

.hotel-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.book-btn {
    margin-top: 0.75rem;
    padding: 0.65rem 1.2rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}


/* Fee Section */
.fee-section {
    background: white;
}

.fee-table-container {
    overflow-x: auto;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.fee-table th,
.fee-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.fee-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.fee-table tbody tr:hover {
    background: var(--light-bg);
}

.registration-note {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #fff8f3;
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.registration-note h3 {
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-size: 1.15rem;
    font-weight: 800;
}

.registration-note ul {
    margin: 0;
    padding-left: 1.25rem;
}

.registration-note li {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.registration-note li:last-child {
    margin-bottom: 0;
}

/* Payment Section */
.payment-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef5ff 50%, #f0f7ff 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}


.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.payment-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.payment-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.payment-cards {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.payment-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.payment-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.payment-card:hover::before {
    transform: scaleX(1);
}

.payment-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-card .price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}


.payment-section h2 {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.payment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.payment-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.payment-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.payment-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pay-btn {
    background: linear-gradient(45deg, var(--accent-color), #c0392b);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.pay-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

/* Canteen Section */
.canteen-section {
    background: linear-gradient(135deg, #fffaf3 0%, #f7fbff 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.canteen-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.canteen-heading {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}

.canteen-heading span {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.canteen-heading h2 {
    margin-bottom: 1rem;
    font-size: 2.7rem;
    color: var(--primary-color);
}

.canteen-heading p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.canteen-card {
    min-height: 255px;
    background: #fff;
    border: 1px solid #f0e1d5;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.canteen-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 90, 17, 0.35);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.12);
}

.canteen-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff1e6;
    color: var(--accent-color);
    font-size: 1.35rem;
}

.canteen-card h3 {
    margin-bottom: 0.45rem;
    color: var(--primary-color);
    font-size: 1.35rem;
}

.canteen-time {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.9rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #f3f6fb;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 700;
}

.canteen-card p:last-child {
    color: #555;
    line-height: 1.6;
}

.canteen-actions {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.canteen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 160px;
    padding: 0.95rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.canteen-btn-primary {
    background: linear-gradient(45deg, var(--accent-color), #c0392b);
    color: #fff;
    box-shadow: 0 8px 22px rgba(192, 57, 43, 0.28);
}

.canteen-btn-secondary {
    background: #111827;
    color: #fff;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.2);
}

.canteen-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

@media screen and (max-width: 768px) {
    .canteen-section {
        padding: 4rem 1.25rem;
    }

    .canteen-heading h2 {
        font-size: 2rem;
    }

    .canteen-heading p {
        font-size: 1rem;
    }

    .menu-container {
        grid-template-columns: 1fr;
    }

    .canteen-card {
        min-height: auto;
    }

    .canteen-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .canteen-btn {
        width: 100%;
    }
}

body.modal-open {
    overflow: hidden;
}

/* Modal */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.35s ease;
    padding: 1rem;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(16px);
    }
}

.modal[style*="display: flex"] {
    display: flex !important;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.4rem 2rem 2rem;
    border-radius: 32px;
    max-width: 460px;
    width: 100%;
    position: relative;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(200, 210, 220, 0.5);
    backdrop-filter: blur(8px);
    animation: modalSlideIn 0.45s cubic-bezier(0.22, 1.2, 0.36, 1);
    transform: translateZ(0);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-45px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content h2 {
    color: #10243d;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
}

.modal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.8));
    border-radius: 2px;
}

.modal-content .close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: all 0.25s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(230, 235, 240, 0.8);
    border: 1px solid rgba(200, 210, 220, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1001;
    pointer-events: auto;
}

.modal-content .close:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.85);
    transform: rotate(90deg);
}

.modal-content input {
    width: 100%;
    padding: 1.15rem 0.75rem 0.75rem;
    margin-bottom: 1.25rem;
    border: none;
    border-bottom: 2px solid #e0e5eb;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    color: #333;
    box-shadow: none;
}

.modal-content input:focus {
    outline: none;
    border-bottom-color: #2563eb;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}

.modal-content input::placeholder {
    color: #999;
    font-weight: 400;
}

.whatsapp-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    background: transparent;
    padding: 0;
    border: none;
}

.whatsapp-group input[type="tel"] {
    flex: 1;
    padding: 1.15rem 0.75rem 0.75rem;
    margin-bottom: 0;
    border: none;
    border-bottom: 2px solid #e0e5eb;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    color: #333;
    box-shadow: none;
}

.whatsapp-group input[type="tel"]:focus {
    outline: none;
    border-bottom-color: #2563eb;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}

.whatsapp-group label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    color: #333;
}

.whatsapp-group input[type="checkbox"] {
    display: none;
}

/* Radio Disks for WhatsApp */
.radio-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
}

.radio-label:hover {
    color: var(--secondary-color);
}

.radio-label input[type="radio"] {
    display: none;
    position: absolute;
    opacity: 0;
}

.radio-disk {
    width: 22px;
    height: 22px;
    border: 2px solid #c0c8d0;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    background: #f8f9fa;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}

.radio-label input[type="radio"]:checked+.radio-disk {
    border-color: #2563eb;
    background: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2), 0 4px 12px rgba(37, 99, 235, 0.3);
    animation: radioCheck 0.3s ease;
}

.radio-disk::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.25s ease;
}

.radio-label input[type="radio"]:checked+.radio-disk::after {
    transform: translate(-50%, -50%) scale(1);
}

@keyframes radioCheck {
    0% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.radio-label input[type="radio"]:checked~.radio-disk {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

#whatsapp:disabled {
    opacity: 0.6;
    background: #f8f9fa;
    cursor: not-allowed;
}

.whatsapp-group input[type="checkbox"]:checked+label::before {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #ffffff;
    box-shadow:
        0 0 0 5px rgba(37, 99, 235, 0.18),
        0 8px 16px rgba(37, 99, 235, 0.28),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
    animation: checkboxChecked 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes checkboxChecked {
    0% {
        transform: scale(0.92);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1.08);
    }
}

.whatsapp-group input[type="checkbox"]:checked+label::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    animation: checkmarkAppear 0.25s cubic-bezier(0.22, 1.2, 0.36, 1);
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.3) rotate(-20deg);
    }

    60% {
        opacity: 1;
        transform: translateY(-50%) scale(1.15) rotate(5deg);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1) rotate(0deg);
    }
}

.whatsapp-group input[type="checkbox"]:checked+label {
    font-weight: 700;
    color: #2563eb;
    text-shadow: none;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #142b4d 0%, #1f4068 50%, #3267a0 100%);
    color: #ffffff;
    border: none;
    padding: 1.15rem 2rem;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 28px rgba(22, 50, 91, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(52, 152, 219, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Stylish Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8fcff 0%, #f0f8ff 50%, #f4faff 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}


.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.contact-info {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
    border: 3px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}



.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
}

.contact-item a,
.contact-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}


.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}


.contact-item:nth-child(1) i {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), rgba(231, 76, 60, 0.15));
}

.contact-item:nth-child(2) i {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(52, 152, 219, 0.15));
}

.contact-item:nth-child(3) i {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(52, 152, 219, 0.15));
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-section h2 {
        font-size: 2.2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 2rem 1.5rem;
    }

    .contact-item i {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }
}


/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section:last-child {
    border-right: none;
    padding-right: 0;
}

@media (max-width: 768px) {
    .footer-section {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-section:last-child {
        border-bottom: none;
    }
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.footer-section p:hover {
    opacity: 1;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

#currentTime {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}


.copyright-container {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Brochure fullscreen viewer safety override */
body>.image-viewer {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

body>.image-viewer.active {
    display: flex !important;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

body>.image-viewer .image-viewer-img {
    display: block;
}
