/* =====================
   Global Shared Styles
===================== */
:root {
    --primary-color: #8B1538;
    --primary-hover: #6B1028;
    --secondary-color: #A91B47;
    --accent-color: #C8102E;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --text-muted: #6C757D;
    --bg-light: #F8F9FA;
    --border-color: #E9ECEF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* fixed container */
.whatsapp-fab {
    position: fixed;
    bottom: 21px;
    right: 14px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* the icon itself */
.whatsapp-fab img {
    width: 52px;
    /* same as the container so it sits flush */
    height: 52px;
    position: relative;
    z-index: 2;
    /* keeps it on top of the ripples */
}

/* ripples – unchanged except they pick up the new container size */
.whatsapp-fab .ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0;
    background: #4aae20;
    animation: ripple 1.8s infinite;
}

.whatsapp-fab .ripple:nth-child(2) {
    animation-delay: 0.3s;
}

.whatsapp-fab .ripple:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.blogDiv .blog-post {
    height: 100%;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-post .read-more:hover {
    color: var(--primary-hover);
}

.blog-post .post-content {
    padding: 1.5rem;
}

.blog-post .post-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-post .post-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.blog-post .post-excerpt {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.page-link {
    color: var(--primary-color);
    border-color: var(--border-color);
}

.page-link:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* =====================
   Index Page
===================== */


/* Hero Section */
.indexPage .hero-section {
    position: relative;
    /* anchor ::before inside this section */

    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
}


.indexPage .hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.indexPage .hero-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.indexPage .search-form {
    background: white;
    /* 28/11/2025 JM changes */
    padding: 20px;
    /* eof 28/11/2025 JM changes */
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* 28/11/2025 JM changes */
    max-width: 100%;
    /* eof 28/11/2025 JM changes */

    margin: 0 auto;

}

.indexPage .search-form .form-control {
    border: none;
    padding: 1rem;
    font-size: 1rem;
}

.indexPage .search-form .btn {
    padding: 0.5rem 2rem;
    border-radius: 25px;
}

/* Section Styles */
.indexPage .section-padding {
    padding: 5rem 0;
}

.indexPage .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.indexPage .section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.indexPage .section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Category Cards */
.indexPage .category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.indexPage .category-card:hover {
    transform: translateY(-10px);
}

.indexPage .category-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.indexPage .category-card h4 {
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Venue Cards */
.indexPage .venue-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.indexPage .venue-card:hover {
    transform: translateY(-5px);
}

.indexPage .venue-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.indexPage .venue-card-body {
    padding: 1.5rem;
}

.indexPage .venue-card h5 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.indexPage .venue-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.indexPage .venue-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.indexPage .amenity-tag {
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.indexPage .venue-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.indexPage .btn-outline-primary {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

/* Blog Cards */
.indexPage .blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.indexPage .blog-card:hover {
    transform: translateY(-5px);
}

.indexPage .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.indexPage .blog-card-body {
    padding: 1.5rem;
}

/* Features Section */
.indexPage .features-section {
    background: var(--bg-light);
}

.indexPage .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.indexPage .feature-item i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Contact Section */
.indexPage .contact-section {
    background: white;
}

.indexPage .contact-form .form-control {
    border: 2px solid #e9ecef;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.indexPage .contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.25);
}


/* Responsive */
@media (max-width: 768px) {
    .indexPage .hero-section h1 {
        font-size: 2rem;
    }

    .indexPage .search-form {
        padding: 1rem;
    }

    .indexPage .section-title h2 {
        font-size: 2rem;
    }
}

.indexPage .sv-icon {
    color: var(--primary-color);
}

.indexPage .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}


/* =====================
   About Page
===================== */
.aboutPage .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.aboutPage .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.aboutPage .hero-content {
    position: relative;
    z-index: 2;
}

.aboutPage .section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.aboutPage .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.aboutPage .story-section {
    padding: 80px 0;
    background: white;
}

.aboutPage .mission-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.aboutPage .team-section {
    padding: 80px 0;
    background: white;
}

.aboutPage .values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.aboutPage .stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.aboutPage .stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.aboutPage .stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.aboutPage .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.aboutPage .team-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.aboutPage .team-card:hover {
    transform: translateY(-10px);
}

.aboutPage .team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.aboutPage .value-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.aboutPage .value-card:hover {
    transform: translateY(-5px);
}

.aboutPage .value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.aboutPage .timeline {
    position: relative;
    padding: 2rem 0;
}

.aboutPage .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.aboutPage .timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.aboutPage .timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.aboutPage .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.aboutPage .timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.aboutPage .timeline-year {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    z-index: 2;
}


@media (max-width: 768px) {
    .aboutPage .timeline::before {
        left: 20px;
    }

    .aboutPage .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .aboutPage .timeline-year {
        left: 20px;
    }

    .aboutPage .hero-section {
        padding: 60px 0;
    }

    .aboutPage .stat-number {
        font-size: 2rem;
    }
}

.aboutPage .wcu {
    background: var(--primary-color);
}

/* =====================
   Article Page
===================== */
.articlePage .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.articlePage .hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.articlePage .hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.articlePage .blog-categories {
    padding: 3rem 0;
    background: var(--bg-light);
}

.articlePage .category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.articlePage .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.articlePage .category-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.articlePage .featured-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.articlePage .featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.articlePage .featured-post img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.articlePage .sidebar {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.articlePage .sidebar h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.articlePage .recent-post {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.articlePage .recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.articlePage .recent-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.articlePage .recent-post-content h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.articlePage .recent-post-content small {
    color: var(--text-muted);
}

.articlePage .tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.articlePage .tag:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .articlePage .hero-section h1 {
        font-size: 2rem;
    }

    .articlePage .hero-section p {
        font-size: 1rem;
    }
}


.articlePage .sub-title {
    color: var(--primary-color);

}

/* =====================
   Article Detail Page
===================== */
/* Hero Section */
.articleDetailPage .hero-section {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.9), rgba(169, 29, 66, 0.9)),
        url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    padding: 8rem 0 4rem;
    color: white;
    position: relative;
}

.articleDetailPage .hero-content {
    position: relative;
    z-index: 2;
}

.articleDetailPage .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.articleDetailPage .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.articleDetailPage .breadcrumb-item.active {
    color: white;
}

.articleDetailPage .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}


.articleDetailPage .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Article Content */
.articleDetailPage .article-content {
    padding: 4rem 0;
}

.articleDetailPage .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.articleDetailPage .article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.articleDetailPage .article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.articleDetailPage .article-text h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    font-size: 2rem;
}

.articleDetailPage .article-text h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.articleDetailPage .highlight-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 5px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Social Share */
.articleDetailPage .social-share {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
    text-align: center;
}

.articleDetailPage .social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.articleDetailPage .social-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.articleDetailPage .social-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.articleDetailPage .social-btn.facebook {
    background: #3b5998;
}

.articleDetailPage .social-btn.twitter {
    background: #1da1f2;
}

.articleDetailPage .social-btn.linkedin {
    background: #0077b5;
}

.articleDetailPage .social-btn.whatsapp {
    background: #25d366;
}

/* Sidebar */
.articleDetailPage .sidebar {
    padding-left: 2rem;
}

.articleDetailPage .sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.articleDetailPage .widget-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.articleDetailPage .related-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.articleDetailPage .related-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.articleDetailPage .related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.articleDetailPage .related-post-content h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.articleDetailPage .related-post-content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.articleDetailPage .related-post-content a:hover {
    color: var(--primary-color);
}

.articleDetailPage .post-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Tags */
.articleDetailPage .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.articleDetailPage .tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.articleDetailPage .tag:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .articleDetailPage .hero-title {
        font-size: 2rem;
    }


    .articleDetailPage .sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }

    .articleDetailPage .social-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* =====================
   Banquet Page
===================== */

.banquetPage .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6d1028 100%);
    color: white;
    padding: 113px 0 0;
}

.banquetPage .filter-section {
    background-color: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #dee2e6;
}

.banquetPage .venue-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}

.banquetPage .venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.banquetPage .venue-image {
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.banquetPage .price-tag {
    background-color: white;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.banquetPage .price-tag small.text-muted {
    font-weight: 400;
}

.banquetPage .rating {
    color: #ffc107;
}

.banquetPage .amenity-tag {
    background-color: #e9ecef;
    color: var(--text-dark);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin: 2px;
    display: inline-block;
}

.banquetPage .filter-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banquetPage .form-select,
.form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.banquetPage .form-select:focus,
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.25);
}

.banquetPage .results-header {
    color: var(--primary-color);
    font-weight: 600;
}

.banquetPage .sponsored-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: gold;
    color: #333;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* =====================
   Banquet Detail Page
===================== */

.banquetDetailPage .hero-section {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.banquetDetailPage .venue-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.banquetDetailPage .venue-location {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.banquetDetailPage .rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.banquetDetailPage .gallery-section {
    padding: 4rem 0;
}

.banquetDetailPage .gallery-main {
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.banquetDetailPage .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banquetDetailPage .gallery-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.banquetDetailPage .thumbnail {
    min-width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.banquetDetailPage .thumbnail.active {
    border-color: var(--primary-color);
}

.banquetDetailPage .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banquetDetailPage .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}



.banquetDetailPage .amenity-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.banquetDetailPage .amenity-card:hover {
    transform: translateY(-5px);
}

.banquetDetailPage .amenity-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.banquetDetailPage .pricing-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.banquetDetailPage .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.banquetDetailPage .review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.banquetDetailPage .reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.banquetDetailPage .reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.banquetDetailPage .similar-venue-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.banquetDetailPage .similar-venue-card:hover {
    transform: translateY(-5px);
}

.banquetDetailPage .similar-venue-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.banquetDetailPage .modal-header {
    background: var(--primary-color);
    color: white;
}

.banquetDetailPage .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.25);
}

.banquetDetailPage .quick-info {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.banquetDetailPage .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.banquetDetailPage .info-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

.banquetDetailPage .card-header {
    background-color: var(--primary-color);
}

.banquetDetailPage .bg-primary {
    background-color: var(--primary-color) !important;
}

/* =====================
   Contact Page
===================== */

/* =====================
   Contact Page
===================== */

/* =====================
   Contact Page
===================== */
.sponsored-badge-home {
    position: absolute;
    top: 10px;
    right: 10px;
    background: gold;
    color: #333;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
