/* Fuzion Donuts Brand Colors */
:root {
    --primary-color: #E85A2A;
    --secondary-color: #FFFFFF;
    --tertiary-color: #1A1A1A;
    --fourth-color: #666666;
    --heading-font: 'Quicksand', sans-serif;
    --paragraph-font: 'Open Sans', sans-serif;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Account for sticky header */
}

body {
    font-family: var(--paragraph-font);
    line-height: 1.6;
    color: var(--tertiary-color);
    background-color: var(--secondary-color);
}

/* Heading styles - Quicksand Bold */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Paragraph and text styles - Open Sans */
p {
    font-family: var(--paragraph-font);
}

/* Header styles */
header {
    position: relative;
    width: 100%;
}

/* Navigation styles */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 1rem 2rem;
}

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

/* Hamburger button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.logo-btn {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-btn:hover {
    transform: scale(1.05);
}

.logo {
    height: 125px;
    width: auto;
    display: block;
}

.order-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero image styles */
.hero-image {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-heading {
    font-family: var(--heading-font);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 10;
    padding: 0 2rem;
    max-width: 90%;
    line-height: 1.2;
    animation: fadeInUp 0.5s ease-out;
}

.hero-order-btn {
    position: absolute;
    top: calc(50% + 160px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.5s ease-out 0.15s both;
    margin-left: 0;
    margin-right: 0;
    width: auto;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}


.hero-order-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 90, 42, 0.4);
}

/* Ensure button stays centered on mobile */
@media (max-width: 768px) {
    .hero-order-btn:hover {
        transform: translateX(-50%) translateY(-2px);
    }
}

@media (max-width: 480px) {
    .hero-order-btn:hover {
        transform: translateX(-50%) translateY(-2px);
    }
}

/* Responsive design for hero heading */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
        letter-spacing: 2px;
        padding: 0 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-order-btn {
        font-size: 16px;
        padding: 12px 35px;
        top: calc(50% + 160px);
        left: 50%;
        right: auto;
        transform: translateX(-50%) !important;
        -webkit-transform: translateX(-50%) !important;
        -ms-transform: translateX(-50%) !important;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 1.8rem;
        letter-spacing: 1px;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-order-btn {
        font-size: 14px;
        padding: 10px 30px;
        letter-spacing: 1px;
        top: calc(50% + 140px);
        left: 50%;
        right: auto;
        transform: translateX(-50%) !important;
        width: auto;
        position: absolute;
        margin: 0 auto;
        text-align: center;
    }
}

/* Main content styles */
main {
    /* Main content styles will go here */
}

/* Menu Slider styles */
.menu-slider {
    padding: 4rem 0; /* Removed horizontal padding */
    background-color: var(--secondary-color);
}

.slider-title {
    font-family: var(--heading-font);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 2rem; /* Add padding only to title */
    animation: fadeInUp 0.4s ease-out;
}

.slider-container {
    width: 100%; /* Full width */
    margin: 0; /* Remove auto margins */
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.25s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 20%; /* Show 5 slides at once (100% / 5 = 20%) */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem; /* Reduced padding from 1.5rem */
    background: transparent; /* Remove background gradient */
    /* Removed border-right */
    animation: fadeIn 0.35s ease-out;
    animation-fill-mode: both;
}

.slide:nth-child(1) { animation-delay: 0.05s; }
.slide:nth-child(2) { animation-delay: 0.1s; }
.slide:nth-child(3) { animation-delay: 0.15s; }
.slide:nth-child(4) { animation-delay: 0.2s; }
.slide:nth-child(5) { animation-delay: 0.25s; }

.slide:last-child {
    /* Removed border-right: none; */
}

.slide img {
    max-width: 280px; /* Increased from 220px to 280px */
    height: auto;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    animation: fadeInScale 0.35s ease-out;
}

.slide img:hover {
    transform: scale(1.1) rotate(5deg);
}

.slide:hover img {
    transform: scale(1.05);
}

.slide h3 {
    font-size: 1rem;
    font-weight: bold;
    color: var(--tertiary-color);
    text-align: center;
    margin-top: 0.5rem;
}

/* Slider Navigation Container */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 320px; /* Increased gap by 100% from 80px to 160px */
}

/* Slider Navigation Buttons */
.slider-btn {
    position: static; /* Remove absolute positioning */
    transform: none; /* Remove transform */
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0; /* Remove margin since we're using gap */
}

.slider-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* View Full Menu Button */
.view-menu-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 160px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.view-menu-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .slide {
        min-width: 50%; /* Show 2 slides at once */
    }
    
    .slide img {
        max-width: 180px; /* Reduced image size */
    }
    
    .slide h3 {
        font-size: 0.9rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .logo-btn {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0.5rem;
    }
    
    .logo-btn:hover {
        transform: translateX(-50%) scale(1.05);
    }
    
    .navbar {
        padding-top: 0.75rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--tertiary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.5rem;
        color: var(--secondary-color);
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }
    
    .order-btn {
        display: none; /* Hide order button on mobile */
    }

    .view-menu-btn {
        white-space: nowrap;
        font-size: 14px;
        padding: 12px 28px;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slide {
        min-width: 50%; /* Show 2 slides at once */
    }
    
    .slide img {
        max-width: 200px;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }

    .view-menu-btn {
        white-space: nowrap;
        font-size: 13px;
        padding: 10px 24px;
        min-width: 160px;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--tertiary-color) 70%, var(--primary-color) 100%);
    color: var(--secondary-color);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-order-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    width: 75%;
}

.footer-order-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 82, 0, 0.3);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

/* Responsive design for Footer */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-logo-img {
        height: 100px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-logo-img {
        height: 80px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links a,
    .social-link {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Google Reviews styles */
.google-reviews {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
}

.reviews-title {
    font-family: var(--heading-font);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.4s ease-out;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    min-height: 320px;
}

/* Two-column layout: summary left, carousel right */
.reviews-layout {
    display: flex;
    align-items: stretch;
    gap: 2.5rem;
    text-align: left;
}

.reviews-summary {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.reviews-summary-label {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color, #1a1a1a);
    margin-bottom: 0.5rem;
}

.reviews-summary-stars {
    margin-bottom: 0.5rem;
}

.reviews-summary-stars .review-star {
    font-size: 1.75rem;
}

.reviews-summary-count {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1.5rem 0;
}

.reviews-google-logo {
    display: inline-block;
    margin-top: auto;
}

.reviews-google-logo svg {
    display: block;
}

/* Carousel */
.reviews-carousel-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.reviews-carousel-btn:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #ccc;
}

.reviews-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.reviews-carousel {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.review-card {
    flex: 0 0 300px;
    min-height: 220px;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4b400 0%, #e89a00 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.review-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color, #1a1a1a);
}

.review-date {
    font-size: 0.8rem;
    color: #888;
}

.review-rating-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.6rem;
}

.review-rating-row .review-star {
    font-size: 1rem;
}

.review-verified {
    display: inline-flex;
    align-items: center;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
    margin: 0 0 0.5rem 0;
}

.review-read-more {
    font-size: 0.85rem;
    color: #888;
    text-decoration: none;
}

.review-read-more:hover {
    color: var(--primary-color, #1a1a1a);
    text-decoration: underline;
}

.review-star {
    color: #ddd;
}

.review-star.full {
    color: #f4b400;
}

.review-star.half {
    color: #f4b400;
    opacity: 0.85;
}

.review-star.empty {
    color: #e0e0e0;
}

.reviews-google-link {
    color: var(--primary-color, #1a1a1a);
    font-weight: 600;
    text-decoration: underline;
}

.reviews-google-link:hover {
    text-decoration: none;
}

.reviews-loading,
.reviews-error,
.reviews-empty {
    padding: 2rem 1rem;
    color: #666;
    margin: 0;
}

.reviews-error,
.reviews-empty {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}


/* Responsive design for reviews */
@media (max-width: 900px) {
    .reviews-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .reviews-summary {
        flex: none;
        align-items: center;
    }

    .reviews-google-logo {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 2rem;
    }

    .reviews-carousel-wrap {
        width: 100%;
    }

    .review-card {
        flex: 0 0 260px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .google-reviews {
        padding: 3rem 1rem;
    }

    .reviews-title {
        font-size: 1.8rem;
    }

    .reviews-layout {
        gap: 1.5rem;
    }

    .review-card {
        flex: 0 0 240px;
        padding: 1.25rem;
        min-height: 180px;
    }

    .reviews-carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

/* Features styles */
.features {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    gap: 4rem;
    width: 100%;
    position: relative;
    padding: 3rem;
    border-radius: 15px;
    background-color: var(--secondary-color);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* All feature items: same hover as Gourmet Coffee (warm brown/cream) */
.feature-item:hover {
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D5B7 50%, #D4A574 100%);
    box-shadow: 0 8px 24px rgba(180, 130, 70, 0.3);
}

.feature-content {
    flex: 1;
    max-width: 500px;
    min-width: 0; /* Prevents flex item from overflowing */
}

.feature-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text {
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0; /* Hidden by default */
    opacity: 0;
}

.feature-text.collapsed {
    max-height: 0;
    opacity: 0;
}

.feature-text.expanded {
    max-height: 1000px; /* Increased to accommodate full content */
    opacity: 1;
    overflow: visible;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--tertiary-color);
    margin: 0;
}

.feature-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.learn-more-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.learn-more-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.expand-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expand-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.expand-btn.expanded {
    transform: rotate(45deg);
}

.feature-image {
    flex: 1;
    max-width: 500px;
    min-width: 0; /* Prevents flex item from overflowing */
    display: flex;
    justify-content: center;
    background: transparent; /* Transparent background for PNG images */
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: transparent; /* Ensure image background is also transparent */
}


/* Responsive design for features */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    /* Ensure consistent order on mobile: content first, then image */
    .feature-content {
        max-width: 100%;
        text-align: center;
        order: 1;
    }
    
    .feature-image {
        order: 2;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .feature-text p {
        font-size: 1rem;
    }
    
    .feature-text.expanded {
        max-height: 2000px; /* Increased for mobile to show all content */
        overflow: visible;
    }
    
    .feature-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 3rem 1rem;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .feature-text.expanded {
        max-height: 2000px; /* Increased for mobile to show all content */
        overflow: visible;
    }
    
    .feature-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .learn-more-btn {
        width: 100%;
    }
}

/* What Makes Us Us Section */
.what-makes-us {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Gradient border using background and padding technique */
.faq-item {
    margin-bottom: 0.75rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: 
        linear-gradient(var(--secondary-color), var(--secondary-color)) padding-box,
        linear-gradient(135deg, var(--primary-color), #FFB800, var(--primary-color)) border-box;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(232, 90, 42, 0.2);
}

.faq-item.active {
    box-shadow: 0 4px 15px rgba(232, 90, 42, 0.3), 0 0 0 4px rgba(232, 90, 42, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.125rem 2rem;
    background-color: var(--secondary-color);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tertiary-color);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: var(--primary-color);
    background-color: #f9f9f9;
}

.faq-question.active {
    color: var(--primary-color);
    background-color: #fff5f2;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: var(--secondary-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.125rem 2rem;
}

.faq-answer p {
    font-family: var(--paragraph-font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--fourth-color);
    margin: 0;
    padding-top: 0.75rem;
}

.faq-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #c94a1f;
    text-decoration: none;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1.5rem;
    }

    .faq-question {
        padding: 0.9375rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 0.9375rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2.5rem 1rem;
    }

    .faq-question {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.25rem;
        width: 20px;
        height: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 0.75rem 1.25rem;
    }
}

.our-story {
    padding: 4rem 2rem;
    background: linear-gradient(315deg, var(--tertiary-color) 0%, var(--tertiary-color) 60%, var(--primary-color) 100%);
    color: var(--secondary-color);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    margin-bottom: 2.5rem;
}

.story-intro {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-description {
    font-family: var(--paragraph-font);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin: 0;
}

.story-learn-more-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.story-learn-more-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.section-title {
    font-family: var(--heading-font);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.4s ease-out;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 82, 0, 0.1);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.value-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--tertiary-color);
    margin: 0;
}

/* Responsive design for What Makes Us Us section */
@media (max-width: 768px) {
    .what-makes-us,
    .our-story {
        padding: 3rem 1rem;
    }
    
    .story-intro {
        font-size: 1.3rem;
    }
    
    .story-description {
        font-size: 1rem;
    }
    
    .story-learn-more-btn {
        font-size: 16px;
        padding: 12px 35px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .values-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .value-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .what-makes-us,
    .our-story {
        padding: 2rem 1rem;
    }
    
    .story-intro {
        font-size: 1.2rem;
    }
    
    .story-description {
        font-size: 0.95rem;
    }
    
    .story-learn-more-btn {
        font-size: 14px;
        padding: 10px 30px;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .values-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
}

.contact-container {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-element {
    width: 100%;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--tertiary-color);
    margin-bottom: 0.75rem;
}

/* Hide labels visually but keep for accessibility */
.form-group label.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--fourth-color);
    opacity: 0.7;
    font-family: var(--paragraph-font);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Gradient border using background and padding technique */
.form-group input,
.form-group textarea {
    background: 
        linear-gradient(var(--secondary-color), var(--secondary-color)) padding-box,
        linear-gradient(135deg, var(--primary-color), #FFB800, var(--primary-color)) border-box;
    border: 3px solid transparent;
    border-radius: 12px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: 
        linear-gradient(var(--secondary-color), var(--secondary-color)) padding-box,
        linear-gradient(135deg, var(--primary-color), #FFB800, var(--primary-color)) border-box;
    box-shadow: 0 0 0 4px rgba(232, 90, 42, 0.15), 0 4px 12px rgba(255, 184, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto;
    min-width: 200px;
    display: block;
    margin: 0 auto;
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 82, 0, 0.3);
}

/* Responsive design for Contact Form section */
@media (max-width: 768px) {
    .contact-form {
        padding: 3rem 1rem;
    }
    
    .contact-container {
        max-width: 100%;
    }
    
    .contact-form-element {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .contact-form-element {
        padding: 1rem;
    }
    
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Order Modal Styles */
.order-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.order-modal-overlay.active {
    display: flex;
}

.order-modal {
    background-color: var(--secondary-color);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease;
}

.order-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--fourth-color);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.order-modal-close:hover {
    color: var(--primary-color);
}

.order-modal-step {
    text-align: center;
}

.order-modal-title {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.order-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.order-option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #FFB800);
    color: var(--secondary-color);
    border: none;
    border-radius: 12px;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(232, 90, 42, 0.3);
}

.order-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 90, 42, 0.4);
}

.order-option-icon {
    font-size: 1.5rem;
}

.order-option-text {
    font-size: 1.25rem;
}

.order-helper-text {
    font-family: var(--paragraph-font);
    font-size: 0.95rem;
    color: var(--fourth-color);
    margin: 0;
}

.order-address-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-address-input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--paragraph-font);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.order-address-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Remove search input styling */
.order-address-input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
}

.order-address-input[type="search"]::-webkit-search-decoration,
.order-address-input[type="search"]::-webkit-search-cancel-button,
.order-address-input[type="search"]::-webkit-search-results-button,
.order-address-input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
}

/* Google Maps Autocomplete dropdown - ensure it appears above modal */
.pac-container {
    z-index: 10001 !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
}

.pac-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-top: 1px solid #e0e0e0;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover,
.pac-item-selected {
    background-color: #f5f5f5;
}

.pac-icon {
    margin-right: 0.5rem;
}

.order-location-btn {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-family: var(--paragraph-font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-location-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.order-continue-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #FFB800);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.order-continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 90, 42, 0.3);
}

.order-error-message {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    color: #c33;
    font-family: var(--paragraph-font);
    font-size: 0.95rem;
}

.pickup-stores-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
}

.pickup-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.pickup-loading p {
    font-family: var(--paragraph-font);
    font-size: 1rem;
    color: var(--fourth-color);
    margin-top: 1rem;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pickup-error {
    font-family: var(--paragraph-font);
    font-size: 1rem;
    color: var(--fourth-color);
    text-align: center;
    padding: 2rem;
}

.pickup-location-prompt {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(232, 90, 42, 0.05), rgba(255, 184, 0, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 12px;
}

.pickup-location-text {
    font-family: var(--paragraph-font);
    font-size: 0.95rem;
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

.pickup-store-item {
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.pickup-store-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(232, 90, 42, 0.2);
}

.pickup-store-item.closest {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(232, 90, 42, 0.05), rgba(255, 184, 0, 0.05));
}

.pickup-store-name {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 0.5rem;
}

.pickup-store-name .closest-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), #FFB800);
    color: var(--secondary-color);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pickup-store-address {
    font-family: var(--paragraph-font);
    font-size: 0.95rem;
    color: var(--fourth-color);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.pickup-store-action {
    font-family: var(--paragraph-font);
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.pickup-store-distance {
    font-family: var(--paragraph-font);
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.order-out-of-range-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.order-secondary-btn {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-family: var(--paragraph-font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .order-modal {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .order-modal-title {
        font-size: 1.5rem;
    }

    .order-option-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }

    .order-option-icon {
        font-size: 1.25rem;
    }
} 