/* ==========================================
   BROWSER COMPATIBILITY
   Vendor prefixes and fallbacks for older browsers
   ========================================== */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header, nav, main, section, footer {
    position: relative;
    z-index: 1;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    color: #2d2d2d;
    overflow-x: hidden;
    background: #f8f9fa;
    position: relative;
}

/* Keyframes with vendor prefixes */
@-webkit-keyframes foodFloat {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-moz-keyframes foodFloat {
    0% {
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-o-keyframes foodFloat {
    0% {
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes foodFloat {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/* ==========================================
   FLEXBOX FALLBACKS
   ========================================== */

/* Flexbox with vendor prefixes */
.header-content,
.header-left,
.slider-dots,
nav,
.services-grid,
.benefits-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

/* Flex alignment with vendor prefixes */
.header-content {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* ==========================================
   TRANSFORM FALLBACKS
   ========================================== */

/* All transforms need vendor prefixes */
.hamburger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(6px, 6px);
    -moz-transform: rotate(45deg) translate(6px, 6px);
    -ms-transform: rotate(45deg) translate(6px, 6px);
    -o-transform: rotate(45deg) translate(6px, 6px);
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(7px, -6px);
    -moz-transform: rotate(-45deg) translate(7px, -6px);
    -ms-transform: rotate(-45deg) translate(7px, -6px);
    -o-transform: rotate(-45deg) translate(7px, -6px);
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================
   TRANSITION FALLBACKS
   ========================================== */

/* Transitions with vendor prefixes */
.dot,
.btn,
button,
a,
.slide,
.location-card {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* ==========================================
   BORDER-RADIUS FALLBACKS
   ========================================== */

.slider-dots,
.dot,
.btn,
button,
.service-card,
.slide-image,
.location-card {
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
}

/* ==========================================
   BOX-SHADOW FALLBACKS
   ========================================== */

header,
.hero-slider,
.service-card,
.slide-image {
    -webkit-box-shadow: inherit;
    -moz-box-shadow: inherit;
    box-shadow: inherit;
}

/* ==========================================
   BACKDROP-FILTER FALLBACKS
   ========================================== */

/* Backdrop filter with fallback */
.slider-dots,
[style*="backdrop-filter"] {
    /* Fallback for browsers without backdrop-filter */
    background-color: rgba(255, 255, 255, 0.8);
    /* Modern browsers */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* ==========================================
   OBJECT-FIT FALLBACKS
   ========================================== */

/* For older browsers that don't support object-fit */
.slide-image,
.hero-image,
img {
    /* Fallback */
    width: 100%;
    height: auto;
    /* Modern browsers */
    -o-object-fit: cover;
    object-fit: cover;
}

/* ==========================================
   CSS GRID FALLBACKS
   ========================================== */

/* Grid fallback using flexbox for older browsers */
.services-grid,
.benefits-grid {
    /* Fallback: flexbox */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    /* Modern: grid */
    display: -ms-grid;
    display: grid;
}

/* Grid gap fallback using margins */
.service-card,
.benefit-item {
    /* Fallback margin for older browsers */
    margin: 1rem;
}

/* ==========================================
   OLDER BROWSER SPECIFIC FIXES
   ========================================== */

/* IE10+ specific fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* Flexbox fixes for IE10/11 */
    .header-content {
        -ms-flex-pack: justify;
    }
    
    .service-card,
    .benefit-item {
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
    }
    
    /* Object-fit alternative for IE */
    .slide-image,
    .hero-image {
        width: 100%;
        height: 100%;
    }
}

.top-bar {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-bar a {
    color: white;
    text-decoration: underline;
}

header {
    background: white;
    padding: 1.5rem 3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    min-height: 140px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #e74c3c;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 0.85rem;
}

.header-left a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s;
}

.header-left a:hover {
    color: #e74c3c;
}

.logo {
    position: absolute;
    left: 5rem;
    transform: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 110px;
    width: 110px;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(231, 76, 60, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 5px 12px rgba(231, 76, 60, 0.5));
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e74c3c;
    margin-left: 4rem;
    text-shadow: 2px 2px 4px rgba(231, 76, 60, 0.1);
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 0.85rem;
}

.header-right a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s;
}

.header-right a:hover {
    color: #e74c3c;
}

nav {
    background: white;
    padding: 1rem 3rem;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid #e74c3c;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s;
    padding: 0.4rem 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c 0%, #ff6b5a 100%);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: #e74c3c;
    border-bottom: none;
    padding-bottom: 0.5rem;
}

nav a.active::after {
    width: 100%;
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}

nav a:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
    display: inline-block;
    z-index: 1002;
}

.dropdown-toggle {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.4rem 0;
    transition: all 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
    position: relative;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c 0%, #ff6b5a 100%);
    transition: width 0.3s ease;
}

.dropdown:hover .dropdown-toggle::before {
    width: 100%;
}

.dropdown-toggle:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
    min-width: 280px;
    width: max-content;
    max-width: 350px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.25);
    border-radius: 8px;
    margin-top: 0;
    padding-top: 10px;
    z-index: 1001;
    border: 2px solid rgba(231, 76, 60, 0.2);
    overflow: visible;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #2d2d2d !important;
    text-decoration: none !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px !important;
    font-weight: 600 !important;
    transition: all 0.3s;
    white-space: nowrap;
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
    overflow: visible;
    line-height: 1.3;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.1) 0%, rgba(255, 107, 90, 0.15) 100%);
    color: #e74c3c !important;
    padding-left: 25px;
}

/* Hamburger button - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #e74c3c;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.column-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.column-image {
    width: 100%;
    max-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.column-text {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.column-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
    font-weight: 600;
    text-align: center;
}

.column-text p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 0 4rem;
    background: linear-gradient(135deg, #fffbf0 0%, #fff5f8 25%, #fff8f5 50%, #fffaf0 75%, #fff5fb 100%);
}


.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
    border: 5px solid #fff;
    outline: 3px dashed rgba(255, 165, 0, 0.4);
    outline-offset: -12px;
    display: block;
}

.slide-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.4);
    outline-color: rgba(255, 140, 0, 0.6);
}

.slide-image-left {
    justify-self: end;
}

.slide-image-right {
    justify-self: start;
}

.slide-content {
    text-align: center;
    color: #2d2d2d;
    max-width: 500px;
    padding: 1.5rem;
    z-index: 10;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    position: relative;
}


.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
    color: #2d2d2d;
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.9);
    font-weight: 600;
    color: #e74c3c;
    letter-spacing: 2px;
}

.slide-btn {
    display: inline-block;
    padding: 1rem 3.5rem;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    border: 3px solid white;
    position: relative;
}

.slide-btn:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.5);
}

    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 152, 0, 0.3);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 152, 0, 0.4);
    flex-shrink: 0;
}

.dot.active {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    border-color: #ff9800;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.6);
}

.dot:hover {
    background: rgba(255, 152, 0, 0.7);
    width: 14px;
    height: 14px;
    border-color: #ff9800;
}

/* Hide any dots beyond the first 3 */
.dot:nth-child(n+4) {
    display: none !important;
}

.icon-section {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.icon-section img {
    width: 80px;
    margin-bottom: 1rem;
}

.content-section {
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    color: #2d2d2d;
    font-weight: 600;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #ff6b5a 0%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.service-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


.service-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(230, 243, 255, 0.8) 0%, rgba(204, 231, 255, 0.8) 100%);
    border-color: rgba(30, 144, 255, 0.3);
}

.service-card:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(214, 237, 255, 0.95) 0%, rgba(179, 221, 255, 0.95) 100%);
    box-shadow: 0 12px 35px rgba(30, 144, 255, 0.25);
    border-color: rgba(30, 144, 255, 0.5);
}

.service-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(255, 245, 230, 0.8) 0%, rgba(255, 230, 204, 0.8) 100%);
    border-color: rgba(255, 165, 0, 0.3);
}

.service-card:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(255, 237, 204, 0.95) 0%, rgba(255, 217, 179, 0.95) 100%);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.25);
    border-color: rgba(255, 165, 0, 0.5);
}

.service-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.8) 0%, rgba(255, 246, 143, 0.8) 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-card:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(255, 248, 179, 0.95) 0%, rgba(255, 237, 78, 0.95) 100%);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
}

.service-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(240, 230, 255, 0.8) 0%, rgba(230, 204, 255, 0.8) 100%);
    border-color: rgba(147, 112, 219, 0.3);
}

.service-card:nth-child(5):hover {
    background: linear-gradient(135deg, rgba(230, 214, 255, 0.95) 0%, rgba(217, 179, 255, 0.95) 100%);
    box-shadow: 0 12px 35px rgba(147, 112, 219, 0.25);
    border-color: rgba(147, 112, 219, 0.5);
}

.service-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(230, 255, 245, 0.8) 0%, rgba(204, 255, 230, 0.8) 100%);
    border-color: rgba(46, 204, 113, 0.3);
}

.service-card:nth-child(6):hover {
    background: linear-gradient(135deg, rgba(214, 255, 237, 0.95) 0%, rgba(179, 255, 217, 0.95) 100%);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.25);
    border-color: rgba(46, 204, 113, 0.5);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    position: relative;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    animation: none;
}


.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #e74c3c;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    font-weight: 500;
}

.allergy-banner {
    background: transparent;
    padding: 1rem 2rem;
    text-align: center;
}

.allergy-banner img {
    max-width: 120px;
    margin-bottom: 1rem;
}

.allergy-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d2d2d;
}

.allergy-banner p {
    font-size: 1rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.awards-section {
    background: transparent;
    padding: 1rem 2rem;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.awards-title {
    text-align: center;
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    position: relative;
}

.awards-title::before,
.awards-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 1px;
    background: #e0e0e0;
}

.awards-title::before {
    right: 100%;
    margin-right: 2rem;
}

.awards-title::after {
    left: 100%;
    margin-left: 2rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.award-item {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8f0 100%);
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffd700;
}

.award-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffedcc 0%, #ffd6e0 100%);
}

.award-item:nth-child(even) {
    background: linear-gradient(135deg, #f0e6ff 0%, #ffe6f0 100%);
    border-color: #9370db;
}

.award-item:nth-child(even):hover {
    background: linear-gradient(135deg, #e6d6ff 0%, #ffd6e0 100%);
    box-shadow: 0 12px 35px rgba(147, 112, 219, 0.4);
}

.award-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.award-description {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #4a4a4a;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.award-year {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: 600;
}

.franchise-hero-red {
    background: linear-gradient(135deg, rgba(231, 76, 60, 1) 0%, rgba(192, 57, 43, 1) 50%, rgba(231, 76, 60, 0.95) 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
}

.franchise-hero-red h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.franchise-hero-red p {
    font-size: 1.3rem;
    color: white;
}

.franchise-hero {
    background: transparent;
    padding: 1rem 1rem;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.franchise-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content-box {
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    max-width: 1200px;
    margin: 0 auto 0.25rem auto;
    text-align: center;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.2);
    border: none;
    position: relative;
    overflow: visible;
}

.hero-content-box h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d2d2d;
}

.hero-content-box h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d2d2d;
}

.hero-content-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.hero-content-box .intro-text {
    margin-bottom: 0;
}

.location-hero {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.95) 0%, rgba(192, 57, 43, 0.95) 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.location-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.location-hero p {
    font-size: 1.3rem;
    color: white;
    margin: 0;
}

.franchise-intro {
    padding: 1rem 2rem;
    background: transparent;
    overflow: visible;
}

.franchise-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.franchise-intro h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.franchise-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.option-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.15);
    transition: all 0.3s;
    border: 3px solid rgba(255, 165, 0, 0.2);
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.4);
}

.option-image {
    width: 100%;
    max-width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.option-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #e74c3c;
    font-weight: 600;
}

.option-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.franchise-benefits {
    padding: 5rem 2rem;
    background: transparent;
}

.franchise-benefits h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

.story-section {
    background: rgba(255, 255, 255, 0.95);
}

.mobile-section-about {
    background: rgba(248, 249, 250, 0.95);
}

.allergy-section {
    background: rgba(255, 255, 255, 0.95);
}

.franchise-stats {
    background: transparent;
}

.franchise-testimonials {
    background: transparent;
}

.franchise-faq {
    background: transparent;
}

.about-content {
    background: transparent;
    padding: 2rem 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.95);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: block;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.3);
}

.benefit-item:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.25);
    border-color: rgba(231, 76, 60, 0.6);
}

.benefit-image {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 1rem auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 1.1rem;
    color: #e74c3c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.benefit-item:nth-child(1) {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-color: #ff8c00;
}

.benefit-item:nth-child(1):hover {
    background: linear-gradient(135deg, #ffedcc 0%, #ffd9b3 100%);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.4);
}

.benefit-item:nth-child(2) {
    background: linear-gradient(135deg, #fffacd 0%, #fff68f 100%);
    border-color: #ffd700;
}

.benefit-item:nth-child(2):hover {
    background: linear-gradient(135deg, #fff8b3 0%, #ffed4e 100%);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.benefit-item:nth-child(3) {
    background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
    border-color: #1e90ff;
}

.benefit-item:nth-child(3):hover {
    background: linear-gradient(135deg, #d6edff 0%, #b3ddff 100%);
    box-shadow: 0 12px 35px rgba(30, 144, 255, 0.4);
}

.benefit-item:nth-child(4) {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
    border-color: #ff69b4;
}

.benefit-item:nth-child(4):hover {
    background: linear-gradient(135deg, #ffe8f0 0%, #ffd6e0 100%);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.franchise-stats {
    padding: 4rem 2rem;
    background: transparent;
    text-align: center;
}

.franchise-stats h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.stats-text {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.franchise-faq {
    padding: 5rem 2rem;
    background: transparent;
}

.franchise-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

.faq-grid {
    display: grid;
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e74c3c;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.franchise-testimonials {
    padding: 5rem 2rem;
    background: transparent;
}

.franchise-testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #e74c3c;
    font-style: normal !important;
    margin-top: 2rem;
}

.franchise-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.franchise-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.franchise-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.locations-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
    border: 4px solid white;
}

.stats-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    margin-bottom: 1.25rem;
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section p, .footer-section a {
    color: #bbb;
    text-decoration: none;
    line-height: 1.9;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.about-hero {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.95) 0%, rgba(192, 57, 43, 0.95) 100%);
    padding: 1rem 1rem 1rem;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-section {
    background: linear-gradient(135deg, rgba(255, 250, 245, 0.95) 0%, rgba(255, 245, 250, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(255, 140, 0, 0.15);
    margin-bottom: 3rem;
    border: 3px solid rgba(255, 165, 0, 0.2);
}

.story-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
    text-align: center;
}

.story-section p {
    font-size: 1.2rem;
    line-height: 2;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.two-column-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image, .mobile-image-about {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.25);
    border: 4px solid white;
    transition: all 0.3s ease;
    opacity: 1;
    display: block;
}

.about-image:hover, .mobile-image-about:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.35);
}

.about-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.side-by-side-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-left, .section-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.section-left:hover, .section-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.section-left h3, .section-right h3 {
    font-size: 2rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.mobile-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: transparent;
}

.about-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: transparent;
}

.mobile-section-about {
    background: rgba(248, 249, 250, 0.95);
    padding: 4rem 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.mobile-section-about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2d2d2d;
}

.mobile-content-about {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.mobile-image-about {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-text-about {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.mobile-text-about p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.allergy-section {
    background: linear-gradient(135deg, rgba(255, 245, 235, 0.95) 0%, rgba(255, 250, 245, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(46, 204, 113, 0.15);
    margin-bottom: 3rem;
    border: 3px solid rgba(46, 204, 113, 0.3);
}

.allergy-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2ecc71;
}

.allergy-content-about {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
    align-items: center;
}

.allergy-badge-about img {
    width: 100%;
    max-width: 200px;
    filter: drop-shadow(0 5px 15px rgba(46, 204, 113, 0.3));
}

.allergy-text-about p {
    font-size: 1.2rem;
    line-height: 2;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.features-section {
    text-align: center;
    padding: 2rem 0;
}

.features-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ff6b35;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 245, 0.95) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.15);
    transition: all 0.3s;
    border: 2px solid rgba(255, 165, 0, 0.2);
}

.feature-box:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #ff6b35;
    font-weight: 600;
}

.feature-box p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

.travel-teams-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5rem;
    overflow: visible;
}

.teams-wrapper {
    overflow: visible;
    position: relative;
}

.teams-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.teams-scroll::-webkit-scrollbar {
    display: none;
}

.team-card {
    min-width: 320px;
    flex-shrink: 0;
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.team-card:hover {
    transform: translateY(-8px) rotate(-2deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.team-card:nth-child(1) {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-color: #ff8c00;
}

.team-card:nth-child(1):hover {
    background: linear-gradient(135deg, #ffedcc 0%, #ffd9b3 100%);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.4);
}

.team-card:nth-child(2) {
    background: linear-gradient(135deg, #fffacd 0%, #fff68f 100%);
    border-color: #ffd700;
}

.team-card:nth-child(2):hover {
    background: linear-gradient(135deg, #fff8b3 0%, #ffed4e 100%);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.team-card:nth-child(3) {
    background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
    border-color: #1e90ff;
}

.team-card:nth-child(3):hover {
    background: linear-gradient(135deg, #d6edff 0%, #b3ddff 100%);
    box-shadow: 0 12px 35px rgba(30, 144, 255, 0.4);
}

.team-card:nth-child(4) {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
    border-color: #ff69b4;
}

.team-card:nth-child(4):hover {
    background: linear-gradient(135deg, #ffe8f0 0%, #ffd6e0 100%);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
}

.team-card img {
    width: 100%;
    max-width: 250px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.team-card h3 {
    font-size: 1.6rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.learn-more-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #e74c3c;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.learn-more-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-arrow:hover {
    background: rgba(192, 57, 43, 1);
    transform: translateY(-50%) scale(1.1);
}

.scroll-arrow.left {
    left: 0;
}

.scroll-arrow.right {
    right: 0;
}

.scroll-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(150, 150, 150, 0.5);
}

.scroll-arrow:disabled:hover {
    transform: translateY(-50%);
}

.location-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.15);
    transition: all 0.3s;
    border: 3px solid rgba(231, 76, 60, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.25);
    border-color: rgba(231, 76, 60, 0.6);
}

.location-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 15px;
    margin: 0 auto 1rem auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.location-info {
    text-align: center;
    margin: 1rem 0;
    width: 100%;
}

.location-info p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.location-info strong {
    color: #2d2d2d;
    font-weight: 600;
}

.allergen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.allergen-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.15);
    transition: all 0.3s;
    border: 3px solid rgba(46, 204, 113, 0.3);
}

.allergen-item:hover {
    transform: translateY(-8px) rotate(-2deg);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.25);
    border-color: rgba(46, 204, 113, 0.6);
}

.allergen-icon {
    font-size: 4.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.allergen-item h3 {
    font-size: 1.6rem;
    color: #27ae60;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.allergen-item p {
    font-size: 1.1rem;
    color: #2d2d2d;
    font-weight: 600;
}

.error-message {
    color: #c0392b;
    background: #fff5f5;
    padding: 0.75rem;
    border-left: 4px solid #e74c3c;
    margin: 0.5rem 0;
    border-radius: 4px;
}

.success-message {
    color: #27ae60;
    background: #f0fff4;
    padding: 0.75rem;
    border-left: 4px solid #27ae60;
    margin: 0.5rem 0;
    border-radius: 4px;
}
/* ==========================================
   MOBILE RESPONSIVE STYLES
   ========================================== */

/* ===== MEDIUM SCREENS (Tablets & Small Desktops) ===== */
@media (max-width: 1200px) and (min-width: 969px) {
    /* Make slide images even smaller to prevent overlap */
    .slide-image-left,
    .slide-image-right {
        max-width: 240px !important;
        height: auto !important;
    }
    
    .slide-image {
        max-width: 280px !important;
    }
    
    /* Make buttons even more compact */
    .cta-buttons-container {
        max-width: 500px !important;
        gap: 0.75rem !important;
    }
    
    .icon-cta-btn {
        padding: 0.65rem 0.85rem !important;
        font-size: 0.8rem !important;
    }
    
    .icon-cta-btn span {
        font-size: 0.8rem !important;
    }
    
    .icon-wrapper {
        width: 36px !important;
        height: 36px !important;
    }
    
    .icon-wrapper svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Reduce slide content padding and spacing */
    .slide-content {
        padding: 0.75rem !important;
        gap: 0.75rem !important;
    }
    
    .slide.active {
        gap: 1rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    p {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Reduce overall hero slider height if needed */
    .hero-slider {
        min-height: 400px !important;
    }
}

@media (max-width: 968px) {
    /* ===== PREVENT HORIZONTAL SCROLL ===== */
    
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    * {
        max-width: 100% !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }
    
    section, div, header, footer {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* ===== HAMBURGER BUTTON ===== */
    
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 42px !important;
        height: 36px !important;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        cursor: pointer;
        border: none !important;
    }
    
    .hamburger span {
        width: 100%;
        height: 5px !important;
        background: #e74c3c;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* Hamburger animation when open */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* ===== MOBILE HEADER LAYOUT ===== */
    
    header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 1rem 1rem 0.75rem !important;
        position: relative !important;
    }
    
    .logo {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto !important;
    }
    
    .logo img {
        margin: 0 auto !important;
        height: 110px !important;
        width: 110px !important;
    }
    
    .logo-text {
        text-align: center !important;
        margin: 0.5rem 0 0 0 !important;
        width: 100% !important;
        font-size: 0.9rem !important;
    }
    
    header p {
        text-align: center !important;
        margin: 0.5rem auto 0 !important;
        max-width: 90% !important;
    }
    
    /* ===== HOME PAGE SLIDER - HIDE IMAGES BUT KEEP WELCOME ===== */
    
    /* Hide the slider container styling but keep content */
    .hero-slider {
        height: auto !important;
        min-height: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    /* Show one small image - don't hide all images */
    .slide-image,
    .slide-image-left {
        display: block !important;
        visibility: visible !important;
        max-width: 280px !important;
        width: 100% !important;
        height: auto !important;
        opacity: 1 !important;
        position: relative !important;
        margin: 0.75rem auto !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    }
    
    /* Hide right side image only */
    .slide-image-right {
        display: none !important;
    }
    
    /* Hide non-active slides */
    .slide:not(.active) {
        display: none !important;
        height: 0 !important;
    }
    
    /* Make active slide visible as regular content - NO EXTRA HEIGHT */
    .slide.active {
        position: relative !important;
        opacity: 1 !important;
        display: block !important;
        grid-template-columns: 1fr !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    /* Style the slide content - MINIMAL SPACING */
    .slide-content {
        padding: 0.5rem 0.75rem !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .slide-content h2 {
        margin: 0 0 0.5rem 0 !important;
        padding: 0 !important;
        line-height: 1.2 !important;
    }
    
    .slide-content p {
        margin: 0 0 0.75rem 0 !important;
        padding: 0 !important;
        line-height: 1.3 !important;
    }
    
    /* Hide slider dots completely */
    .slider-dots,
    .slider-dots * {
        display: none !important;
        height: 0 !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* ===== WELCOME SECTION - MOBILE ===== */
    
    /* Keep Welcome section visible and styled */
    body .cta-buttons-container,
    div.cta-buttons-container,
    .cta-buttons-container[style] {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.6rem !important;
        padding: 0 0.75rem 0.75rem 0.75rem !important;
        max-width: 100% !important;
        grid-template-columns: 1fr !important;
        margin: 0 auto !important;
    }
    
    body a.icon-cta-btn,
    a.icon-cta-btn[href] {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 0.75rem 1.1rem !important;
        background: white !important;
        color: #e74c3c !important;
        text-decoration: none !important;
        border-radius: 50px !important;
        box-shadow: 0 3px 12px rgba(231, 76, 60, 0.2) !important;
        border: 2px solid #e74c3c !important;
        transition: all 0.3s !important;
        gap: 0.75rem !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    body a.icon-cta-btn:hover,
    a.icon-cta-btn[href]:hover {
        background: #e74c3c !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4) !important;
    }
    
    .icon-wrapper {
        width: 42px !important;
        height: 42px !important;
        background: #e74c3c !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.25rem !important;
        flex-shrink: 0 !important;
    }
    
    .icon-wrapper svg {
        fill: white !important;
    }
    
    a.icon-cta-btn:hover .icon-wrapper {
        background: white !important;
    }
    
    a.icon-cta-btn:hover .icon-wrapper svg {
        fill: #e74c3c !important;
    }
    
    .icon-cta-btn span {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        text-align: left !important;
        line-height: 1.2 !important;
    }
    
    /* ===== TWO-COLUMN SECTIONS - STACK ON MOBILE ===== */
    
    .two-column,
    .two-column-about {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        grid-template-columns: 1fr !important;
    }
    
    .column-image {
        max-width: 200px !important;
        margin: 0 auto 1rem !important;
    }
    
    .column-content,
    .column-text {
        text-align: center !important;
        width: 100% !important;
    }
    
    /* ===== ALL GRID SECTIONS - STACK ON MOBILE ===== */
    
    .services-grid,
    .benefits-grid,
    .service-cards,
    .features-grid,
    .location-grid,
    .team-grid,
    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        grid-template-columns: 1fr !important;
    }
    
    /* Stack all grid layouts */
    [class*="-grid"]:not(.package-grid),
    [style*="grid-template-columns"]:not(.package-grid) {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
    }

    .package-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
    
    /* Service/benefit cards full width */
    .service-card,
    .benefit-card,
    .card,
    .grid-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 1rem !important;
    }
    
    /* ===== WHY CHOOSE CHEF IT UP - BENEFITS GRID ===== */
    
    .benefits-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .benefit-item {
        padding: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 0.75rem 0 !important;
        box-sizing: border-box !important;
    }
    
    .benefit-item img,
    .benefit-image {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        margin: 0 auto 0.75rem !important;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem !important;
        margin: 0.5rem 0 !important;
    }
    
    .benefit-item p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }
    
    /* ===== TRAVEL TEAMS & LOCATIONS PAGES - COMPREHENSIVE FIXES ===== */
    
    /* Force all sections to stay within viewport */
    section.franchise-hero,
    section {
        max-width: 100vw !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Force ALL containers to stay within viewport */
    div, section, article, main {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Prevent any element from causing horizontal scroll */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Specifically target large containers */
    .container,
    .wrapper,
    .content {
        max-width: 100% !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        overflow-x: hidden !important;
    }
    
    /* Fix "What We Offer" / "Explore Services" grid */
    div[style*="grid-template-columns: repeat(2, 1fr)"],
    div[style*="grid-template-columns: repeat(3, 1fr)"],
    section div[style*="repeat(2, 1fr)"],
    section div[style*="repeat(3, 1fr)"],
    div[style*="display: grid"] {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 100% !important;
    }
    
    /* Party place image cards */
    div[style*="border-radius: 12px"][style*="overflow: hidden"] {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    /* Party place images - make them smaller on mobile */
    div[style*="border-radius: 12px"] img[style*="height: 300px"],
    img[alt*="Party Place"],
    img[alt*="Cooking Classes"],
    img[alt*="Special Events"] {
        height: 180px !important;
        max-height: 180px !important;
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
    }
    
    /* Force ALL images to stay within container */
    section img,
    .franchise-hero img,
    .hero-content-box img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* Benefit items text alignment */
    .benefit-item,
    a.benefit-item {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        box-sizing: border-box !important;
    }
    
    .benefit-item h3,
    .benefit-item p {
        text-align: center !important;
        width: 100% !important;
    }
    
    .benefit-item p {
        margin: 0 auto !important;
        padding: 0 0.5rem !important;
    }
    
    /* Service cards on travel teams page - VERY COMPACT */
    section div[style*="border-left: 5px solid"],
    div[style*="background: white"][style*="padding: 2rem"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem 0.75rem !important;
        margin: 0 0 1rem 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Reduce ALL image heights on mobile */
    section div[style*="height: 200px"],
    section img[alt*="After School"],
    section img[alt*="Field"],
    section img[alt*="Preschool"],
    section img[style*="height: 100%"] {
        height: 120px !important;
        max-height: 120px !important;
    }
    
    section div[style*="height: 200px"] {
        height: 120px !important;
        margin-bottom: 1rem !important;
    }
    
    /* Compact text in cards */
    section div[style*="border-left"] p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
        padding: 0 !important;
    }
    
    /* Info boxes inside cards */
    section div[style*="background: linear-gradient"] {
        padding: 0.75rem !important;
        margin-top: 0.75rem !important;
    }
    
    section div[style*="background: linear-gradient"] p {
        font-size: 0.8rem !important;
    }
    
    /* Location cards on locations page */
    .location-card,
    div.location-card {
        padding: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 1.25rem !important;
        background: white !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.1) !important;
        border: 2px solid #e74c3c !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Location card layout - stack on mobile */
    .location-card .location-left,
    .location-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        gap: 0.5rem !important;
        order: 1 !important;
    }
    
    .location-card .location-right,
    .location-right {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 0.65rem !important;
        order: 2 !important;
    }
    
    /* Location icon */
    .location-card .location-icon,
    .location-icon {
        font-size: 2rem !important;
        margin: 0 auto !important;
        text-align: center !important;
        line-height: 1 !important;
    }
    
    /* Location info */
    .location-card .location-info,
    .location-info {
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Location name */
    .location-card .location-name,
    .location-name {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: #2d2d2d !important;
        margin: 0 auto 0.4rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Location badge (Party Place/Travel Team) */
    .location-card .location-badge,
    .location-badge {
        display: inline-block !important;
        background: #e74c3c !important;
        color: white !important;
        padding: 0.35rem 0.9rem !important;
        border-radius: 20px !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        margin: 0.35rem auto !important;
        text-align: center !important;
    }
    
    /* Location address - FORCE CENTER */
    .location-card .location-address,
    .location-address,
    .location-info .location-address {
        font-size: 0.85rem !important;
        color: #666 !important;
        margin: 0.35rem auto !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }
    
    /* Distance badge */
    .location-card .location-distance,
    .location-distance {
        background: #27ae60 !important;
        color: white !important;
        padding: 0.65rem 1.25rem !important;
        border-radius: 20px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        width: auto !important;
        max-width: 150px !important;
        text-align: center !important;
        margin: 0.35rem auto !important;
    }
    
    /* View button */
    .location-card .location-button,
    .location-button,
    button.location-button {
        background: #e74c3c !important;
        color: white !important;
        padding: 0.9rem 1.25rem !important;
        border: none !important;
        border-radius: 25px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        transition: all 0.3s !important;
        margin: 0 !important;
    }
    
    .location-button:hover {
        background: #c0392b !important;
    }
    
    /* Hero content boxes - COMPACT */
    .franchise-hero .hero-content-box,
    section.franchise-hero .hero-content-box {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0.75rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Reduce ALL heading sizes */
    section h2[style*="text-align: center"],
    section h2 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
        padding: 0 0.5rem !important;
    }
    
    section h3[style*="text-align: center"],
    section h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Container max widths */
    div[style*="max-width: 1400px"],
    div[style*="max-width: 1200px"],
    section div[style*="max-width: 1200px"] {
        max-width: 100% !important;
        padding: 1rem 0.75rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Party place gallery section */
    section div[style*="padding: 2rem"] {
        padding: 1rem 0.75rem !important;
    }
    
    /* ===== FRANCHISE PAGE - IMAGE CARDS WITH TEXT OVERLAY ===== */
    
    /* Stack franchise cards vertically */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 !important;
    }
    
    /* Franchise image cards - MUCH MORE COMPACT */
    div[style*="position: relative"][style*="height: 350px"],
    div[style*="position: relative; height: 350px"],
    section div[style*="position: relative; height: 350px"] {
        height: 220px !important;
        margin: 0 0 0.75rem 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Make franchise images fill container and be visible - CRITICAL */
    div[style*="position: relative"][style*="height: 350px"] > img,
    div[style*="position: relative; height: 350px"] > img,
    section div[style*="position: relative; height: 350px"] > img {
        width: 100% !important;
        height: 100% !important;
        min-height: 220px !important;
        object-fit: cover !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 1 !important;
    }
    
    /* Franchise overlay container - on top of image */
    div[style*="position: absolute"][style*="background: rgba(0, 0, 0, 0.35)"],
    div[style*="position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.35)"] {
        padding: 1rem 0.75rem !important;
        background: rgba(0, 0, 0, 0.55) !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 2 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Franchise overlay text - smaller and more compact */
    div[style*="position: absolute"][style*="background: rgba(0, 0, 0"] p,
    div[style*="position: absolute; top: 0; left: 0; right: 0; bottom: 0"] p {
        font-size: 0.9rem !important;
        line-height: 1.35 !important;
        padding: 0 !important;
        margin: 0 !important;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.9) !important;
        color: white !important;
        font-weight: 700 !important;
        text-align: center !important;
    }
    
    /* ===== LOCATION FINDER / ZIP CODE FORM - MOBILE ===== */
    
    /* Location finder container */
    section div[style*="max-width: 700px"] {
        padding: 1.5rem 1rem !important;
        max-width: 100% !important;
    }
    
    /* Stack ZIP input and button vertically */
    div[style*="display: flex"][style*="gap: 1rem"],
    section div[style*="display: flex"][style*="gap"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    /* ZIP input field */
    input[id*="zip"],
    input[placeholder*="ZIP"],
    input[maxlength="5"] {
        width: 100% !important;
        flex: none !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
    }
    
    /* Use My Location button */
    button[onclick*="Location"],
    button[onclick*="useTravelLocation"] {
        width: 100% !important;
        flex: none !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        display: block !important;
        visibility: visible !important;
        white-space: normal !important;
    }
    
    /* ===== COOKING CLASSES & LOCATIONS PAGES ===== */
    
    /* Location cards */
    .location-card,
    [class*="location"],
    [class*="class-card"] {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Calendar/schedule grids */
    .calendar-grid,
    .schedule-grid,
    [class*="calendar"],
    [class*="schedule"] {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
    }
    
    /* ===== CALENDAR PAGES - SPECIFIC FIXES ===== */
    
    /* Target the cooking classes grid on calendar pages */
    div[style*="grid-template-columns: 400px 1fr"],
    div[style*="grid-template-columns: 400px"],
    section div[style*="display: grid"] {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Make calendar page images responsive */
    section div[style*="text-align: center"] img,
    section img[alt*="Cooking"],
    section img[alt*="Classes"] {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    /* Calendar page content boxes */
    section div[style*="background: white"],
    section div[style*="padding: 2.5rem"] {
        padding: 1.5rem !important;
    }
    
    /* Make first paragraph more compact */
    section div[style*="background: white"] p,
    section div[style*="padding: 2.5rem"] p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* Calendar page main container */
    .franchise-hero .hero-content-box,
    section .hero-content-box {
        max-width: 100% !important;
        padding: 1rem !important;
    }
    
    .franchise-hero .hero-content-box > div,
    section div[style*="background: linear-gradient"] {
        padding: 1.5rem 1rem !important;
    }
    
    /* Reduce calendar heading size on mobile */
    section h3[style*="color: #f39c12"] {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* ===== MOBILE NAVIGATION ===== */
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        transition: right 0.4s ease;
        z-index: 9998;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    nav.active {
        right: 0;
    }
    
    /* Navigation links */
    .nav-content {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    
    nav a {
        display: block;
        padding: 15px 20px;
        color: #2d2d2d;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #eee;
        transition: background 0.2s;
    }
    
    nav a:hover {
        background: #f5f5f5;
        color: #e74c3c;
    }
    
    /* ===== MORE DROPDOWN - SIMPLE VERSION ===== */
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        display: block;
        width: 100%;
        padding: 15px 20px;
        background: white;
        border: none;
        border-bottom: 1px solid #eee;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        color: #2d2d2d;
        cursor: pointer;
        position: relative;
    }
    
    /* Arrow indicator */
    .dropdown-toggle::after {
        content: "▼";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        transition: transform 0.3s;
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Submenu - Override desktop positioning */
    .dropdown-menu {
        display: none !important;
        position: static !important;
        transform: none !important;
        background: #f8f9fa !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        top: auto !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    .dropdown.active .dropdown-menu,
    .dropdown-menu.active {
        display: block !important;
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 40px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #e0e0e0 !important;
        display: block !important;
        width: 100% !important;
        white-space: normal !important;
    }
    
    /* ===== DARK OVERLAY ===== */
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9997;
        animation: fadeIn 0.3s;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Hide hamburger on desktop */
@media (min-width: 969px) {
    .hamburger {
        display: none !important;
    }
}

/* ==========================================
   DEVICE-SPECIFIC WELCOME SECTION SIZING
   ========================================== */

/* Small phones - iPhone SE, iPhone 12/13 mini (320px - 428px) */
@media (max-width: 428px) {
    .hero-slider {
        padding: 0 !important;
        margin: 0 0 0.5rem 0 !important;
    }
    
    .slide.active {
        padding: 0 !important;
    }
    
    .slide-content {
        padding: 0.5rem 0.5rem 0.25rem !important;
    }
    
    .slide-content h2 {
        font-size: 1.3rem !important;
        margin: 0 0 0.35rem 0 !important;
    }
    
    .slide-content p {
        font-size: 0.8rem !important;
        margin: 0 0 0.5rem 0 !important;
    }
    
    .cta-buttons-container {
        gap: 0.5rem !important;
        padding: 0 0.5rem 0.5rem 0.5rem !important;
    }
    
    .icon-cta-btn {
        padding: 0.65rem 0.9rem !important;
        gap: 0.65rem !important;
    }
    
    .icon-wrapper {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.1rem !important;
    }
    
    .icon-cta-btn span {
        font-size: 0.85rem !important;
    }
}

/* Regular phones - iPhone 12/13/14/15 (429px - 768px) */
@media (min-width: 429px) and (max-width: 768px) {
    .hero-slider {
        padding: 0 !important;
        margin: 0 0 0.75rem 0 !important;
    }
    
    .slide.active {
        padding: 0 !important;
    }
    
    .slide-content {
        padding: 0.75rem 1rem 0.5rem !important;
    }
    
    .slide-content h2 {
        font-size: 1.6rem !important;
        margin: 0 0 0.5rem 0 !important;
    }
    
    .slide-content p {
        font-size: 0.95rem !important;
        margin: 0 0 0.75rem 0 !important;
    }
    
    .cta-buttons-container {
        gap: 0.65rem !important;
        padding: 0 1rem 0.75rem 1rem !important;
    }
    
    .icon-cta-btn {
        padding: 0.8rem 1.2rem !important;
        gap: 0.75rem !important;
    }
    
    .icon-wrapper {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.3rem !important;
    }
    
    .icon-cta-btn span {
        font-size: 0.95rem !important;
    }
}

/* iPad and tablets (769px - 968px) */
@media (min-width: 769px) and (max-width: 968px) {
    .slide-content h2 {
        font-size: 2.5rem !important;
    }
    
    .slide-content p {
        font-size: 1.3rem !important;
    }
    
    .cta-buttons-container {
        flex-direction: row !important;
        gap: 1.5rem !important;
    }
    
    .icon-cta-btn {
        padding: 1.2rem 1.5rem !important;
        flex: 1 !important;
    }
    
    .icon-wrapper {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.6rem !important;
    }
    
    .icon-cta-btn span {
        font-size: 1.1rem !important;
    }
    
    .slide-image {
        max-width: 450px !important;
        height: auto !important;
    }
}
/* ==========================================
   BIRTHDAY PARTY PACKAGE CARDS - MOBILE FIXES
   ========================================== */
@media (max-width: 968px) {

    .alert-box {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0.85rem !important;
        text-align: center !important;
    }

    .alert-box p {
        color: #c0392b !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
    }

    .intro-section {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        text-align: center !important;
    }

    .intro-section p {
        text-align: center !important;
    }

    .package-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .package-card {
        background: white !important;
        border: 2px solid rgba(231, 76, 60, 0.3) !important;
        border-radius: 15px !important;
        padding: 1rem !important;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1) !important;
        margin-bottom: 1.5rem !important;
        overflow: hidden !important;
        display: block !important;
        flex-direction: unset !important;
    }

    .package-card * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .package-title {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
        color: white !important;
        padding: 0.85rem !important;
        border-radius: 12px !important;
        margin: -1rem -1rem 0.85rem -1rem !important;
        text-align: center !important;
        border: none !important;
        box-shadow: none !important;
        display: block !important;
    }

    .package-title h3 {
        color: white !important;
        font-size: 1.15rem !important;
        margin-bottom: 0.3rem !important;
    }

    .package-title .subtitle {
        color: rgba(255,255,255,0.95) !important;
        font-size: 0.8rem !important;
    }

    .price-tag {
        background: #fff5f5 !important;
        border: 2px solid #e74c3c !important;
        border-radius: 10px !important;
        padding: 0.75rem !important;
        text-align: center !important;
        box-shadow: none !important;
        display: block !important;
    }

    .includes {
        display: block !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .menu-section {
        display: block !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .menu-item, .battle-card {
        background: #f9f9f9 !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 8px !important;
        padding: 0.75rem !important;
        margin-bottom: 0.5rem !important;
        box-shadow: none !important;
        display: block !important;
    }

    .book-btn {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}