html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.section {
    padding: 50px 0;
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    color:white;
    text-align:center;
}
.section h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-primary {
    background: var(--primary-color);
    border:none;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    margin-right: 5px;
}

.top-bar-right a {
    color: #fff;
    margin-left: 15px;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.top-bar-right a:hover {
    opacity: 0.7;
}

.admin-login-link {
    background: #fff;
    color: var(--primary-color) !important;
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.admin-login-link i {
    font-size: 0.85rem;
    margin-right: 8px;
}

.admin-login-link:hover {
    background: #f8fafc;
    color: var(--secondary-color) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.5);
}

/* ===== BRAND SECTION ===== */
.brand-section {
    background: #fff;
    padding: 20px 0 10px;
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.brand-link:hover {
    color: inherit;
}

.brand-logo {
    margin-bottom: 5px;
}

.brand-name {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 5px 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
}

.brand-tagline {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .brand-tagline {
        font-size: 0.9rem;
    }
}

/* ===== MAIN NAVIGATION ===== */
.main-nav {
    background: var(--secondary-color);
    padding: 0;
    z-index: 1030;
}

.main-nav .navbar-toggler {
    border: none;
    padding: 10px 15px;
}

.main-nav .navbar-collapse {
    justify-content: center;
}

.main-nav .navbar-nav {
    display: flex;
    justify-content: center;
}

.main-nav .nav-link {
    color: var(--nav-text-color) !important;
    font-size: 0.95rem;
    padding: 14px 20px !important;
    transition: background 0.3s;
    font-weight: 500;
}

@media (max-width: 991px) {
    .main-nav .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav .nav-link.active {
        border-bottom: none;
        border-left: 4px solid #fff;
    }
}

.main-nav .nav-link:hover {
    background: rgba(0,0,0,0.15);
}

.main-nav .nav-link.active {
    background: rgba(0,0,0,0.2);
    font-weight: 700;
    border-bottom: 3px solid #fff;
}

.carousel-fade .carousel-item {
    transition: opacity 1s ease-in-out;
}
.hero-content.text-left {
    text-align: left;
}

.hero-content.text-right {
    text-align: right;
}

/* Highlights Section */
.highlights-section {
    background: #fff;
    padding: 50px 0;
}

.highlight-box {
    padding: 30px 25px;
    color: white;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

/* Colored overlay */
.highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.80;
    border-radius: 10px;
    z-index: 1;
}

.highlight-red .highlight-overlay {
    background-color: #d32f2f;
}

.highlight-green .highlight-overlay {
    background-color: #388e3c;
}

.highlight-blue .highlight-overlay {
    background-color: #1565c0;
}

.highlight-content {
    position: relative;
    z-index: 2;
}

.highlight-content h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.highlight-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== INFO CARDS (About & Announcements) ===== */
.info-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    overflow: hidden;
    height: 100%;
}

.info-card-header {
    padding: 15px 20px;
    text-align: center;
}

.info-card-header h4 {
    color: #fff;
    margin: 0;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card-body {
    padding: 20px 25px;
}

.info-card-body img {
    width: 100%;
    border-radius: 4px;
}

.info-card-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}

/* Announcement List */
.announcement-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.announcement-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.announcement-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: underline;
}

.announcement-title:hover {
    color: var(--secondary-color);
}

.announcement-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 6px 0 0;
    line-height: 1.6;
}

/* Announcement Auto-Scroll */
.announcement-scroll-wrapper {
    height: 380px;
    overflow: hidden;
    padding: 20px 25px;
}

.announcement-scroll-wrapper:hover {
    overflow-y: auto;
}

/* Hide scrollbar */
.announcement-scroll-wrapper::-webkit-scrollbar {
    width: 4px;
}

.announcement-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.feature-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: #333;
    padding: 15px 15px 0;
    margin: 0;
}

.feature-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    padding: 10px 15px 15px;
    margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.cta-banner:hover .cta-bg {
    transform: scale(1.05);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-content h2 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 30px;
}

.btn-cta-outline {
    display: inline-block;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-cta-outline:hover {
    background: #fff;
    color: #333;
}

/* LIMITED SEATS Ribbon */
.cta-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    z-index: 3;
    width: 160px;
    text-align: center;
    transform: rotate(45deg);
}

.cta-ribbon span {
    display: block;
    background: #43a047;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 0;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ===== ANIMATED COUNTERS ===== */
.counter-section {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0;
}

.counter-item {
    margin-bottom: 20px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ===== FLOATING ENQUIRY BUTTON ===== */
.enquiry-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.enquiry-float-btn:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}

/* ===== ENQUIRY MODAL (formerly Sidebar) ===== */
.enquiry-sidebar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 450px;
    height: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 1050;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.enquiry-sidebar.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.enquiry-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.enquiry-sidebar-header h5 {
    margin: 0;
    font-weight: 700;
    color: var(--primary-color);
}

.enquiry-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.enquiry-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.enquiry-backdrop.open {
    display: block;
    opacity: 1;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: #666;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #333;
}

/* ===== GLOBAL THEME UTILITY OVERRIDES ===== */
.bg-success, .bg-danger, .bg-primary, .bg-warning {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.text-success, .text-danger, .text-primary, .text-warning {
    color: var(--primary-color) !important;
}

.btn-success, .btn-danger, .btn-primary, .btn-warning {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

.btn-success:hover, .btn-danger:hover, .btn-primary:hover, .btn-warning:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
}

.btn-outline-success, .btn-outline-primary, .btn-outline-danger {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.btn-outline-success:hover, .btn-outline-primary:hover, .btn-outline-danger:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.badge.bg-success, .badge.bg-danger, .badge.bg-primary, .badge.bg-warning {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}

.info-card-header.bg-danger, .info-card-header.bg-success {
    background-color: var(--primary-color) !important;
}