/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Caveat:wght@400..700&family=Mandali&display=swap');

/* CSS Variables - Phoenix Bowl Brand Colors */
:root {
    --primary-red: #ed1d24;
    --primary-orange: #f47022;
    --light-orange: #f8971d;
    --primary-yellow: #ffc20e;
    --white: #ffffff;
    --dark-text: #222222;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    
    /* Font Families */
    --font-main: 'Fredoka', sans-serif;
    --font-script: 'Caveat', cursive;
    --font-secondary: 'Mandali', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--white);
    background: black;
    line-height: 1.6;
    overflow-x: hidden;
}

b, strong {
  font-weight: 500;
}

/* Add padding to body to account for mobile bottom menu */
@media (max-width: 991px) {
    body {
        padding-bottom: 70px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 500;
    margin-bottom: 1rem;
}

.pre-heading {
    font-family: var(--font-script);
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 29, 36, 0.3);
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
}

.btn-secondary {
  background: var(--primary-yellow);
  border: none;
  color: black;
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

/* Header Styles */
.site-header {
    background: black;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Top Bar */
.header-top {
    background: linear-gradient(-135deg, var(--primary-red), var(--primary-orange));
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 50px;
}

@media(max-width:767px){
    .header-top {
        font-size: 0.7rem;
    }
}

.site-header.scrolled .header-top {
    max-height: 0;
    padding: 0;
}

.header-top a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-top a:hover {
    opacity: 0.8;
}

.header-top .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}
@media(max-width:767px){
    .header-top .social-links a {
      width: 20px;
      height: 20px;
      margin-left: 2px;
    }
}

.header-top .social-links a:hover {
    background: white;
    color: var(--primary-red);
}

/* Main Header */
.header-main {
    padding: 20px 0;
    transition: padding 0.3s ease;
}
@media(max-width:767px){
    .header-main {
        padding: 0;
    }
}
.site-header.scrolled .header-main {
    padding: 10px 0;
}

.navbar-brand img {
    height: 60px;
    transition: height 0.3s ease;
}

.site-header.scrolled .navbar-brand img {
    height: 45px;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-align: center;
}

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

.navbar-toggler {
    border: 2px solid var(--primary-red);
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 0;
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Bottom Menu */
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 3px solid var(--primary-red);
    border-top: 1px solid white;
}

.mobile-bottom-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    background: transparent;
    text-decoration: none;
    color: var(--white);
    border-right: 1px solid #fff;
}

.mobile-bottom-menu .col-3:last-child .menu-item {
    border-right: none;
}

.mobile-bottom-menu .col-4:last-child .menu-item {
    border-right: none;
}

.mobile-bottom-menu .menu-item:hover,
.mobile-bottom-menu .menu-item:active {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
}

.mobile-bottom-menu .menu-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.mobile-bottom-menu .menu-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Hero Image Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 10rem);
    overflow: hidden;
}

@media(max-width:767px){
    .hero-slider-section {
        height: calc(100vh - 18rem);
    }
}

.hero-slider-section .carousel {
    height: 100%;
}

.hero-slider-section .carousel-inner,
.hero-slider-section .carousel-item {
    height: 100%;
}

.hero-slider-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-slider-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1200px;
    bottom: auto;
    right: auto;
}

.hero-slider-section .carousel-caption .pre-heading {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--primary-yellow);
}

.hero-slider-section .carousel-caption h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.hero-slider-section .carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-slider-section .carousel-indicators {
    z-index: 3;
}

.hero-slider-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
    border: none;
}

.hero-slider-section .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-yellow);
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    background: black;
}

.welcome-section .pre-heading {
    text-align: center;
}

.welcome-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.welcome-section p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .parallax-section {
        height: 300px;
        background-attachment: scroll;
    }
}

/* What We Offer Section */
.offer-grid-section {
    padding: 80px 0;
    background: black;
}

.offer-grid-section .pre-heading {
    text-align: center;
}

.offer-grid-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.offer-card {
    background: var(--dark-text);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: var(--dark-text);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.2);
    color: var(--dark-text);
}

.offer-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-card-image img {
    transform: scale(1.05);
}

.offer-card-content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.offer-card p {
    color: var(--white);
    margin-bottom: 0;
}

/* Offers Section */
.offers-section {
    padding: 80px 0;
    background: white;
}

.offers-section .pre-heading {
    text-align: center;
}

.offers-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-red);
}

/* Desktop Offers - Static Grid */
.offers-desktop {
    margin-bottom: 0;
}

/* Mobile Offers - Carousel with Arrows */
.mobile-offers-carousel {
    position: relative;
    padding: 0 60px;
}

.mobile-offers-wrapper {
    overflow: hidden;
    width: 100%;
}

.mobile-offers-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.mobile-offer-card {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

/* Mobile Carousel Dots */
.mobile-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.mobile-carousel-dots .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.mobile-carousel-dots .carousel-dot.active {
    background: var(--primary-red);
    width: 30px;
    border-radius: 6px;
}

/* Offer Card Styles (Shared) */
.offer-carousel-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.2);
}

.offer-carousel-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.offer-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-carousel-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-badge {
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 0;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.75rem;
    align-self: flex-start;
}

.offer-carousel-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.offer-carousel-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.offer-carousel-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.offer-carousel-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.offer-price {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.offer-code-box {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 0;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-yellow);
}

.code-label {
    display: block;
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 5px;
}

.code-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-red);
    letter-spacing: 1px;
}

/* Opening Times Section */
.times-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
}

.times-section .pre-heading {
    text-align: center;
    color: var(--primary-yellow);
}

.times-section h2 {
    text-align: center;
    font-weight: 500;
    color: white;
    margin-bottom: 3rem;
}

.times-box,
.location-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 40px;
}

.times-box h3,
.location-box h3 {
    color: white;
}

.time-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.time-row:last-child {
    border-bottom: none;
}

.time-row .day {
    font-weight: 500;
}

.time-row .hours {
}

.location-box p {
    margin-bottom: 15px;
}

.location-box i {
    margin-right: 10px;
    color: var(--primary-yellow);
}

.location-box a {
    color: white;
    text-decoration: none;
}

.location-box a:hover {
    color: var(--primary-yellow);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: black
}

.testimonials-section .pre-heading {
    text-align: center;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--dark-text);
    border-radius: 0;
    padding: 40px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.1);
}

.stars {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 500;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-source {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* CTA Section with Background Image */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 29, 36, 0.85), rgba(244, 112, 34, 0.85), rgba(255, 194, 14, 0.85));
    z-index: 2;
    mix-blend-mode: multiply;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.cta-section .btn {
    margin: 0 10px;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary-red);
    border: none;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-red);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: var(--dark-text);
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 15px 20px;
    border-radius: 0;
    border: none;
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 15px 30px;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.site-footer h4 {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.site-footer p {
    color: #ccc;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary-yellow);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-yellow);
    width: 20px;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Page Header Section */
.page-header-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:767px){
    .page-header-section {
        height: 300px;
    }
}

.page-header-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.page-header-content .pre-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.page-header-content h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.page-header-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* About Intro Section */
.about-intro-section {
    padding: 100px 0;
    background: black;
}

.about-image-grid img {
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Ownership Section */
.ownership-section {
    padding: 100px 0;
    background: var(--dark-text);
}

.ownership-story-card {
    background: black;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-red);
}

.ownership-story-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.retirement-notice {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    padding: 40px;
    border-radius: 0;
    margin-top: 3rem;
}

.retirement-notice h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.retirement-notice p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Services Section */
.about-services-section {
    padding: 100px 0;
    background: white;
}

.service-card {
    background: var(--light-gray);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 0;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-orange);
    gap: 12px;
}

/* Future Plans Section */
.future-plans-section {
    padding: 100px 0;
    background: black;
}

.future-plan-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.plan-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.plan-content h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.plan-content p {
    color: var(--light-gray);
    margin-bottom: 0;
}

/* Heritage Section */
.heritage-section {
    padding: 100px 0;
    background: var(--dark-text);
}

.timeline-content {
    position: relative;
}

.heritage-milestone {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.milestone-year {
    flex-shrink: 0;
    width: 120px;
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-red);
    font-family: var(--font-script);
}

.milestone-content {
    flex-grow: 1;
    padding: 30px;
    background: black;
    border-radius: 0;
    border-left: 5px solid var(--primary-yellow);
}

.milestone-content h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.milestone-content p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Support Section */
.support-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
}

.support-card {
    background: white;
    padding: 50px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.support-card .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-red);
}

.support-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

/* About Location Section */
.about-location-section {
    padding: 100px 0;
    background: black;
}

.location-details {
    margin: 30px 0;
}

.location-details p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.location-details i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 1.3rem;
}

.location-details a {
    color: var(--primary-red);
    text-decoration: none;
}

.location-details a:hover {
    color: var(--primary-orange);
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* ===== BOWLING, GAMES & FOOD PAGES STYLES ===== */

/* Content Intro Section (Reusable) */
.content-intro-section {
    padding: 100px 0;
    background: black;
}

/* Features Grid Section */
.features-grid-section {
    padding: 100px 0;
    background: var(--dark-text);
}

.feature-card {
    background: black;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border-radius: 0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--white);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Cosmic Bowling Section */
.cosmic-bowling-section {
    padding: 100px 0;
    background: black;
}

.cosmic-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.cosmic-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--white);
}

.cosmic-features li i {
    color: var(--primary-orange);
    margin-right: 10px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.pricing-card {
    background: white;
    padding: 50px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-card h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.pricing-table {
    margin: 30px 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
    align-items: center;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    font-size: 1.1rem;
    color: var(--dark-text);
}

.pricing-value {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-red);
}

/* Perfect For Section */
.perfect-for-section {
    padding: 100px 0;
    background: var(--dark-text);
}

.occasion-card {
    background: black;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.2);
}

.occasion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.occasion-content {
    padding: 30px;
}

.occasion-content h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.occasion-content h3 i {
    margin-right: 10px;
    color: var(--primary-orange);
}

.occasion-content p {
    color: var(--white);
    margin-bottom: 0;
}

/* Bowling Tips Section */
.bowling-tips-section {
    padding: 100px 0;
    background: black;
}

.tip-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.tip-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
}

.tip-content h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.tip-content p {
    color: var(--white);
    margin-bottom: 0;
}

/* Booking CTA Section */
.booking-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
}

.booking-cta-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.booking-cta-section .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Soft Play Section */
.softplay-section {
    padding: 100px 0;
    background: var(--dark-text);
}

.softplay-features .feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.softplay-features .feature-item i {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.softplay-features .feature-item h4 {
    color: var(--primary-red);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.softplay-features .feature-item p {
    color: var(--white);
    margin-bottom: 0;
}

/* Arcade Section */
.arcade-section {
    padding: 100px 0;
    background: white;
}

.arcade-card {
    background: var(--light-gray);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border-radius: 0;
    transition: all 0.3s ease;
}

.arcade-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(237, 29, 36, 0.1);
}

.arcade-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.arcade-card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.arcade-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Pool Section */
.pool-section {
    padding: 100px 0;
    background: black;
}

.pool-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pool-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--white);
}

.pool-features li i {
    color: var(--primary-orange);
    margin-right: 10px;
}

/* Age Groups Section */
.age-groups-section {
    padding: 100px 0;
    background: white;
}

.age-group-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 0;
    height: 100%;
    position: relative;
    padding-top: 80px;
}

.age-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    padding: 8px 25px;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 0;
}

.age-group-card h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
}

.age-group-card ul {
    list-style: none;
    padding: 0;
}

.age-group-card ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--medium-gray);
}

.age-group-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.package-card {
    background: white;
    border-radius: 0;
    padding: 40px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.2);
}

.package-card.featured {
    border: 3px solid var(--primary-red);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--dark-text);
    padding: 5px 20px;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 0;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.package-price {
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-red);
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--medium-gray);
}

.package-features li i {
    color: var(--primary-orange);
    margin-right: 10px;
}

/* Games Info Section */
.games-info-section {
    padding: 100px 0;
    background: white;
}

.info-card {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 0;
    text-align: center;
}

.info-card h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 20px;
}

.info-card p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.info-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Menu Categories Section */
.menu-categories-section {
    padding: 100px 0;
    background: white;
}

.menu-category-card {
    background: var(--light-gray);
    border-radius: 0;
    padding: 30px;
    height: 100%;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-red);
}

.category-header i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.category-header h3 {
    color: var(--primary-red);
    margin-bottom: 0;
    font-size: 1.8rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    background: black;
    padding: 20px;
    border-radius: 0;
}

.item-details h4 {
    color: var(--primary-red);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.item-details p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Party Catering Section */
.party-catering-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.catering-features {
    margin: 30px 0;
}

.catering-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.catering-item i {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.catering-item h4 {
    color: var(--primary-red);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.catering-item p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Meal Deals Section */
.meal-deals-section {
    padding: 100px 0;
    background: white;
}

.deal-card {
    background: var(--light-gray);
    border-radius: 0;
    padding: 40px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.deal-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(237, 29, 36, 0.1);
}

.deal-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 5px 20px;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 0;
}

.deal-card h3 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.deal-contents ul {
    list-style: none;
    padding: 0;
}

.deal-contents ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--medium-gray);
}

.deal-contents ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.deal-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-top: 20px;
}

/* Dietary Section */
.dietary-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.dietary-badge {
    background: white;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    height: 100%;
}

.dietary-badge i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.dietary-badge h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.dietary-badge p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.alert-box {
    background: white;
    border-left: 5px solid var(--primary-yellow);
    padding: 25px;
    border-radius: 0;
}

.alert-box i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-right: 10px;
}

.alert-box p {
    display: inline;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Dining Experience Section */
.dining-experience-section {
    padding: 100px 0;
    background: white;
}

.dining-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.dining-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

.dining-features li i {
    color: var(--primary-orange);
    margin-right: 10px;
    width: 25px;
}

/* Food Info Section */
.food-info-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.info-cards-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.info-mini-card {
    background: white;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.info-mini-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.info-mini-card h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-mini-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-slider-section .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider-section .carousel-caption .pre-heading {
        font-size: 1.8rem;
    }
    
    .hero-slider-section .carousel-caption p {
        font-size: 1.2rem;
    }
    
    .welcome-section h2,
    .offer-grid-section h2,
    .times-section h2,
    .testimonials-section h2,
    .offers-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-slider-section .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .hero-slider-section .carousel-caption .pre-heading {
        font-size: 1.5rem;
    }
    
    .hero-slider-section .carousel-caption p {
        font-size: 1rem;
    }
    
    .hero-slider-section .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        margin: 5px;
    }
    
    .welcome-section,
    .offer-grid-section,
    .times-section,
    .testimonials-section,
    .offers-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-section .btn {
        margin-bottom: 1rem;
    }
    
    .time-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .mobile-offers-carousel {
        padding: 0 50px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* About Page Mobile Styles */
    .page-header-section {
        height: 400px;
    }
    
    .page-header-content .pre-heading {
        font-size: 1.5rem;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .about-intro-section,
    .ownership-section,
    .about-services-section,
    .future-plans-section,
    .heritage-section,
    .support-section,
    .about-location-section {
        padding: 60px 0;
    }
    
    .ownership-story-card,
    .retirement-notice,
    .support-card {
        padding: 30px 20px;
    }
    
    .heritage-milestone {
        flex-direction: column;
        gap: 15px;
    }
    
    .milestone-year {
        width: 100%;
        font-size: 1.5rem;
    }
    
    .milestone-content {
        padding: 20px;
    }
    
    .future-plan-item {
        gap: 15px;
    }
    
    .plan-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Bowling, Games, Food Pages Mobile Styles */
    .content-intro-section,
    .features-grid-section,
    .cosmic-bowling-section,
    .pricing-section,
    .perfect-for-section,
    .bowling-tips-section,
    .booking-cta-section,
    .softplay-section,
    .arcade-section,
    .pool-section,
    .age-groups-section,
    .packages-section,
    .games-info-section,
    .menu-categories-section,
    .party-catering-section,
    .meal-deals-section,
    .dietary-section,
    .dining-experience-section,
    .food-info-section {
        padding: 60px 0;
    }
    
    .pricing-card,
    .info-card,
    .deal-card {
        padding: 30px 20px;
    }
    
    .pricing-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .pricing-value {
        font-size: 1.5rem;
    }
    
    .booking-cta-section h2 {
        font-size: 2rem;
    }
    
    .booking-cta-section .lead {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .tip-item,
    .future-plan-item,
    .catering-item {
        gap: 15px;
    }
    
    .tip-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .age-group-card {
        padding-top: 60px;
    }
    
    .package-price,
    .deal-price {
        font-size: 2rem;
    }
    
    .info-cards-row {
        flex-direction: column;
    }
    
    .info-mini-card {
        max-width: 100%;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-header i {
        font-size: 2rem;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    /* Offers, Kids Parties, Groups Mobile Styles */
    .current-offers-section,
    .redeem-section,
    .offer-categories-section,
    .newsletter-prompt-section,
    .offers-terms-section,
    .why-choose-section,
    .party-packages-section,
    .party-food-section,
    .party-ages-section,
    .how-it-works-section,
    .party-testimonials-section,
    .party-booking-section,
    .event-types-section,
    .why-groups-section,
    .corporate-packages-section,
    .school-groups-section,
    .group-catering-section,
    .group-booking-section,
    .group-faq-section {
        padding: 60px 0;
    }

    
    .offer-card-content-large {
        padding: 30px 20px;
    }
    
    .offer-card-content-large h3 {
        font-size: 1.5rem;
    }
    
    .offer-price-large {
        font-size: 2rem;
    }
    
    .code-value-large {
        font-size: 1.2rem;
    }
    
    .offer-code-box-large {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-cta {
        flex-direction: column;
    }
    
    .offer-cta .btn {
        width: 100%;
    }
    
    .no-offers-card {
        padding: 40px 20px;
    }
    
    .redeem-card,
    .terms-box,
    .booking-process-card {
        padding: 30px 20px;
    }
    
    .step-number,
    .step-number-large,
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .newsletter-prompt-section h2 {
        font-size: 2rem;
    }
    
    .party-booking-section h2 {
        font-size: 2rem;
    }
    
    .party-booking-section .lead {
        font-size: 1.1rem;
    }
    
    .booking-info-box {
        padding: 30px 20px;
    }
    
    .booking-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .package-price-large .price {
        font-size: 2rem;
    }
    
    .party-package-card,
    .corporate-package-card {
        padding: 30px 20px;
    }
    
    .package-tier {
        margin: -30px -20px 20px;
    }
    
    .age-party-card {
        padding: 60px 20px 30px;
    }
    
    /* Blog, FAQs, Text Pages Mobile Styles */
    .blog-listing-section,
    .blog-cta-section,
    .blog-content-section,
    .related-posts-section,
    .faqs-intro-section,
    .faqs-list-section,
    .faqs-contact-section,
    .text-content-section {
        padding: 60px 0;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .no-posts-card,
    .no-faqs-card {
        padding: 40px 20px;
    }
    
    .no-posts-card h3,
    .no-faqs-card h3 {
        font-size: 1.5rem;
    }
    
    .blog-cta-section h2 {
        font-size: 2rem;
    }
    
    .blog-post-content,
    .text-content {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .question-text {
        font-size: 1.05rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
    
    .contact-cta-card {
        padding: 40px 20px;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .contact-method {
        min-width: auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

/* ===== OFFERS, KIDS PARTIES & GROUPS PAGES STYLES ===== */

/* Current Offers Section */
.current-offers-section {
    padding: 100px 0;
    background: var(--dark-text);
}

.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.offer-card-large {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.offer-card-image-large {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.offer-card-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 10px 25px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.offer-card-content-large {
    padding: 40px;
}

.offer-card-content-large h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 20px;
}

.offer-price-large {
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.offer-description {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.offer-code-box-large {
    background: var(--light-gray);
    padding: 20px;
    border-left: 5px solid var(--primary-yellow);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.code-label-large {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    font-weight: 500;
}

.code-value-large {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.copy-code-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-code-btn:hover {
    background: var(--primary-orange);
}

.offer-validity {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 15px;
}

.offer-validity i {
    color: var(--primary-orange);
    margin-right: 8px;
}

.offer-terms {
    margin-bottom: 25px;
}

.offer-terms details {
    background: var(--light-gray);
    padding: 15px;
}

.offer-terms summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--primary-red);
}

.offer-terms p {
    margin-top: 15px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.offer-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* No Offers Section */
.no-offers-section {
    padding: 100px 0;
    background: var(--dark-text);
}

.no-offers-card {
    background: black;
    padding: 60px;
    border-radius: 0;
    text-align: center;
}

.no-offers-card i {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.no-offers-card h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Redeem Section */
.redeem-section {
    padding: 100px 0;
    background: white;
}

.redeem-card {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 0;
}

.redeem-card h2 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 20px;
}

.redeem-step {
    text-align: center;
    padding: 30px;
    background: white;
    height: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    margin: 0 auto 20px;
}

.redeem-step h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.redeem-step p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Offer Categories Section */
.offer-categories-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.category-card {
    background: white;
    padding: 40px;
    text-align: center;
    height: 100%;
    border-radius: 0;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.1);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.category-card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.category-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Newsletter Prompt Section */
.newsletter-prompt-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    text-align: center;
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.newsletter-prompt-section h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter-prompt-section .lead {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Offers Terms Section */
.offers-terms-section {
    padding: 100px 0;
    background: white;
}

.terms-box {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 0;
}

.terms-box h3 {
    color: var(--primary-red);
    margin-bottom: 25px;
    text-align: center;
}

.terms-box ul {
    list-style: none;
    padding: 0;
}

.terms-box ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--medium-gray);
    border-bottom: 1px solid #ddd;
}

.terms-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.terms-box a {
    color: var(--primary-red);
    text-decoration: none;
}

/* Kids Parties Styles */
.why-choose-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.why-card {
    background: white;
    padding: 30px;
    text-align: center;
    height: 100%;
    border-radius: 0;
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 10px 30px rgba(237, 29, 36, 0.1);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.why-card h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Party Packages Section */
.party-packages-section {
    padding: 100px 0;
    background: black;
}

.party-package-card {
    background: var(--dark-text);
    border-radius: 0;
    padding: 40px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.party-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.2);
}

.party-package-card.featured {
    background: black;
    border: 3px solid var(--primary-red);
}

.package-tier {
    text-align: center;
    padding: 10px;
    font-weight: 500;
    color: black;
    margin: -40px -40px 20px;
    text-transform: uppercase;
}

.package-tier.bronze {
    background: #cd7f32;
}

.package-tier.silver {
    background: #c0c0c0;
}

.package-tier.gold {
    background: #ffd700;
    color: var(--dark-text);
}

.package-price-large {
    text-align: center;
    margin-bottom: 20px;
}

.package-price-large .price {
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-red);
    display: block;
}

.package-price-large .per {
    color: var(--white);
    font-size: 0.9rem;
}

.party-package-card h3 {
    text-align: center;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.package-includes li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    color: var(--white);
}

.package-includes li i {
    margin-right: 10px;
    width: 20px;
}

.package-includes li i.fa-check {
    color: var(--primary-orange);
}

.package-notes {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 0;
    border-left: 5px solid var(--primary-yellow);
}

.package-notes p {
    margin-bottom: 10px;
    color: var(--medium-gray);
}

/* Party Food Section */
.party-food-section {
    padding: 100px 0;
    background: var(--dark-text);
}

.menu-section {
    margin-bottom: 25px;
}

.menu-section h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.menu-section ul {
    list-style: none;
    padding: 0;
}

.menu-section ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--white);
}

.menu-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Party Ages Section */
.party-ages-section {
    padding: 100px 0;
    background: white;
}

.age-party-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 0;
    height: 100%;
    position: relative;
    padding-top: 80px;
}

.age-range {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    padding: 10px 30px;
    font-weight: 500;
}

.age-party-card h3 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 15px;
}

.age-party-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    text-align: center;
}

.age-party-card ul {
    list-style: none;
    padding: 0;
}

.age-party-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--medium-gray);
}

.age-party-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.step-card {
    background: white;
    padding: 40px;
    text-align: center;
    height: 100%;
    border-radius: 0;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0 auto 20px;
}

.step-card h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Party Testimonials Section */
.party-testimonials-section {
    padding: 100px 0;
    background: black;
}

/* Party Booking Section */
.party-booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    text-align: center;
}

.party-booking-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.party-booking-section .lead {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.booking-info-box {
    background: white;
    padding: 40px;
    border-radius: 0;
    margin-bottom: 30px;
}

.booking-detail {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    text-align: left;
}

.booking-detail:last-child {
    margin-bottom: 0;
}

.booking-detail i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.booking-detail h4 {
    color: var(--primary-red);
    margin-bottom: 5px;
}

.booking-detail p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.booking-detail a {
    color: var(--primary-red);
    font-weight: 500;
    text-decoration: none;
}

/* Groups & Events Styles */
.event-types-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.event-type-card {
    background: white;
    padding: 40px;
    border-radius: 0;
    height: 100%;
}

.event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.event-type-card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.event-type-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.event-type-card ul {
    list-style: none;
    padding: 0;
}

.event-type-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.event-type-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Why Groups Section */
.why-groups-section {
    padding: 100px 0;
    background: white;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--primary-red);
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Corporate Packages Section */
.corporate-packages-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.corporate-package-card {
    background: white;
    padding: 40px;
    border-radius: 0;
    height: 100%;
    position: relative;
}

.corporate-package-card.featured {
    border: 3px solid var(--primary-red);
}

.corporate-package-card h3 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 20px;
}

.package-price-display {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.package-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--medium-gray);
}

.package-list li i {
    color: var(--primary-orange);
    margin-right: 10px;
}

/* School Groups Section */
.school-groups-section {
    padding: 100px 0;
    background: white;
}

.school-benefits h4,
.school-pricing h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
    margin-top: 25px;
}

.school-benefits ul {
    list-style: none;
    padding: 0;
}

.school-benefits ul li {
    padding: 8px 0;
    color: var(--medium-gray);
}

.school-benefits ul li i {
    color: var(--primary-orange);
    margin-right: 10px;
}

.school-pricing {
    background: var(--light-gray);
    padding: 20px;
    margin-top: 20px;
    border-left: 5px solid var(--primary-yellow);
}

/* Group Catering Section */
.group-catering-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.catering-option-card {
    background: white;
    padding: 40px;
    border-radius: 0;
    height: 100%;
}

.price-tag {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.catering-option-card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.catering-option-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.catering-option-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--medium-gray);
}

.catering-option-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Group Booking Section */
.group-booking-section {
    padding: 100px 0;
    background: white;
}

.booking-process-card {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 0;
}

.booking-process-card h2 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 20px;
}

.booking-step-card {
    background: white;
    padding: 30px;
    text-align: center;
    height: 100%;
    border-radius: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    margin: 0 auto 20px;
}

.booking-step-card h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.booking-step-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.contact-details-box {
    background: white;
    padding: 40px;
    margin-top: 40px;
    border-radius: 0;
}

.contact-details-box h3 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 30px;
}

.contact-details-box i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.contact-details-box h5 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.contact-details-box p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.contact-details-box a {
    color: var(--primary-red);
    text-decoration: none;
}

/* Group FAQ Section */
.group-faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 0;
    border-left: 5px solid var(--primary-yellow);
}

.faq-item h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* ===== BLOG, FAQS & TEXT PAGE STYLES ===== */

/* Blog Listing Section */
.blog-listing-section {
    padding: 100px 0;
    background: black;
}

.blog-card {
    background: var(--dark-text);
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: block;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-placeholder {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--medium-gray);
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-date {
    color: var(--white);
    font-size: 0.9rem;
}

.blog-date i {
    color: var(--primary-orange);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-orange);
}

.blog-excerpt {
    color: var(--white);
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-orange);
    gap: 12px;
}

.no-posts-card {
    background: white;
    padding: 60px;
    border-radius: 0;
    text-align: center;
}

.no-posts-card i {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.no-posts-card h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 15px;
}

.no-posts-card p {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
}

.blog-cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.blog-cta-section .lead {
    font-size: 1.2rem;
}

/* Blog Item/Post Styles */
.blog-header {
    min-height: 400px;
}

.blog-content-section {
    padding: 80px 0;
    background: black;
}

.back-link {
    margin-bottom: 30px;
}

.back-link a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-link a:hover {
    color: var(--primary-orange);
    gap: 12px;
}

.blog-post-meta {
    padding-bottom: 20px;
}

.post-date {
    color: var(--white);
    font-size: 1rem;
}

.post-date i {
    color: var(--primary-orange);
    margin-right: 8px;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 50px;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    color: var(--primary-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 0;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
    border-left: 5px solid var(--primary-yellow);
    background: var(--light-gray);
    padding: 20px 30px;
    margin: 2rem 0;
    font-style: italic;
    color: var(--medium-gray);
}

/* Blog Share Section */
.blog-share-section {
    margin-bottom: 40px;
}

.blog-share-section h4 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 0;
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

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

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #0d65d9;
}

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

.share-btn.twitter:hover {
    background: #0c90e0;
}

.share-btn.email {
    background: var(--primary-red);
}

.share-btn.email:hover {
    background: var(--primary-orange);
}

/* Related Posts Section */
.related-posts-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.related-posts-section h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* FAQs Styles */
.faqs-intro-section {
    padding: 80px 0;
}

.faqs-list-section {
    padding: 80px 0 100px;
    background: var(--dark-text);
}

.faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: black;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: black;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.faq-question:hover {
    background: var(--dark-text);
}

.faq-question.active {
    background: var(--dark-text);
    border-left-color: var(--primary-red);
}

.question-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-red);
    flex-grow: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 30px;
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.no-faqs-card {
    background: white;
    padding: 60px;
    border-radius: 0;
    text-align: center;
}

.no-faqs-card i {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.no-faqs-card h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 15px;
}

.no-faqs-card p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* FAQs Contact Section */
.faqs-contact-section {
    padding: 100px 0;
    background: white;
}

.contact-cta-card {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 0;
    text-align: center;
}

.contact-cta-card h2 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact-cta-card > p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    gap: 15px;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 0;
    min-width: 250px;
    text-align: left;
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.contact-method h4 {
    color: var(--primary-red);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-method p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-method a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    color: var(--primary-orange);
}

/* Standard Text Page */
.text-content-section {
    padding: 100px 0;
    background: black;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
}

.text-content h2,
.text-content h3,
.text-content h4 {
    color: var(--primary-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.text-content h2 {
    font-size: 2rem;
}

.text-content h3 {
    font-size: 1.6rem;
}

.text-content h4 {
    font-size: 1.3rem;
}

.text-content p {
    margin-bottom: 1.5rem;
}

.text-content ul,
.text-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.text-content li {
    margin-bottom: 0.5rem;
}

.text-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 0;
}

.text-content blockquote {
    border-left: 5px solid var(--primary-yellow);
    background: var(--light-gray);
    padding: 20px 30px;
    margin: 2rem 0;
    font-style: italic;
    color: var(--medium-gray);
}

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.text-content table th,
.text-content table td {
    padding: 12px;
    border: 1px solid var(--light-gray);
    text-align: left;
}

.text-content table th {
    background: var(--primary-red);
    color: white;
    font-weight: 500;
}

.text-content table tr:nth-child(even) {
    background: var(--light-gray);
}

.no-content-message {
    text-align: center;
    padding: 60px 0;
}

.no-content-message i {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.no-content-message p {
    color: var(--medium-gray);
    font-size: 1.2rem;
}

/* ===== COOKIE CONSENT BANNER ===== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    padding: 20px 0;
    border-top: 5px solid var(--primary-red);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-text i {
    font-size: 3rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

@media(max-width:767px){
    .cookie-text i {
        display: none;
    }
}

.cookie-text p {
    margin: 0;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-red);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: var(--primary-orange);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    white-space: nowrap;
    padding: 10px 25px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .cookie-consent {
        padding: 15px 0;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-text i {
        font-size: 2.5rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        flex-direction: row;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .cookie-text i {
        font-size: 2rem;
    }
    
    .cookie-buttons .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* ===== NAVIGATION ACTIVE STATES ===== */

/* Desktop Navigation Active State */
.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
    font-weight: 500;
}

/* Mobile Bottom Menu Active State - Already exists but ensuring consistency */
.mobile-bottom-menu .menu-item.active {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
}

.mobile-bottom-menu .menu-item.active .menu-icon,
.mobile-bottom-menu .menu-item.active .menu-label {
    color: white;
}

/* Hide Desktop Elements on Desktop */
@media(min-width:768px){
    .hide-desktop {
        display: none;
    }
}

/* ===== HOMEPAGE UPDATES - ALN BANNER & MAP ===== */

/* Map Container for Opening Times Section */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    border: 0;
}

/* ALN Friendly Banner */
.aln-friendly-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
}

.aln-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.aln-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-red);
}

.aln-text h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.aln-text p {
    color: white;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .map-container {
        min-height: 300px;
        margin-top: 20px;
    }
    
    .aln-friendly-banner {
        padding: 40px 0;
    }
    
    .aln-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .aln-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .aln-text h3 {
        font-size: 1.5rem;
    }
    
    .aln-text p {
        font-size: 1rem;
    }
}

.aln-text a {
  color: white;
}
/* ===== SPORTS BAR SECTION STYLES ===== */

.sports-bar-section {
    padding: 100px 0;
    background: var(--dark-text);
}

.sports-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sports-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: black;
    padding: 20px;
    border-radius: 0;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.sports-feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(237, 29, 36, 0.1);
}

.sports-feature-item i {
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.sports-feature-item h4 {
    color: var(--primary-red);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.sports-feature-item p {
    color: var(--white);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .sports-bar-section {
        padding: 60px 0;
    }
    
    .sports-feature-item {
        padding: 15px;
        gap: 15px;
    }
    
    .sports-feature-item i {
        font-size: 1.5rem;
        width: 40px;
    }
    
    .sports-feature-item h4 {
        font-size: 1rem;
    }
}

/* ===== EVENTS PAGE STYLES ===== */

.events-intro-section {
    padding: 80px 0;
    background: black;
}

.events-intro-section h2 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.events-intro-section .lead {
    font-size: 1.2rem;
    color: var(--white);
}

/* Upcoming Events Section */
.upcoming-events-section {
    padding: 100px 0;
    background: var(--dark-text);
}

.event-card {
    background: black;
    padding: 40px 30px;
    border-radius: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 29, 36, 0.2);
}

.event-card.featured {
    border: 3px solid var(--primary-orange);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-orange);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.event-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.event-card h3 {
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.event-details {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--white);
}

.event-detail i {
    color: var(--primary-orange);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.event-detail span {
    font-weight: 500;
    color: var(--white);
}

.event-card p {
    color: var(--white);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.event-card .btn {
    margin-top: auto;
}

/* Host Event CTA Section */
.host-event-cta-section {
    padding: 100px 0;
    background: black;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    padding: 60px 50px;
    border-radius: 0;
    color: white;
    box-shadow: 0 10px 40px rgba(237, 29, 36, 0.3);
}

.cta-box i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-box h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-box p {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-box .btn {
    background: white;
    color: var(--primary-red);
    border: none;
    font-weight: 500;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.cta-box .btn:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-box .btn i {
    font-size: 1.1rem;
    margin-right: 10px;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .events-intro-section {
        padding: 60px 0;
    }
    
    .events-intro-section .lead {
        font-size: 1.05rem;
    }
    
    .upcoming-events-section {
        padding: 60px 0;
    }
    
    .event-card {
        padding: 30px 20px;
    }
    
    .event-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .event-card h3 {
        font-size: 1.5rem;
    }
    
    .event-badge {
        font-size: 0.75rem;
        padding: 6px 35px;
    }
    
    .host-event-cta-section {
        padding: 60px 0;
    }
    
    .cta-box {
        padding: 40px 25px;
    }
    
    .cta-box i {
        font-size: 3rem;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
}

a {
    color: var(--primary-yellow);
}