/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-bottom: 80px; /* Add space for bottom nav */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-note {
    color: #ff7b39;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 123, 57, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff7b39;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff7b39, #2d5016);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff7b39;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(210, 180, 140, 0.7) 0%, rgba(245, 222, 179, 0.7) 50%, rgba(222, 184, 135, 0.7) 100%), 
                url('images/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.food-bag {
    position: absolute;
    border-radius: 15px;
    background: rgba(245, 222, 179, 0.3);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.bag-1 {
    width: 120px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.bag-2 {
    width: 100px;
    height: 70px;
    top: 25%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.bag-3 {
    width: 80px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

.bag-4 {
    width: 110px;
    height: 75px;
    bottom: 20%;
    right: 10%;
    animation: float 9s ease-in-out infinite reverse;
}

.bag-5 {
    width: 90px;
    height: 65px;
    top: 40%;
    left: 50%;
    animation: float 5s ease-in-out infinite;
}

.bag-6 {
    width: 70px;
    height: 50px;
    top: 60%;
    right: 40%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff7b39, #e66a2e);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 123, 57, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 123, 57, 0.4);
}

/* Packages Preview Section */
.packages-preview {
    padding: 5rem 0;
    background: white;
}

.packages-preview h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 3rem;
    position: relative;
}

.packages-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff7b39, #2d5016);
    border-radius: 2px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.package-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 123, 57, 0.05), rgba(45, 80, 22, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.package-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-content {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.package-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d5016;
}

.package-price {
    font-size: 2.2rem;
    color: #ff7b39;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.order-button {
    background: linear-gradient(135deg, #ff7b39, #e66a2e);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 123, 57, 0.3);
}

.order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 123, 57, 0.4);
}

.view-all-packages {
    text-align: center;
    margin-top: 3rem;
}

.view-all-link {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid #2d5016;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-link:hover {
    background: #2d5016;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

/* Food Thrift Preview Section */
.food-thrift-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    color: white;
    position: relative;
    overflow: hidden;
}

.food-thrift-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.thrift-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.thrift-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.thrift-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.thrift-button {
    background: linear-gradient(135deg, #ff7b39, #e66a2e);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 123, 57, 0.3);
    display: inline-block;
}

.thrift-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 123, 57, 0.4);
}

/* Features Section - Smaller and moved to bottom */
.features {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 123, 57, 0.05), rgba(45, 80, 22, 0.05));
    transition: left 0.5s ease;
}

.feature:hover::before {
    left: 0;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.whatsapp-icon {
    animation: pulse 2s infinite;
    cursor: pointer;
}

.whatsapp-icon svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.contact-feature:hover .whatsapp-icon svg {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.contact-feature {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-feature:hover {
    border-color: #25d366;
    transform: translateY(-5px) scale(1.02);
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d5016;
    position: relative;
    z-index: 2;
}

.feature p {
    color: #666;
    font-weight: 400;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

/* Creative Footer */
.creative-footer {
    background: linear-gradient(135deg, #1a2f0a 0%, #2d5016 50%, #1a2f0a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    color: white;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding: 4rem 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link i {
    font-size: 1.2rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-link.whatsapp:hover {
    background: #25d366;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ff7b39;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-column ul li a:hover {
    color: #ff7b39;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item div p {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #ff7b39;
}

.contact-item div a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item div a:hover {
    color: #ff7b39;
}

.contact-item div span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-bottom {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff7b39;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-food {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatFood 15s ease-in-out infinite;
}

.food-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.food-2 {
    top: 30%;
    right: 10%;
    animation-delay: 3s;
}

.food-3 {
    bottom: 40%;
    left: 15%;
    animation-delay: 6s;
}

.food-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 9s;
}

@keyframes floatFood {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Bottom Navigation Styles */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(45, 80, 22, 0.1);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    transition: all 0.3s ease;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 60px;
    text-align: center;
}

.bottom-nav-item:hover {
    color: #ff7b39;
    background: rgba(255, 123, 57, 0.1);
    transform: translateY(-2px);
}

.bottom-nav-item.active {
    color: #ff7b39;
    background: rgba(255, 123, 57, 0.15);
}

.bottom-nav-icon {
    position: relative;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.bottom-nav-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.bottom-nav-item:hover .bottom-nav-icon i {
    transform: scale(1.1);
}

.bottom-nav-label {
    font-size: 11px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

/* WhatsApp specific styling */
.whatsapp-nav:hover {
    color: #25d366 !important;
    background: rgba(37, 211, 102, 0.1) !important;
}

.whatsapp-nav .bottom-nav-icon i {
    color: #25d366;
}

/* Cart badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff7b39;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.cart-badge:empty {
    display: none;
}

/* Search Overlay Styles */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 3000;
    animation: fadeIn 0.3s ease;
}

.search-container {
    background: white;
    margin: 60px auto 0;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 600px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    position: relative;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e1e1e1;
}

.search-header h3 {
    color: #2d5016;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #ff7b39;
    box-shadow: 0 0 0 3px rgba(255, 123, 57, 0.1);
}

.search-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff7b39, #e66a2e);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 123, 57, 0.3);
}

.search-results {
    display: grid;
    gap: 1rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.search-result-item:hover {
    border-color: #ff7b39;
    background: rgba(255, 123, 57, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-result-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #f8f9fa;
    margin-right: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info h4 {
    margin: 0 0 0.5rem 0;
    color: #2d5016;
    font-size: 1rem;
    font-weight: 600;
}

.search-result-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.search-result-price {
    color: #ff7b39;
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background: white;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    position: sticky;
    top: 0;
    right: 0;
    margin-left: auto;
    margin-bottom: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.close:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.modal-content h2 {
    color: #2d5016;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    position: sticky;
    top: 60px;
    background: white;
    padding: 0.5rem 0;
    z-index: 5;
}

/* Bank Account Information Styles */
.bank-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #ff7b39;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.bank-info h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.account-details {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.account-details p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff7b39;
    box-shadow: 0 0 0 3px rgba(255, 123, 57, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ff7b39, #e66a2e);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 123, 57, 0.3);
    position: sticky;
    bottom: 0;
    z-index: 5;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 123, 57, 0.4);
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #28a745;
    font-weight: 500;
    position: sticky;
    top: 120px;
    z-index: 5;
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 0;
        transition: left 0.3s ease;
        gap: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.show {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo-icon {
        font-size: 2rem;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 0.8rem;
    }
    
    .hero {
        height: 90vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .features {
        padding: 2rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .feature {
        padding: 1rem 0.8rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .whatsapp-icon svg {
        width: 32px;
        height: 32px;
    }
    .feature h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .feature p {
        font-size: 0.85rem;
    }
    
    .packages-preview {
        padding: 3rem 0;
    }
    
    .packages-preview h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .package-image {
        height: 160px;
    }
    
    .package-content {
        padding: 1.5rem;
    }
    
    .package-content h3 {
        font-size: 1.3rem;
    }
    
    .package-price {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .order-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .food-thrift-preview {
        padding: 3rem 0;
    }
    
    .thrift-content h2 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .thrift-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .thrift-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Bottom nav mobile optimizations */
    .bottom-nav {
        padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
    }
    
    .bottom-nav-item {
        padding: 6px 8px;
        min-width: 50px;
    }
    
    .bottom-nav-icon i {
        font-size: 18px;
    }
    
    .bottom-nav-label {
        font-size: 10px;
    }
    
    .search-container {
        margin: 20px auto 0;
        height: calc(100vh - 20px);
        border-radius: 20px 20px 0 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .packages-preview h2,
    .thrift-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal {
        padding: 10px 0;
    }
    
    .modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        margin-top: 10px;
        margin-bottom: 10px;
        max-height: calc(100vh - 20px);
        border-radius: 20px;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        top: 50px;
    }
    
    .close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .bank-info {
        padding: 1rem;
    }
    
    .bank-info h3 {
        font-size: 1.1rem;
    }
    
    .account-details p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-preview h2,
    .thrift-content h2 {
        font-size: 1.6rem;
    }
    
    .package-price {
        font-size: 1.6rem;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
    }
}

/* Hide bottom nav on desktop if needed */
@media (min-width: 1024px) {
    .bottom-nav {
        display: flex; /* Change to 'none' if you want to hide on desktop */
    }
}

/* Animation for fadeIn */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scrollbar Styles */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #ff7b39;
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #e66a2e;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #ff7b39;
    outline-offset: 2px;
}

.nav-links a:focus {
    outline: 2px solid #ff7b39;
    outline-offset: 4px;
}

/* Print styles */
@media print {
    .hero-bg,
    .floating-elements,
    .mobile-menu-toggle,
    .modal,
    .bottom-nav,
    .search-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        padding-bottom: 0 !important;
    }
    
    .hero {
        background: #f0f0f0 !important;
        color: #333 !important;
        height: auto !important;
        padding: 2rem 0;
    }
    
    .footer-wave {
        display: none;
    }
}