.food-selection-section {
    background: #fffafa;
    position: relative;
    overflow: hidden;
}

.food-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(216, 67, 21, 0.08);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.food-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.food-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.food-card:hover .food-card-img-wrapper img {
    transform: scale(1.1);
}

/* Indicators & Badges */
.veg-indicator, .non-veg-indicator {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px;
    border-radius: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

.veg-indicator .dot {
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
}

.non-veg-indicator .dot {
    width: 10px;
    height: 10px;
    background: #f44336;
    border-radius: 50%;
}

.food-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-bestseller { background: #ff9800; }
.badge-musttry { background: #e91e63; }
.badge-valformoney { background: #4caf50; }
.badge-pocketfriendly { background: #2196f3; }

/* Card Body */
.food-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.food-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin: 0;
}

.food-desc {
    font-size: 0.88rem;
    color: var(--clr-text-mid);
    line-height: 1.5;
    margin-bottom: 5px;
}

.food-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px;
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-primary);
}

.location-tag i {
    font-size: 0.85rem;
}

/* Order Button */
.food-order-btn {
    width: 100%;
    margin-top: 15px;
    background: linear-gradient(90deg, #d84315, #e53935);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 67, 21, 0.2);
}

.food-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 67, 21, 0.3);
    filter: brightness(1.1);
}

.section-title-custom {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-custom h2 {
    color: var(--clr-primary);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-title-custom p {
    color: var(--clr-text-mid);
    font-size: 1.1rem;
}

/* Food Filter Toggle */
.food-filter-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.food-filter-wrapper {
    display: flex;
    background: #fff;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(216, 67, 21, 0.08);
    border: 1px solid rgba(216, 67, 21, 0.1);
    position: relative;
    z-index: 5;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 40px;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text-mid);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.filter-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.filter-btn:hover {
    color: var(--clr-primary);
}

.filter-btn:hover i {
    transform: scale(1.2);
}

.filter-btn.active {
    color: #fff;
    box-shadow: 0 8px 20px rgba(216, 67, 21, 0.2);
}

.filter-btn[data-filter="all"].active {
    background: var(--clr-primary);
}

.filter-btn[data-filter="veg"].active {
    background: #4caf50;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.25);
}

.filter-btn[data-filter="non-veg"].active {
    background: #f44336;
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.25);
}

/* Animation for cards */
.food-item-col {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.food-item-col.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

@media (max-width: 768px) {
    .food-filter-wrapper {
        width: 100%;
        max-width: 320px;
        padding: 4px;
    }
    .filter-btn {
        flex: 1;
        padding: 8px 12px;
        font-size: 0.8rem;
        justify-content: center;
    }
    .food-card-img-wrapper {
        height: 180px;
    }
    .section-title-custom h2 {
        font-size: 1.75rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(216, 67, 21, 0.05) 0%, rgba(255, 167, 38, 0.05) 100%);
    padding: 60px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(216, 67, 21, 0.1);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(216, 67, 21, 0.1);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(216, 67, 21, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--clr-text-dark);
}

.contact-info-card p {
    color: var(--clr-text-mid);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-main-wrapper {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 80px;
}

.contact-form-side {
    padding: 50px;
}

.contact-map-side {
    padding: 0;
    min-height: 400px;
}

.contact-map-side iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-label-custom {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 0.9rem;
}

.contact-input-custom {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #eee;
    border-radius: 12px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-input-custom:focus {
    background: #fff;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(216, 67, 21, 0.1);
    outline: none;
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(216, 67, 21, 0.2);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(216, 67, 21, 0.3);
}

@media (max-width: 991px) {
    .contact-form-side {
        padding: 40px 30px;
    }
}
