/* ==========================================
   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::before {
    content: "🍕 🍔 🍰 🥗 🍪 🧁 🥐 🍩";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.15;
    letter-spacing: 30px;
    pointer-events: none;
}

.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::before {
    content: "🍰";
    position: absolute;
    top: -25px;
    left: -25px;
    font-size: 2.5rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.slide-content::after {
    content: "🧁";
    position: absolute;
    top: -25px;
    right: -25px;
    font-size: 2.5rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite 1.5s;
    z-index: 1;
}

.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);
}

.slide-btn::before {
    content: "🍴";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.slide-btn::after {
    content: "🍴";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    font-size: 1.2rem;
}

.slider-dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 18px;
    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(1) {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.8) 0%, rgba(255, 228, 225, 0.8) 100%);
    border-color: rgba(255, 105, 180, 0.3);
}

.service-card:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(255, 232, 240, 0.95) 0%, rgba(255, 214, 224, 0.95) 100%);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.25);
    border-color: rgba(255, 105, 180, 0.5);
}

.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:nth-child(1) .service-icon::before {
    content: "👧🎉";
    position: absolute;
    left: -50px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(1) .service-icon::after {
    content: "🧁👦";
    position: absolute;
    right: -50px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(2) .service-icon::before {
    content: "👨‍🍳";
    position: absolute;
    left: -45px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(2) .service-icon::after {
    content: "👩‍🍳";
    position: absolute;
    right: -45px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(3) .service-icon::before {
    content: "🍎";
    position: absolute;
    left: -40px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(3) .service-icon::after {
    content: "👧🧑‍🍳";
    position: absolute;
    right: -50px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(4) .service-icon::before {
    content: "🧒";
    position: absolute;
    left: -35px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(4) .service-icon::after {
    content: "🍪⛺";
    position: absolute;
    right: -50px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(5) .service-icon::before {
    content: "🎈";
    position: absolute;
    left: -35px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(5) .service-icon::after {
    content: "👦🍰";
    position: absolute;
    right: -50px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(6) .service-icon::before {
    content: "👨‍🍳";
    position: absolute;
    left: -40px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.service-card:nth-child(6) .service-icon::after {
    content: "🥘👧";
    position: absolute;
    right: -50px;
    top: 0px;
    font-size: 2rem;
    opacity: 0.85;
}

.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 2rem;
    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: linear-gradient(135deg, #fff5f0 0%, #ffe8f5 50%, #f5f0ff 100%);
    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;
}

/* ========================================
   CHEF IT UP - COMPLETE MOBILE CSS
   Includes: Slideshow, Animations, Wider Sections, Bigger Logo
   Replace your entire @media (max-width: 968px) section with this
   ======================================== */

@media (max-width: 968px) {
    
    /* ==========================================
       RESET & FOUNDATION
       ========================================== */
    
    * {
        box-sizing: border-box !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    body {
        background: linear-gradient(180deg, #fff5f0 0%, #ffe6f0 50%, #fff0f5 100%) !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    }
    
    /* Subtle background pattern */
    body::before {
        content: "🍕 🧁 🍰 🥗 🍪" !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        font-size: 40px !important;
        opacity: 0.06 !important;
        z-index: 0 !important;
        animation: none !important;
        pointer-events: none !important;
        line-height: 120px !important;
        word-spacing: 60px !important;
    }
    
    /* ==========================================
       FADE-IN ANIMATION CLASSES
       Controlled by JavaScript
       ========================================== */
    
    .fade-in-element {
        opacity: 0 !important;
        transform: translateY(30px) !important;
        transition: opacity 0.6s ease-out, transform 0.6s ease-out !important;
    }
    
    .fade-in-element.visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Don't animate header, nav, slideshow */
    header,
    .top-bar,
    nav,
    .hero-slider,
    .slide,
    .slide.active {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    /* ==========================================
       COLORFUL HEADER
       ========================================== */
    
    .top-bar {
        background: linear-gradient(135deg, 
            rgba(255, 152, 140, 0.85) 0%, 
            rgba(255, 130, 120, 0.85) 100%) !important;
        color: white !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
        text-align: center !important;
        box-shadow: 0 2px 12px rgba(255, 152, 140, 0.25) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    header {
        padding: 2rem 1rem !important;
        min-height: auto !important;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 250, 250, 0.95) 100%) !important;
        box-shadow: 0 3px 15px rgba(231, 76, 60, 0.12) !important;
        position: relative !important;
        z-index: 999 !important;
        border-bottom: 2px solid rgba(255, 152, 140, 0.3) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .header-content {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .header-left,
    .header-right {
        display: none !important;
    }
    
    /* ==========================================
       BIGGER LOGO - NO CIRCLE
       ========================================== */
    
    .logo {
        position: static !important;
        transform: none !important;
        margin: 0 auto !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        left: auto !important;
    }
    
    .logo img {
        height: 100px !important;
        width: auto !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: block !important;
    }
    
    .logo-text {
        font-size: 1.2rem !important;
        margin: 0 !important;
        text-align: center !important;
        color: #e74c3c !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        max-width: 320px !important;
    }
    
    /* ==========================================
       HAMBURGER MENU BUTTON
       ========================================== */
    
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-around !important;
        width: 30px !important;
        height: 25px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 2000 !important;
        position: absolute !important;
        right: 1.5rem !important;
        top: 2rem !important;
    }
    
    .hamburger span {
        width: 100% !important;
        height: 3px !important;
        background: #e74c3c !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px) !important;
    }
    
    /* ==========================================
       NAVIGATION
       ========================================== */
    
    nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: linear-gradient(180deg, white 0%, #fff5f5 100%) !important;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15) !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1500 !important;
        overflow-y: auto !important;
        padding: 5rem 0 2rem 0 !important;
    }
    
    nav.active {
        right: 0 !important;
    }
    
    .nav-content {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    
    nav a {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        border-bottom: 1px solid #ffe6f0 !important;
        text-align: left !important;
        color: #2d2d2d !important;
        font-weight: 600 !important;
        transition: all 0.2s !important;
    }
    
    nav a:hover,
    nav a:active {
        background: linear-gradient(90deg, #fff5f5 0%, #ffe6f0 100%) !important;
        color: #e74c3c !important;
        transform: translateX(5px) !important;
    }
    
    .dropdown {
        width: 100% !important;
    }
    
    .dropdown-toggle {
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(255, 230, 240, 0.6) !important;
        background: transparent !important;
        color: #2d2d2d !important;
        font-weight: 600 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        cursor: pointer !important;
        border: none !important;
        font-size: 1rem !important;
        font-family: inherit !important;
    }
    
    .dropdown-toggle::after {
        content: "▼" !important;
        font-size: 0.7rem !important;
        transition: transform 0.3s ease !important;
        color: #ff6b7a !important;
        margin-left: 0.5rem !important;
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg) !important;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        background: linear-gradient(135deg, 
            rgba(255, 245, 247, 0.98) 0%, 
            rgba(255, 240, 244, 0.98) 100%) !important;
        border-radius: 0 !important;
        box-shadow: inset 0 2px 8px rgba(255, 107, 122, 0.08) !important;
        display: none !important;
        margin: 0 !important;
        padding: 0.5rem 0 !important;
        border-left: 3px solid rgba(255, 107, 122, 0.4) !important;
        overflow: hidden !important;
        max-height: 0 !important;
        transition: max-height 0.3s ease !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
        max-height: 500px !important;
    }
    
    .dropdown-menu a {
        padding: 0.875rem 2.5rem !important;
        background: transparent !important;
        font-size: 0.95rem !important;
        color: #5a4a5a !important;
        transition: all 0.2s ease !important;
        display: block !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 152, 140, 0.12) !important;
        padding-left: 3rem !important;
        color: #e74c3c !important;
    }
    
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        backdrop-filter: blur(2px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* ==========================================
       WORKING SLIDESHOW - MULTIPLE IMAGES
       ========================================== */
    
    .hero-slider {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    /* All slides positioned absolutely */
    .slide {
        display: block !important;
        width: 100% !important;
        height: 300px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        opacity: 0 !important;
        transition: opacity 1s ease-in-out !important;
        grid-template-columns: none !important;
        padding: 0 !important;
        gap: 0 !important;
    }
    
    /* Show first slide by default */
    .slide:first-child {
        opacity: 1 !important;
        z-index: 2 !important;
    }
    
    /* Active slide */
    .slide.active {
        opacity: 1 !important;
        z-index: 2 !important;
    }
    
    .slide-image {
        display: block !important;
        width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .slide-content {
        display: none !important;
    }
    
    /* Hide all slide grid columns on mobile */
    .slide > *:not(.slide-image) {
        display: none !important;
    }
    
    .slide::before {
        display: none !important;
    }
    
    /* Slideshow navigation dots */
    .slider-dots {
        position: absolute !important;
        bottom: 1rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        gap: 0.5rem !important;
        z-index: 10 !important;
        background: rgba(0,0,0,0.3) !important;
        padding: 0.5rem 1rem !important;
        border-radius: 20px !important;
    }
    
    .dot {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.5) !important;
        border: none !important;
        cursor: pointer !important;
        transition: all 0.3s !important;
        flex-shrink: 0 !important;
    }
    
    .dot.active {
        width: 14px !important;
        height: 14px !important;
        background: white !important;
    }
    
    .dot:hover {
        width: 12px !important;
        height: 12px !important;
        background: rgba(255,255,255,0.8) !important;
    }
    
    /* Alternative: Show a specific hero image if no slider */
    .hero-image,
    .main-hero-image,
    .welcome-image {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
        object-position: center !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    /* ==========================================
       COLORFUL HERO SECTIONS
       ========================================== */
    
    .franchise-hero,
    .location-hero,
    .franchise-hero-red,
    .about-hero {
        padding: 2.5rem 1.5rem !important;
        text-align: center !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
        margin: 1rem 0.5rem !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
    }
    
    .franchise-hero h1,
    .location-hero h1,
    .franchise-hero-red h1,
    .about-hero h1 {
        font-size: 1.85rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
        font-weight: 700 !important;
        color: #e74c3c !important;
        text-shadow: none !important;
    }
    
    .franchise-hero p,
    .location-hero p,
    .franchise-hero-red p,
    .about-hero p,
    .hero-subtitle {
        color: #5a4a5a !important;
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        text-shadow: none !important;
    }
    
    /* ==========================================
       WIDER HERO CONTENT BOX
       ========================================== */
    
    .hero-content-box {
        width: calc(100% - 1rem) !important;
        margin: 1.5rem 0.5rem !important;
        padding: 2.5rem 2rem !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* Remove double layering when hero-content-box is inside a hero section */
    .franchise-hero .hero-content-box,
    .location-hero .hero-content-box,
    .franchise-hero-red .hero-content-box,
    .about-hero .hero-content-box {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        backdrop-filter: none !important;
    }
    
    .hero-content-box::before,
    .hero-content-box::after {
        display: none !important;
    }
    
    .hero-content-box h1,
    .hero-content-box h2 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        color: #e74c3c !important;
        font-weight: 700 !important;
    }
    
    .hero-content-box p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        color: #5a6c7d !important;
        margin-bottom: 1rem !important;
    }
    
    /* ==========================================
       WIDER SECTIONS
       ========================================== */
    
    section {
        width: 100% !important;
        padding: 2rem 0.5rem !important;
        margin: 0 !important;
        background: transparent !important;
    }
    
    .content-section {
        padding: 1rem 0.5rem !important;
        max-width: 100% !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
        color: #e74c3c !important;
        font-weight: 700 !important;
        text-align: center !important;
        text-shadow: 1px 1px 2px rgba(231, 76, 60, 0.1) !important;
    }
    
    /* ==========================================
       TYPOGRAPHY
       ========================================== */
    
    h1 {
        font-size: 1.95rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        font-weight: 700 !important;
        color: #2d2d2d !important;
    }
    
    h2 {
        font-size: 1.7rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        font-weight: 700 !important;
        color: #e74c3c !important;
    }
    
    h3 {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
        font-weight: 600 !important;
        color: #2d2d2d !important;
    }
    
    h4 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.625rem !important;
        font-weight: 600 !important;
        color: #e74c3c !important;
    }
    
    p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1.125rem !important;
        color: #5a6c7d !important;
    }
    
    strong {
        font-weight: 600 !important;
        color: #2d2d2d !important;
    }
    
    /* ==========================================
       COLORFUL BUTTONS
       ========================================== */
    
    .btn,
    .slide-btn,
    .learn-more-btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.125rem 2rem !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        border-radius: 12px !important;
        margin: 1.25rem 0 !important;
        display: block !important;
        text-align: center !important;
        min-height: 52px !important;
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3) !important;
        transition: all 0.2s !important;
        background: linear-gradient(135deg, #e74c3c 0%, #ff6b5a 100%) !important;
        border: none !important;
        color: white !important;
    }
    
    .btn:active {
        transform: scale(0.98) !important;
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4) !important;
    }
    
    .btn-large {
        padding: 1.25rem 2rem !important;
        font-size: 1.1rem !important;
    }
    
    /* ==========================================
       WIDER COLORFUL CARDS - WHITE ROUNDED BOXES
       ========================================== */
    
    .service-card,
    .benefit-item,
    .feature-box,
    .option-card,
    .team-card,
    .location-card,
    .award-item,
    .testimonial-card,
    .faq-item {
        width: calc(100% - 1rem) !important;
        margin: 0 0.5rem 1.25rem 0.5rem !important;
        padding: 2rem 1.75rem !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 6px 25px rgba(0,0,0,0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        transition: all 0.2s !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* Colorful card variations */
    .service-card:nth-child(1),
    .benefit-item:nth-child(1) {
        border-color: rgba(255, 105, 180, 0.3) !important;
        background: linear-gradient(135deg, white 0%, #fff0f5 100%) !important;
    }
    
    .service-card:nth-child(2),
    .benefit-item:nth-child(2) {
        border-color: rgba(30, 144, 255, 0.3) !important;
        background: linear-gradient(135deg, white 0%, #f0f8ff 100%) !important;
    }
    
    .service-card:nth-child(3),
    .benefit-item:nth-child(3) {
        border-color: rgba(255, 165, 0, 0.3) !important;
        background: linear-gradient(135deg, white 0%, #fff8f0 100%) !important;
    }
    
    .service-card:nth-child(4),
    .benefit-item:nth-child(4) {
        border-color: rgba(147, 112, 219, 0.3) !important;
        background: linear-gradient(135deg, white 0%, #f8f0ff 100%) !important;
    }
    
    .service-card:nth-child(5),
    .benefit-item:nth-child(5) {
        border-color: rgba(46, 204, 113, 0.3) !important;
        background: linear-gradient(135deg, white 0%, #f0fff5 100%) !important;
    }
    
    .service-card:nth-child(6),
    .benefit-item:nth-child(6) {
        border-color: rgba(255, 215, 0, 0.3) !important;
        background: linear-gradient(135deg, white 0%, #fffaf0 100%) !important;
    }
    
    .service-card:active,
    .benefit-item:active,
    .feature-box:active {
        transform: translateY(-4px) !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    }
    
    /* Card headings */
    .service-card h4,
    .benefit-item h3,
    .feature-box h3 {
        font-size: 1.35rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-card p,
    .benefit-item p,
    .feature-box p {
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
        color: #1a1a1a !important;
    }
    
    /* ULTRA AGGRESSIVE - Force all card text to be VERY dark and visible */
    .service-card,
    .service-card *,
    .benefit-item,
    .benefit-item *,
    .feature-box,
    .feature-box *,
    .option-card,
    .option-card *,
    .party-package,
    .party-package *,
    div[style*="background"],
    div[style*="background"] * {
        color: #1a1a1a !important;
    }
    
    /* Override ANY inherited colors - extra strong */
    .service-card h1,
    .service-card h2,
    .service-card h3,
    .service-card h4,
    .service-card p,
    .service-card span,
    .service-card div,
    .option-card h1,
    .option-card h2,
    .option-card h3,
    .option-card h4,
    .option-card p,
    .option-card span,
    .option-card div {
        color: #1a1a1a !important;
        text-shadow: none !important;
    }
    
    /* Party package specific styling - VERY DARK */
    .party-package h2,
    .party-package h3,
    .option-card h2,
    .option-card h3 {
        color: #000000 !important;
        font-weight: 700 !important;
        text-shadow: none !important;
    }
    
    /* Ages/Hours subtitle text - DARK */
    .party-package .subtitle,
    .party-package p:first-of-type,
    .option-card .subtitle,
    .option-card p:first-of-type {
        color: #2d2d2d !important;
        font-size: 0.95rem !important;
        text-shadow: none !important;
    }
    
    /* Description text - VERY DARK */
    .party-package .description,
    .party-package p:last-of-type,
    .option-card .description,
    .option-card p:last-of-type {
        color: #1a1a1a !important;
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-shadow: none !important;
    }
    
    /* What's Included list - VERY DARK */
    .party-package ul,
    .party-package li,
    .option-card ul,
    .option-card li {
        color: #1a1a1a !important;
        font-size: 0.9rem !important;
        text-shadow: none !important;
    }
    
    /* Force paragraph text everywhere */
    p, span, div:not([class*="btn"]):not([class*="button"]) {
        color: #1a1a1a !important;
    }
    
    /* Card icons */
    .service-icon,
    .feature-icon,
    .benefit-icon {
        font-size: 3.75rem !important;
        margin-bottom: 1rem !important;
        animation: none !important;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)) !important;
    }
    
    .service-icon::before,
    .service-icon::after {
        display: none !important;
    }
    
    /* ==========================================
       LOCATION SEARCH - FIXED
       ========================================== */
    
    .zip-search-container {
        max-width: 100% !important;
        margin: 0 !important;
        background: transparent !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .zip-search-box {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .zip-input {
        width: 100% !important;
        padding: 1rem !important;
        border: 2px solid #e0e0e0 !important;
        border-radius: 8px !important;
        font-size: 1.1rem !important;
        display: block !important;
    }
    
    .location-btn {
        width: 100% !important;
        padding: 1rem !important;
        background: #e74c3c !important;
        color: white !important;
        border: none !important;
        border-radius: 8px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        display: block !important;
    }
    
    .locations-results {
        display: none !important;
        margin-top: 2rem !important;
    }
    
    .locations-results.show {
        display: block !important;
    }
    
    #results-container {
        display: block !important;
        width: 100% !important;
    }
    
    /* Location cards - override general card styling with specific layout */
    .location-card {
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1px solid rgba(231, 76, 60, 0.2) !important;
        border-radius: 16px !important;
        padding: 1.25rem !important;
        margin-bottom: 1rem !important;
        width: calc(100% - 1rem) !important;
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
        display: block !important;
        cursor: pointer !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
        transition: all 0.3s !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .location-card:hover {
        border-color: #e74c3c !important;
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.2) !important;
        transform: translateY(-2px) !important;
    }
    
    .location-card .location-icon {
        font-size: 2rem !important;
        display: inline-block !important;
        margin: 0 0.5rem 0 0 !important;
        vertical-align: middle !important;
    }
    
    .location-card h4,
    .location-card strong {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: #2d2d2d !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.3 !important;
        display: block !important;
    }
    
    /* Force all location card text to be VERY dark */
    .location-card,
    .location-card *:not(.btn):not(button) {
        color: #1a1a1a !important;
        text-shadow: none !important;
    }
    
    .location-card p,
    .location-card span:not(.badge):not(.distance),
    .location-card div:not(.btn) {
        display: block !important;
        color: #2d2d2d !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin: 0.3rem 0 !important;
        text-shadow: none !important;
    }
    
    /* Override any white text - ULTRA DARK */
    .location-card h4,
    .location-card strong,
    .location-card b,
    .location-card h3,
    .location-card h2 {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    .location-card button,
    .location-card .btn,
    .location-card a,
    .location-card a[class*="btn"] {
        width: 100% !important;
        padding: 0.85rem 1.25rem !important;
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 10px !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s !important;
        margin-top: 0.75rem !important;
        text-align: center !important;
        display: block !important;
        text-decoration: none !important;
    }
    
    .location-card button:hover,
    .location-card .btn:hover,
    .location-card a:hover {
        transform: scale(1.02) !important;
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3) !important;
        color: white !important;
    }
    
    /* ==========================================
       DISTANCE BADGES & LOCATION FINDER IMPROVEMENTS
       ========================================== */
    
    /* Distance badges (13.7 mi, 18.6 mi, etc.) */
    .location-card .distance,
    .location-card .badge,
    .location-card [class*="distance"],
    .location-card [class*="badge"] {
        display: inline-block !important;
        background: #2ecc71 !important;
        color: white !important;
        padding: 0.35rem 0.75rem !important;
        border-radius: 20px !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        margin: 0.25rem 0 !important;
        float: right !important;
    }
    
    /* Party Place badge */
    .location-card .party-place-badge,
    .location-card [class*="party-place"] {
        background: #e74c3c !important;
        color: white !important;
        padding: 0.3rem 0.7rem !important;
        border-radius: 6px !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        display: inline-block !important;
        margin-left: 0.5rem !important;
    }
    
    /* Travel Team badge */
    .location-card .travel-badge,
    .location-card [class*="travel"],
    .location-card [class*="Travel"] {
        background: #3498db !important;
        color: white !important;
        padding: 0.3rem 0.7rem !important;
        border-radius: 6px !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        display: inline-block !important;
        margin-left: 0.5rem !important;
    }
    
    /* RED HEADER BOXES - White text */
    div[style*="background: #e74c3c"],
    div[style*="background:#e74c3c"],
    div[style*="background: rgb(231, 76, 60)"],
    div[style*="background-color: #e74c3c"],
    [class*="package-header"],
    [style*="background-color: #e74c3c"],
    [style*="background-color:#e74c3c"],
    [style*="background-color: rgb(231"],
    [style*="background: linear-gradient"][style*="#e74c3c"] {
        color: white !important;
    }
    
    /* Force WHITE text on all red/orange backgrounds */
    div[style*="background: #e74c3c"] *,
    div[style*="background:#e74c3c"] *,
    div[style*="background-color: #e74c3c"] *,
    div[style*="background-color:#e74c3c"] *,
    [style*="background-color: rgb(231"] *,
    [style*="background: linear-gradient"][style*="#e74c3c"] * {
        color: white !important;
    }
    
    /* Distance badges - ensure white text on colored backgrounds */
    .location-card .distance,
    .location-card .badge,
    .location-card [class*="distance"],
    .location-card [class*="badge"],
    span[style*="background"],
    div[style*="background"][style*="border-radius"] {
        color: white !important;
    }
    
    /* "PACKAGE A", "PACKAGE B" headers - WHITE text on red */
    h2[style*="background"],
    h3[style*="background"],
    div[style*="background"] h2,
    div[style*="background"] h3,
    div[style*="background"] h4 {
        color: white !important;
    }
    
    /* "Ages 2½ - 1½ Hours" subtitle on red - WHITE text */
    div[style*="background"] p:first-of-type,
    div[style*="background"] .subtitle,
    [style*="background: #e74c3c"] + * {
        color: white !important;
    }
    
    /* Location name styling - even more compact for better fit */
    .location-card .location-name,
    .location-card h3,
    .location-card h4:first-of-type {
        font-size: 0.95rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.3rem !important;
        display: inline-block !important;
        max-width: 60% !important;
        font-weight: 700 !important;
    }
    
    /* Address styling - more compact */
    .location-card .address,
    .location-card p:last-of-type {
        font-size: 0.8rem !important;
        color: #666 !important;
        margin: 0.2rem 0 !important;
        line-height: 1.3 !important;
    }
    
    /* All location card text more compact */
    .location-card p,
    .location-card span:not(.badge):not(.distance) {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin: 0.25rem 0 !important;
    }
    
    /* ZIP finder section improvements */
    .zip-finder,
    .party-finder,
    [class*="finder"] {
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 16px !important;
        padding: 1.5rem 1.25rem !important;
        margin: 1rem 0.5rem !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Search input */
    input[type="text"],
    input[placeholder*="ZIP"] {
        width: 100% !important;
        padding: 0.85rem 1rem !important;
        border: 2px solid #e0e0e0 !important;
        border-radius: 10px !important;
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Search buttons side by side */
    .finder-buttons,
    [class*="button-group"] {
        display: flex !important;
        gap: 0.5rem !important;
        margin-top: 0.75rem !important;
    }
    
    .finder-buttons button,
    .finder-buttons .btn {
        flex: 1 !important;
        padding: 0.85rem 1rem !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }
    
    /* ==========================================
       SHOW IMAGES - LARGER
       ========================================== */
    
    /* Award images */
    .award-item img {
        max-width: 240px !important;
        height: auto !important;
        margin: 0 auto 1.25rem auto !important;
        border-radius: 12px !important;
        display: block !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    }
    
    /* Team card images */
    .team-card img {
        max-width: 260px !important;
        height: auto !important;
        margin: 0 auto 1.25rem auto !important;
        border-radius: 12px !important;
        display: block !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    }
    
    /* Location images */
    .location-image {
        width: 200px !important;
        height: 200px !important;
        object-fit: contain !important;
        margin: 0 auto 1.25rem auto !important;
        border-radius: 12px !important;
        display: block !important;
        background: white !important;
        padding: 0.5rem !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    }
    
    /* Benefit images */
    .benefit-image {
        max-width: 150px !important;
        height: 115px !important;
        object-fit: cover !important;
        border-radius: 10px !important;
        margin: 0 auto 1rem auto !important;
        display: block !important;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1) !important;
    }
    
    /* Option card images */
    .option-image {
        max-width: 100% !important;
        height: 240px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        margin-bottom: 1.25rem !important;
        display: block !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    }
    
    /* Hide decorative column images */
    .column-image {
        display: none !important;
    }
    
    /* Hide column content sections on mobile */
    .column-content,
    .column-text {
        display: none !important;
    }
    
    /* About images */
    .about-image,
    .mobile-image-about {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        margin: 0 auto 1.25rem auto !important;
        display: block !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    }
    
    /* Allergy badge */
    .allergy-badge-about img {
        max-width: 160px !important;
        margin: 0 auto 1rem auto !important;
        display: block !important;
        filter: drop-shadow(0 4px 8px rgba(46, 204, 113, 0.3)) !important;
    }
    
    /* ==========================================
       GRIDS
       ========================================== */
    
    .services-grid,
    .benefits-grid,
    .features-grid,
    .awards-grid,
    .testimonials-grid,
    .franchise-options,
    .two-column,
    .side-by-side-sections,
    .two-column-about {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
        grid-template-columns: 1fr !important;
    }
    
    /* ==========================================
       COLORFUL ALLERGEN GRID
       ========================================== */
    
    .allergen-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 1rem 0.5rem !important;
    }
    
    .allergen-item {
        padding: 1.75rem 1.5rem !important;
        border-radius: 16px !important;
        min-height: 190px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        background: linear-gradient(135deg, white 0%, #f0fff4 100%) !important;
        border: 2px solid rgba(46, 204, 113, 0.3) !important;
        box-shadow: 0 4px 12px rgba(46, 204, 113, 0.1) !important;
    }
    
    .allergen-icon {
        font-size: 3.75rem !important;
        margin-bottom: 0.875rem !important;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)) !important;
    }
    
    .allergen-item h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        color: #27ae60 !important;
        font-weight: 700 !important;
    }
    
    .allergen-item p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        color: #5a6c7d !important;
    }
    
    /* ==========================================
       WIDER SPECIAL SECTIONS
       ========================================== */
    
    .story-section {
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 2.5rem 2rem !important;
        margin: 1.25rem 0.5rem !important;
        border-radius: 20px !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .allergy-section {
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 2.5rem 2rem !important;
        margin: 1.25rem 0.5rem !important;
        border-radius: 20px !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .mobile-section-about {
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 2.5rem 2rem !important;
        margin: 1.25rem 0.5rem !important;
        border-radius: 20px !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* ==========================================
       ABOUT PAGE - ENSURE VISIBILITY
       ========================================== */
    
    .about-content,
    .about-container {
        display: block !important;
        width: 100% !important;
        padding: 1rem !important;
    }
    
    .section-left,
    .section-right,
    .mobile-content-about,
    .allergy-content-about {
        display: block !important;
        width: 100% !important;
        margin-bottom: 2rem !important;
    }
    
    .about-image-container,
    .about-image-container img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Force all about text sections to show */
    .about-text,
    .mobile-text-about,
    .allergy-text-about,
    .story-section p,
    .allergy-section p {
        display: block !important;
        width: 100% !important;
    }
    
    /* ==========================================
       COLORFUL FOOTER
       ========================================== */
    
    footer {
        background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%) !important;
        padding: 2.5rem 1rem 1.5rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: left !important;
    }
    
    .footer-section {
        padding: 0 !important;
        border-bottom: 1px solid rgba(231, 76, 60, 0.3) !important;
        padding-bottom: 1.5rem !important;
    }
    
    .footer-section:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    
    .footer-section h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0.875rem !important;
        color: #ff6b5a !important;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .footer-bottom {
        padding-top: 1.5rem !important;
        margin-top: 1.5rem !important;
        font-size: 0.875rem !important;
        border-top: 1px solid rgba(231, 76, 60, 0.3) !important;
    }
    
    /* ==========================================
       FORMS
       ========================================== */
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 16px !important;
        border-radius: 10px !important;
        border: 2px solid #ffe6f0 !important;
        margin-bottom: 1.125rem !important;
        background: white !important;
        transition: all 0.2s !important;
    }
    
    input:focus,
    textarea:focus,
    select:focus {
        border-color: #e74c3c !important;
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
    }
    
    /* ==========================================
       SPACING
       ========================================== */
    
    .franchise-benefits,
    .franchise-testimonials,
    .franchise-faq,
    .franchise-stats {
        padding: 2rem 0.5rem !important;
    }
    
    .two-column-about,
    .mobile-content-about,
    .allergy-content-about {
        margin-bottom: 1.25rem !important;
    }
    
    .franchise-intro,
    .about-content {
        padding: 1rem 0.5rem !important;
    }
    
    /* ==========================================
       COLORFUL AWARDS
       ========================================== */
    
    .awards-section {
        padding: 2rem 0.5rem !important;
        background: transparent !important;
    }
    
    .awards-title {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
        color: #e74c3c !important;
    }
    
    .awards-title::before,
    .awards-title::after {
        display: none !important;
    }
    
    .awards-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }
    
    .award-item {
        background: linear-gradient(135deg, white 0%, #fffaf0 100%) !important;
        border: 2px solid rgba(255, 215, 0, 0.3) !important;
    }
    
    .award-item:nth-child(even) {
        background: linear-gradient(135deg, white 0%, #f8f0ff 100%) !important;
        border: 2px solid rgba(147, 112, 219, 0.3) !important;
    }
    
    /* ==========================================
       TRAVEL TEAMS
       ========================================== */
    
    .travel-teams-container {
        padding: 1rem 0.5rem !important;
    }
    
    .teams-scroll {
        gap: 1rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .team-card {
        min-width: 320px !important;
        padding: 2rem 1.75rem !important;
    }
    
    .scroll-arrow {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.25rem !important;
        background: white !important;
        color: #e74c3c !important;
        border: 2px solid #e74c3c !important;
        box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3) !important;
    }
    
    /* ==========================================
       TESTIMONIALS
       ========================================== */
    
    .testimonial-card {
        padding: 2.5rem 2rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .testimonial-content p {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
    }
    
    /* ==========================================
       FAQ
       ========================================== */
    
    .faq-item {
        padding: 2.5rem 2rem !important;
    }
    
    .faq-item h3 {
        font-size: 1.35rem !important;
    }
    
    .faq-item p {
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
    }
    
    /* ==========================================
       FIX HEIGHTS
       ========================================== */
    
    section,
    .section,
    .container,
    .wrapper,
    main {
        height: auto !important;
        min-height: auto !important;
    }
    
    * {
        min-height: 0 !important;
    }
    
    nav {
        min-height: 100vh !important;
    }
    
    .hero-slider {
        height: 300px !important;
    }
    
    /* ==========================================
       SMOOTH TRANSITIONS
       ========================================== */
    
    .btn:active,
    .service-card:active,
    .benefit-item:active,
    nav a:active {
        transform: scale(0.98) !important;
    }
}

/* ==========================================
   VERY SMALL PHONES
   ========================================== */

@media (max-width: 400px) {
    .allergen-grid {
        grid-template-columns: 1fr !important;
    }
    
    .allergen-item {
        min-height: 160px !important;
    }
    
    .logo img {
        height: 90px !important;
    }
    
    .hero-slider,
    .slide,
    .slide-image,
    .hero-image {
        height: 250px !important;
    }
    
    h1 {
        font-size: 1.7rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
}

/* ==========================================
   TABLETS (landscape)
   ========================================== */

@media (min-width: 600px) and (max-width: 968px) {
    .allergen-grid,
    .awards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .logo img {
        height: 120px !important;
    }
    
    /* ==========================================
       FINAL COLOR OVERRIDES - MAXIMUM PRIORITY
       ========================================== */
    
    /* WHITE text on ALL red/orange backgrounds */
    [style*="background"][style*="#e74c3c"],
    [style*="background"][style*="231, 76, 60"],
    [style*="background"][style*="rgb(231"],
    [style*="background-color: #e74c3c"],
    [style*="backgroundColor: #e74c3c"],
    .red-bg,
    .orange-bg,
    .package-header {
        color: white !important;
    }
    
    [style*="background"][style*="#e74c3c"] *,
    [style*="background"][style*="231, 76, 60"] *,
    [style*="background-color: #e74c3c"] *,
    .red-bg *,
    .orange-bg *,
    .package-header * {
        color: white !important;
    }
    
    /* WHITE text on colored badges/pills */
    [style*="background"][style*="border-radius: 20px"],
    [style*="background"][style*="border-radius:20px"],
    [style*="background"][style*="pill"],
    .badge,
    .pill,
    .tag {
        color: white !important;
    }
    
    /* Ensure Travel Team text is readable */
    [class*="travel"] span,
    [class*="Travel"] span,
    .travel-badge,
    .Travel,
    span[style*="background: #3498db"],
    span[style*="background:#3498db"] {
        color: white !important;
        font-weight: 600 !important;
    }
}
/* ==========================================
   MAC-SPECIFIC TEXT RENDERING FIXES
   Prevents text cutoff on Mac browsers
   ========================================== */

/* Ensure adequate line-height for all text elements */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

p {
    line-height: 1.6;
}

/* Prevent card text cutoff */
.service-card,
.benefit-item,
.option-card,
.team-card {
    overflow: visible;
}

.service-card h4,
.benefit-item h3,
.option-card h3,
.team-card h3 {
    line-height: 1.3;
}

/* Logo text fix */
.logo-text {
    line-height: 1.3;
}

/* Header links fix */
.header-left a,
.header-right a {
    line-height: 1.4;
}
/* ==========================================
   REMOVE FLOATING EMOJIS ONLY
   ========================================== */

.slide::before,
.slide::after,
.slide-content::before,
.slide-content::after,
.service-icon::before,
.service-icon::after,
.service-card .service-icon::before,
.service-card .service-icon::after,
.service-card:nth-child(1) .service-icon::before,
.service-card:nth-child(1) .service-icon::after,
.service-card:nth-child(2) .service-icon::before,
.service-card:nth-child(2) .service-icon::after,
.service-card:nth-child(3) .service-icon::before,
.service-card:nth-child(3) .service-icon::after,
.service-card:nth-child(4) .service-icon::before,
.service-card:nth-child(4) .service-icon::after,
.service-card:nth-child(5) .service-icon::before,
.service-card:nth-child(5) .service-icon::after,
.service-card:nth-child(6) .service-icon::before,
.service-card:nth-child(6) .service-icon::after {
    display: none !important;
}

/* ==========================================

/* ==========================================
   FIX NAV SPACING - TIGHTER FOR ALL SCREENS
   ========================================== */

.nav-content {
    gap: 1rem !important;
    max-width: 1200px !important;
}

nav a {
    font-size: 0.78rem !important;
    letter-spacing: 0.4px !important;
    white-space: nowrap !important;
}

/* Extra tight for Mac specifically */
@supports (-webkit-backdrop-filter: blur(1px)) {
    .nav-content {
        gap: 0.8rem !important;
    }
    
    nav a {
        font-size: 0.75rem !important;
        letter-spacing: 0.3px !important;
    }
}

/* ==========================================



/* ==========================================
   FIX HEADER HEIGHT AND NAV FONT SIZE
   ========================================== */

header {
    min-height: 120px !important;
    padding: 1rem 3rem !important;
}

.logo img {
    height: 110px !important;
    width: 110px !important;
}

/* Make nav font larger */
nav a {
    font-size: 0.82rem !important;
}

/* Override for Mac */
@supports (-webkit-backdrop-filter: blur(1px)) {
    nav a {
        font-size: 0.8rem !important;
    }
}

/* ==========================================
   CHANGE PINK GRADIENTS TO RED
   ========================================== */

/* Service cards - change from pink to red tones */
.service-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 235, 235, 0.8) 0%, rgba(255, 220, 220, 0.8) 100%) !important;
}

.service-card:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(255, 220, 220, 0.95) 0%, rgba(255, 200, 200, 0.95) 100%) !important;
    border-color: rgba(231, 76, 60, 0.5) !important;
}

/* Background sections */
body {
    background: #fff5f5 !important;
}

.hero-content-box,
.franchise-hero,
.content-section {
    background: linear-gradient(135deg, rgba(255, 245, 245, 0.95) 0%, rgba(255, 240, 240, 0.95) 100%) !important;
}

/* Package cards and options */
.package-card,
.option-card {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8e8 100%) !important;
}

/* Award items */
.award-item {
    background: linear-gradient(135deg, white 0%, #fff5f5 100%) !important;
    border: 2px solid rgba(231, 76, 60, 0.3) !important;
}

/* Testimonials */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 250, 250, 0.95) 0%, rgba(255, 245, 245, 0.95) 100%) !important;
}

/* FAQ items */
.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 245, 0.95) 100%) !important;
}

/* Team cards */
.team-card {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8e8 100%) !important;
}

/* Forms and inputs - change pink borders to red */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    border: 2px solid #ffe0e0 !important;
}

/* Navigation and header tweaks */
nav {
    background: linear-gradient(90deg, #ffffff 0%, #fff8f8 100%) !important;
}