/* ============================================
   ROOT VARIABLES & RESET
============================================ */
:root {
    --primary-pink: #f16f80;
    --primary-blue: #25a9e0;
    --primary-cyan: #25a9e0;
    --primary-teal: #25a9e0;
    --dark-teal: #1a8bc2;
    --light-pink: #fde8eb;
    --light-blue: #e6f5fb;
    --white: #ffffff;
    --black: #000000;
    --gray: #757575;
    --light-gray: #f5f5f5;
    --font-main: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-pink);
}

.nav-menu a.nav-btn {
    background: var(--primary-pink);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu a.nav-btn::after {
    display: none;
}

.nav-menu a.nav-btn:hover {
    background: #d85a6a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 111, 128, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 60vh;
    height: auto;
    background: url('../images/hero-img.jpg') center top / cover no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 7;
}

@media (min-width: 1200px) {
    .hero {
        min-height: 70vh;
        aspect-ratio: 16 / 6;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 50vh;
        aspect-ratio: 16 / 8;
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 40vh;
        aspect-ratio: 16 / 9;
        margin-top: 70px;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 35vh;
        aspect-ratio: 4 / 3;
        margin-top: 60px;
        background-position: center center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
    padding: 100px 0;
    text-align: center;
    background: var(--white);
}

.about h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about h2 span {
    color: var(--primary-pink);
}

.squiggle {
    width: 100px;
    margin: 20px auto;
}

.about-text {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 50px;
    line-height: 1.8;
}

.conveyor-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.conveyor {
    width: 100%;
}

.see-action-btn {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 111, 128, 0.4);
}

.see-action-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 169, 224, 0.4);
}

/* ============================================
   LEARN MORE SECTION
============================================ */
.learn-more {
    padding: 80px 0;
    background: linear-gradient(135deg, #25a9e0 0%, #1a8bc2 100%);
    text-align: center;
}

.learn-more h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.alert {
    max-width: 600px;
    margin: 0 auto 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-family: var(--font-main);
    flex: 1;
    min-width: 0;
    outline: none;
    transition: box-shadow 0.3s ease;
    resize: vertical;
}

.contact-form textarea {
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.contact-form button {
    padding: 15px 50px;
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form button:hover {
    background: #d85a6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.recaptcha-row {
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.recaptcha-row .g-recaptcha {
    display: inline-block;
}

/* ============================================
   FLAVORS SECTION
============================================ */
.flavors {
    padding: 100px 0;
    background: var(--light-pink);
    text-align: center;
}

.flavors h2,
.partners h2,
.locations h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.toppings h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
    line-height: 1.8;
}

.flavors-carousel,
.toppings-carousel {
    position: relative;
    padding: 20px 60px;
    margin-bottom: 50px;
    overflow: visible;
}

.flavors-swiper,
.toppings-swiper {
    overflow: hidden;
}

.flavor-item,
.topping-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.flavor-item img {
    width: 350px;
    height: 350px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.flavor-item img:hover {
    transform: scale(1.05);
}

.flavor-item span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.topping-item span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.carousel-btn:hover {
    background: #d85a6a;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.dietary-text {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.dietary-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.dietary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dietary-item img {
    width: 60px;
    height: 60px;
}

.dietary-item span {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
}

.nutrition-link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nutrition-link:hover {
    background: #d85a6a;
    transform: translateY(-2px);
}

/* ============================================
   TOPPINGS SECTION
============================================ */
.toppings {
    padding: 100px 0 80px;
    background: var(--primary-blue);
    text-align: center;
    color: var(--white);
    overflow: visible;
    position: relative;
}

.toppings::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none"><path fill="%2325a9e0" d="M0,60 Q360,0 720,60 T1440,60 L1440,120 L0,120 Z"/></svg>') center bottom / cover no-repeat;
    z-index: 1;
}

.toppings .container {
    overflow: visible;
}

.toppings h2 {
    color: var(--white);
}

.toppings .section-text {
    color: rgba(255, 255, 255, 0.9);
}

.topping-item img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.topping-item img:hover {
    transform: scale(1.1);
}

.topping-item span {
    color: var(--white);
}

.toppings-carousel .carousel-btn {
    background: var(--white);
    color: var(--primary-blue);
    z-index: 20;
}

.toppings-carousel .carousel-btn:hover {
    background: var(--light-gray);
    transform: translateY(-50%) scale(1.1);
}

.toppings-caption {
    margin-top: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    padding-bottom: 0;
}

/* ============================================
   PEOPLE ENJOYING SECTION
============================================ */
.people-enjoying {
    position: relative;
    background: var(--primary-blue);
    padding: 0;
    overflow: hidden;
    min-height: 600px;
}

.people-enjoying::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none"><path fill="%2325a9e0" d="M0,60 Q360,120 720,60 T1440,60 L1440,0 L0,0 Z"/></svg>') center top / cover no-repeat;
    z-index: 2;
}

.people-enjoying::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none"><path fill="%2325a9e0" d="M0,60 Q360,0 720,60 T1440,60 L1440,120 L0,120 Z"/></svg>') center bottom / cover no-repeat;
    z-index: 2;
}

.people-enjoying-image {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    min-height: 600px;
}

.people-enjoying-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 33.33%;
    height: 100%;
    background: url('../images/customer-experience-1.jpg') center center / cover no-repeat;
    z-index: 0;
}

.people-enjoying-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 33.33%;
    height: 100%;
    background: url('../images/customer-experience-3.jpg') center center / cover no-repeat;
    z-index: 0;
}

.people-enjoying-image img {
    width: 100%;
    height: auto;
    display: none;
}

.people-enjoying-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}

.people-enjoying-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 33.33%;
    width: 33.34%;
    height: 100%;
    background: url('../images/customer-experience-2.jpg') center center / cover no-repeat;
    z-index: -1;
}

.people-enjoying-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.5) 20%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.5) 80%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
}

.overlay-content {
    max-width: 600px;
    color: var(--white);
    text-align: center;
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.overlay-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-pink);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #d85a6a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(241, 111, 128, 0.4);
}

.ice-cream-wave {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 2;
    display: none;
}

.ice-cream-wave.top {
    top: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none"><path fill="%2325a9e0" d="M0,0 C240,100 480,100 720,50 C960,0 1200,0 1440,80 L1440,0 L0,0 Z"/></svg>') center top / cover no-repeat;
}

.ice-cream-wave.bottom {
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none"><path fill="%23ffffff" d="M0,120 C240,20 480,20 720,70 C960,120 1200,120 1440,40 L1440,120 L0,120 Z"/></svg>') center bottom / cover no-repeat;
    display: none;
}

@media (max-width: 768px) {
    .ice-cream-wave {
        height: 50px;
    }
    
    .people-enjoying-image img {
        min-height: 400px;
        max-height: 500px;
    }
    
    .overlay-content h2 {
        font-size: 1.8rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .people-enjoying-overlay {
        padding: 0 5%;
    }
}

@media (max-width: 480px) {
    .ice-cream-wave {
        height: 35px;
    }
    
    .people-enjoying-image img {
        min-height: 350px;
        max-height: 400px;
    }
    
    .overlay-content h2 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* ============================================
   PARTNERS SECTION
============================================ */
.partners {
    padding: 100px 0;
    background: var(--primary-blue);
    text-align: center;
}

.partners h2 {
    color: var(--white);
}

.partners .squiggle {
    filter: brightness(0) invert(1);
}

.partners .section-text {
    color: rgba(255, 255, 255, 0.9);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.partner-item {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.partner-item img {
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.partner-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.partner-item a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
}

.partner-item a:hover {
    text-decoration: underline;
}

/* ============================================
   FEATURED VIDEO SECTION
============================================ */
.featured-video {
    padding: 100px 0;
    background: linear-gradient(135deg, #f16f80 0%, #d85a6a 100%);
    text-align: center;
}

.featured-video h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.featured-video .section-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.video-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px 50px;
}

.video-swiper {
    overflow: hidden;
    border-radius: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #000;
    cursor: pointer;
    border-radius: 20px;
}

.video-title {
    text-align: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 15px;
    opacity: 0.9;
}

.video-slider-wrapper .carousel-btn {
    background: var(--white);
    color: var(--primary-pink);
    width: 50px;
    height: 50px;
    z-index: 10;
}

.video-slider-wrapper .carousel-btn:hover {
    background: var(--light-gray);
    transform: translateY(-50%) scale(1.1);
}

.video-slider-wrapper .prev-btn {
    left: 0;
}

.video-slider-wrapper .next-btn {
    right: 0;
}

.video-pagination {
    position: relative;
    margin-top: 30px;
    text-align: center;
}

.video-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.video-pagination .swiper-pagination-bullet-active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.video-cta {
    display: inline-block;
    margin-top: 40px;
    background: var(--white);
    color: var(--primary-blue);
}

.video-cta:hover {
    background: var(--primary-pink);
    color: var(--white);
}

/* Video Controls Styling */
.video-container video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.video-container video::-webkit-media-controls-play-button,
.video-container video::-webkit-media-controls-volume-slider {
    filter: brightness(1.2);
}

/* ============================================
   LOCATIONS SECTION
============================================ */
.locations {
    padding: 100px 0;
    background: var(--light-pink);
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.location-item:hover {
    transform: translateY(-10px);
}

.location-item img {
    width: 80px;
    height: 80px;
}

.location-item span {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    padding: 0;
    background: #f5f5f5;
    color: var(--text-dark);
    text-align: center;
}

.footer-instagram-section {
    background: #e8e8e8;
    padding: 40px 20px 40px;
    color: var(--text-dark);
    width: 100%;
    margin-top: 0;
}

.footer-main-content {
    background: linear-gradient(135deg, #25a9e0 0%, #1a8bc2 100%);
    padding: 60px 20px 40px;
    color: var(--white);
    width: 100%;
}

.footer-instagram-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-instagram-icon i {
    color: #555;
}

.footer h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.footer h2 a {
    color: var(--text-dark);
    transition: opacity 0.3s ease;
}

.footer h2 a:hover {
    opacity: 0.6;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.newsletter {
    flex: 1;
    min-width: 300px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-family: var(--font-main);
    width: 250px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #d85a6a;
    transform: translateY(-2px);
}

.newsletter-alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.newsletter-alert-success {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.4);
}

.newsletter-alert-error {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.4);
}

.footer-image {
    flex: 1;
    min-width: 300px;
}

.footer-image img,
.footer-image video {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.footer-logo {
    display: block;
    margin: 0 auto;
}

.footer-logo img {
    max-width: 280px;
    width: 100%;
    display: block;
}

.social-links {
    margin-bottom: 40px;
}

.social-links p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-pink);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* Extra Large Devices (Large Desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero {
        min-height: 75vh;
    }
    
    .about h2 {
        font-size: 3.5rem;
    }
    
    .about-text {
        font-size: 1.3rem;
    }
}

/* Large Devices (Desktops, 1200px and up) */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .partners-grid {
        gap: 30px;
    }
}

/* Medium-Large Devices (Small Desktops/Large Tablets, 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .nav-menu a.nav-btn {
        padding: 8px 20px;
    }
    
    .hero {
        min-height: 50vh;
        margin-top: 70px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about h2 {
        font-size: 2.5rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
    
    .learn-more {
        padding: 60px 0;
    }
    
    .learn-more h2 {
        font-size: 1.8rem;
    }
    
    .flavors,
    .toppings,
    .partners,
    .locations {
        padding: 80px 0;
    }
    
    .flavors h2,
    .toppings h2,
    .partners h2,
    .locations h2 {
        font-size: 2.2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* People Enjoying */
    .people-enjoying {
        min-height: 500px;
    }
    
    .people-enjoying-image {
        min-height: 500px;
    }
    
    .overlay-content h2 {
        font-size: 2rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .featured-video {
        padding: 80px 0;
    }
    
    .featured-video h2 {
        font-size: 2.2rem;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
}

/* Medium Devices (Tablets, 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-toggle {
        display: block;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo img {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu li {
        padding: 15px 20px;
        text-align: center;
    }

    .nav-menu a {
        font-size: 14px;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a.nav-btn {
        display: inline-block;
        margin: 10px auto;
    }
    
    /* Hero */
    .hero {
        min-height: 40vh;
        margin-top: 60px;
        aspect-ratio: 16 / 9;
    }
    
    /* About */
    .about {
        padding: 60px 0;
    }

    .about h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .about h2 br {
        display: none;
    }
    
    .squiggle {
        width: 80px;
        margin: 15px auto;
    }

    .about-text,
    .section-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .about-text br,
    .section-text br {
        display: none;
    }
    
    .conveyor-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .see-action-btn {
        padding: 12px 30px;
        font-size: 1rem;
        margin-top: 30px;
    }
    
    /* Learn More / Contact Form */
    .learn-more {
        padding: 50px 0;
    }
    
    .learn-more h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 0 15px;
    }

    .form-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .contact-form input {
        width: 100%;
        max-width: 350px;
        padding: 14px 20px;
    }
    
    .contact-form button {
        width: 100%;
        max-width: 350px;
        padding: 14px 40px;
    }
    
    /* Flavors */
    .flavors,
    .toppings {
        padding: 60px 0;
    }
    
    .flavors h2,
    .toppings h2 {
        font-size: 2rem;
    }
    
    .flavors-carousel,
    .toppings-carousel {
        padding: 12px 24px;
        margin-bottom: 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .flavor-item img {
        width: 380px;
        height: 380px;
    }
    
    .topping-item img {
        width: 190px;
        height: 190px;
    }
    
    .flavor-item span,
    .topping-item span {
        font-size: 0.75rem;
    }
    
    .dietary-text {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .dietary-icons {
        gap: 25px;
        padding: 0 10px;
    }
    
    .dietary-item img {
        width: 50px;
        height: 50px;
    }
    
    .dietary-item span {
        font-size: 0.8rem;
    }
    
    .nutrition-link {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .toppings-caption {
        padding-bottom: 40px;
        font-size: 0.85rem;
    }
    
    /* People Enjoying */
    .ice-cream-wave {
        height: 50px;
    }
    
    .people-enjoying-image img {
        min-height: 400px;
        max-height: 500px;
    }
    
    .people-enjoying-overlay {
        padding: 0 5%;
        justify-content: center;
    }
    
    .overlay-content {
        text-align: center;
        max-width: 90%;
    }
    
    .overlay-content h2 {
        font-size: 1.8rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    /* Partners */
    .partners {
        padding: 60px 0;
    }
    
    .partners h2 {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .partner-item {
        padding: 25px 20px;
    }
    
    .partner-item img {
        height: 60px;
    }
    
    .partner-item p {
        font-size: 0.9rem;
    }
    
    /* Featured Video */
    .featured-video {
        padding: 60px 0;
    }
    
    .featured-video h2 {
        font-size: 2rem;
    }
    
    .featured-video .section-text br {
        display: none;
    }
    
    .video-slider-wrapper {
        padding: 0 50px 40px;
    }
    
    .video-container {
        border-radius: 15px;
    }
    
    .video-slider-wrapper .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .video-title {
        font-size: 0.9rem;
        margin-top: 12px;
    }
    
    .video-cta {
        margin-top: 30px;
        padding: 12px 30px;
    }
    
    /* People Enjoying */
    .people-enjoying {
        min-height: 450px;
    }
    
    .people-enjoying-image {
        min-height: 450px;
    }
    
    .people-enjoying-image::before,
    .people-enjoying-image::after {
        width: 25%;
    }
    
    .people-enjoying-overlay::before {
        left: 25%;
        width: 50%;
    }
    
    .overlay-content {
        max-width: 500px;
        padding: 0 20px;
    }
    
    .overlay-content h2 {
        font-size: 1.8rem;
    }
    
    .overlay-content p {
        font-size: 0.95rem;
    }
    
    /* Locations */
    .locations {
        padding: 60px 0 0;
    }
    
    .locations h2 {
        font-size: 2rem;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .location-item {
        padding: 15px;
    }
    
    .location-item img {
        width: 60px;
        height: 60px;
    }
    
    .location-item span {
        font-size: 0.75rem;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .newsletter {
        min-width: unset;
        width: 100%;
    }
    
    .newsletter p {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 300px;
    }
    
    .newsletter-form button {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-image {
        min-width: unset;
    }
    
    .footer-image img {
        max-width: 300px;
    }
    
    .social-links {
        margin-bottom: 30px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding-top: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Small Devices (Large Phones, 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .navbar {
        padding: 8px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-menu {
        top: 55px;
    }
    
    /* Hero */
    .hero {
        min-height: 35vh;
        margin-top: 55px;
        aspect-ratio: 4 / 3;
    }
    
    /* About */
    .about {
        padding: 50px 0;
    }
    
    .about h2 {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .see-action-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    /* Learn More */
    .learn-more {
        padding: 40px 0;
    }
    
    .learn-more h2 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .contact-form input {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .contact-form button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    /* Flavors & Toppings */
    .flavors,
    .toppings {
        padding: 50px 0;
    }
    
    .flavors h2,
    .toppings h2 {
        font-size: 1.8rem;
    }
    
    .section-text {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .flavors-carousel,
    .toppings-carousel {
        padding: 15px 40px;
        margin-bottom: 30px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .flavor-item img {
        width: 330px;
        height: 330px;
    }
    
    .topping-item img {
        width: 170px;
        height: 170px;
    }
    
    .flavor-item span,
    .topping-item span {
        font-size: 0.7rem;
    }
    
    .dietary-icons {
        gap: 20px;
    }
    
    .dietary-item img {
        width: 45px;
        height: 45px;
    }
    
    .dietary-item span {
        font-size: 0.75rem;
    }
    
    .nutrition-link {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .toppings-caption {
        padding-bottom: 30px;
    }
    
    /* People Enjoying */
    .ice-cream-wave {
        height: 35px;
    }
    
    .people-enjoying-image img {
        min-height: 350px;
        max-height: 400px;
    }
    
    .overlay-content h2 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    /* Partners */
    .partners {
        padding: 50px 0;
    }
    
    .partners h2 {
        font-size: 1.8rem;
    }
    
    .partners-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .partner-item {
        padding: 20px 15px;
    }
    
    .partner-item img {
        height: 50px;
        margin-bottom: 15px;
    }
    
    .partner-item p {
        font-size: 0.85rem;
    }
    
    /* Featured Video */
    .featured-video {
        padding: 50px 0;
    }
    
    .featured-video h2 {
        font-size: 1.8rem;
    }
    
    .featured-video .section-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .video-slider-wrapper {
        padding: 0 45px 35px;
    }
    
    .video-container {
        border-radius: 12px;
    }
    
    .video-slider-wrapper .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .video-title {
        font-size: 0.85rem;
        margin-top: 10px;
    }
    
    .video-pagination {
        margin-top: 25px;
    }
    
    .video-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    /* People Enjoying */
    .people-enjoying {
        min-height: 400px;
    }
    
    .people-enjoying-image {
        min-height: 400px;
    }
    
    .people-enjoying-image::before,
    .people-enjoying-image::after {
        width: 20%;
    }
    
    .people-enjoying-overlay::before {
        left: 20%;
        width: 60%;
    }
    
    .overlay-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .overlay-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .video-pagination .swiper-pagination-bullet-active {
        width: 25px;
    }
    
    .video-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    /* Locations */
    .locations {
        padding: 50px 0 0;
    }
    
    .locations h2 {
        font-size: 1.8rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .location-item {
        padding: 12px;
        gap: 10px;
    }
    
    .location-item img {
        width: 50px;
        height: 50px;
    }
    
    .location-item span {
        font-size: 0.7rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer h2 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .footer-content {
        gap: 25px;
        margin-bottom: 35px;
    }
    
    .newsletter p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .newsletter-form input {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .newsletter-form button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer-image img {
        max-width: 250px;
    }
    
    .social-links p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom a {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Extra Small Devices (Small Phones, 400px and below) */
@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }
    
    /* Navigation */
    .logo img {
        height: 30px;
    }
    
    .nav-toggle {
        padding: 8px;
    }
    
    .hamburger {
        width: 22px;
        height: 2px;
    }
    
    .hamburger::before,
    .hamburger::after {
        width: 22px;
        height: 2px;
    }
    
    .hamburger::before {
        top: -7px;
    }
    
    .hamburger::after {
        bottom: -7px;
    }
    
    /* Hero */
    .hero {
        min-height: 30vh;
        margin-top: 50px;
    }
    
    /* About */
    .about {
        padding: 40px 0;
    }
    
    .about h2 {
        font-size: 1.3rem;
    }
    
    .squiggle {
        width: 60px;
        margin: 12px auto;
    }
    
    .about-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .see-action-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-top: 25px;
    }
    
    /* Learn More */
    .learn-more {
        padding: 35px 0;
    }
    
    .learn-more h2 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .form-row {
        gap: 10px;
    }
    
    .contact-form input {
        padding: 11px 15px;
        font-size: 0.85rem;
    }
    
    .contact-form button {
        padding: 11px 25px;
        font-size: 0.85rem;
    }
    
    /* Flavors & Toppings */
    .flavors,
    .toppings {
        padding: 40px 0;
    }
    
    .flavors h2,
    .toppings h2 {
        font-size: 1.5rem;
    }
    
    .section-text {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .flavors-carousel,
    .toppings-carousel {
        padding: 10px 35px;
        margin-bottom: 25px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .flavor-item img {
        width: 270px;
        height: 270px;
    }
    
    .topping-item img {
        width: 140px;
        height: 140px;
    }
    
    .flavor-item,
    .topping-item {
        gap: 10px;
    }
    
    .flavor-item span,
    .topping-item span {
        font-size: 0.6rem;
    }
    
    .dietary-text {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .dietary-icons {
        gap: 15px;
    }
    
    .dietary-item img {
        width: 40px;
        height: 40px;
    }
    
    .dietary-item span {
        font-size: 0.7rem;
    }
    
    .nutrition-link {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
    
    .toppings-caption {
        font-size: 0.8rem;
        padding-bottom: 25px;
    }
    
    /* People Enjoying */
    .ice-cream-wave {
        height: 25px;
    }
    
    .people-enjoying-image img {
        min-height: 300px;
        max-height: 350px;
    }
    
    .overlay-content {
        max-width: 95%;
    }
    
    .overlay-content h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    /* Partners */
    /* Featured Video */
    .featured-video {
        padding: 40px 0;
    }
    
    .featured-video h2 {
        font-size: 1.5rem;
    }
    
    .featured-video .section-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .video-slider-wrapper {
        padding: 0 40px 30px;
    }
    
    .video-container {
        border-radius: 10px;
    }
    
    .video-slider-wrapper .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .video-title {
        font-size: 0.8rem;
        margin-top: 8px;
    }
    
    .video-pagination {
        margin-top: 20px;
    }
    
    .video-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .video-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }
    
    .video-cta {
        margin-top: 25px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .partner-item p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    /* Featured Video */
    .featured-video {
        padding: 40px 0;
    }
    
    .featured-video h2 {
        font-size: 1.5rem;
    }
    
    .featured-video .section-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .video-wrapper {
        border-radius: 8px;
    }
    
    .video-cta {
        margin-top: 25px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* People Enjoying */
    .people-enjoying {
        min-height: 350px;
    }
    
    .people-enjoying-image {
        min-height: 350px;
    }
    
    .people-enjoying-image::before,
    .people-enjoying-image::after {
        width: 15%;
    }
    
    .people-enjoying-overlay::before {
        left: 15%;
        width: 70%;
    }
    
    .overlay-content h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .cta-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    /* Locations */
    .locations {
        padding: 40px 0;
    }
    
    .locations h2 {
        font-size: 1.5rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 25px;
    }
    
    .location-item {
        padding: 10px;
        gap: 8px;
    }
    
    .location-item img {
        width: 45px;
        height: 45px;
    }
    
    .location-item span {
        font-size: 0.65rem;
    }
    
    /* Footer */
    .footer {
        padding: 35px 0 20px;
    }
    
    .footer h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-content {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .newsletter p {
        font-size: 0.9rem;
    }
    
    .newsletter-form input {
        padding: 10px 15px;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .newsletter-form button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .footer-image img {
        max-width: 200px;
    }
    
    .social-links {
        margin-bottom: 25px;
    }
    
    .social-links p {
        font-size: 0.85rem;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 8px;
    }
    
    .footer-bottom a {
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
        margin-top: 10px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        aspect-ratio: unset;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-menu {
        top: 50px;
        max-height: calc(100vh - 50px);
        overflow-y: auto;
    }
    
    .nav-menu li {
        padding: 10px 20px;
    }
    
    .about,
    .flavors,
    .toppings,
    .partners,
    .locations,
    .featured-video {
        padding: 50px 0;
    }
    
    .people-enjoying-image img {
        min-height: 300px;
    }
}

/* High DPI / Retina Display Adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-size: cover;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nav-toggle,
    .see-action-btn,
    .cta-btn,
    .carousel-btn,
    .contact-form,
    .newsletter-form,
    .social-links {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        min-height: auto;
        aspect-ratio: 16 / 9;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
