:root {
    --primary-color: #d35400;
    /* Saffron/Orange */
    --primary-dark: #a04000;
    --secondary-color: #fdf2e9;
    /* Light Cream */
    --accent-gold: #D4AF37;
    --text-dark: #2c3e50;
    --text-light: #666;
    --white: #ffffff;
    --whatsapp-green: #25d366;
    --zomato-red: #cb202d;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    padding-bottom: 70px;
    /* Space for sticky footer */
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header & Sticky Nav --- */
header {
    background: var(--white);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.header-cta:hover {
    background-color: var(--primary-dark);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1601050690597-df0568f70950?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-btn {
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 14px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* --- Trust Badges (New) --- */
.trust-section {
    background: var(--secondary-color);
    padding: 40px 5%;
    text-align: center;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.1);
}

.trust-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Delivery Section --- */
.delivery-section {
    background: var(--white);
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.app-btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
    display: inline-block;
    min-width: 200px;
}

.app-btn:hover {
    transform: translateY(-2px);
}

.btn-zomato {
    background-color: var(--zomato-red);
}

/* --- Visual Menu Grid --- */
.menu-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 25px;
}

.card-header {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.card-body ul {
    list-style: none;
}

.card-body li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
}

.card-body li:last-child {
    border-bottom: none;
}

/* --- Corporate / Bulk Orders --- */
.services {
    background-color: var(--secondary-color);
    padding: 80px 5%;
    text-align: center;
}

.contact-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    border-top: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
    display: inline-block;
    max-width: 600px;
    width: 100%;
}

/* --- Location & Footer --- */
.location {
    padding: 60px 5%;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 5%;
    text-align: center;
    font-size: 0.95rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .trust-grid {
        gap: 20px;
    }

    .trust-item {
        width: 45%;
        min-width: auto;
    }

    /* Only hide the text label, keep the icon visible */
    .header-cta span:last-child {
        display: none;
    }

    .header-cta {
        padding: 10px;
        border-radius: 50%;
    }

    .sticky-bottom-bar {
        display: flex;
    }
}

/* --- Sticky Bottom Footer --- */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #fff;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.sticky-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    transition: opacity 0.3s;
    gap: 8px;
}

.sticky-btn:hover {
    opacity: 0.95;
}

.sticky-zomato {
    background-color: var(--zomato-red);
}

.sticky-whatsapp {
    background-color: var(--whatsapp-green);
}
