* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 100;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Header */
header {
    background: linear-gradient(135deg, #E63946, #F77F00, #D62828);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(230,57,70,0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: #FFD23F;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E63946 0%, #F77F00 50%, #FCBF49 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 2rem 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="80" fill="%23FFD23F" opacity="0.1"/><circle cx="1100" cy="500" r="120" fill="%234CAF50" opacity="0.1"/><circle cx="600" cy="50" r="100" fill="%23FF6B35" opacity="0.1"/></svg>');
    opacity: 0.3;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    animation: slideInUp 1s ease;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    animation: slideInUp 1s ease 0.2s both;
}

.order-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1AB56B, #0F9556);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(26,181,107,0.5);
    transition: all 0.3s ease;
    animation: slideInUp 1s ease 0.4s both;
    border: 2px solid transparent;
    cursor: pointer;
    touch-action: manipulation;
}

.order-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 50px rgba(26,181,107,0.7);
    background: linear-gradient(135deg, #0F9556, #067A3F);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #E63946;
    position: relative;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #E63946, #F77F00, #FCBF49);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #F7931E, #FFD23F);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.menu-item h3 {
    font-size: 1.5rem;
    color: #E63946;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2D6A4F;
    margin: 1rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.order-now {
    background: linear-gradient(135deg, #1AB56B, #0F9556);
    color: white;
    padding: 1rem 2rem;
    border: 2px solid #0F9556;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
    touch-action: manipulation;
    min-height: 48px;
}

.order-now:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
}

/* Delivery Charges Section */
.delivery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.delivery-card {
    background: linear-gradient(135deg, #FCBF49 0%, #F77F00 100%);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(247,127,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(247,127,0,0.5);
}

.delivery-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.delivery-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.delivery-price {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.delivery-card p {
    font-size: 1rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.delivery-card.special-offer {
    background: linear-gradient(135deg, #E63946 0%, #D62828 100%);
    position: relative;
    transform: scale(1.05);
}

.delivery-card.special-offer:hover {
    box-shadow: 0 18px 50px rgba(230,57,70,0.5);
    transform: scale(1.08) translateY(-10px);
}

.offer-badge {
    background: linear-gradient(135deg, #FFD23F, #FCBF49);
    color: #D62828;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255,210,63,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.delivery-note {
    background: linear-gradient(135deg, #E63946, #D62828);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(230,57,70,0.3);
}

.delivery-note i {
    font-size: 1.5rem;
}

/* About & Features */
.about-content, .features-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #E63946;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Contact */
.contact-info {
    background: linear-gradient(135deg, #E63946, #D62828);
    color: white;
    text-align: center;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(230,57,70,0.3);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info p {
    font-size: 1.1rem;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    word-break: break-all;
    cursor: pointer;
    -webkit-user-select: all;
    user-select: all;
}

.address-info {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.address-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.address-info i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.contact-btn {
    margin-top: 1rem !important;
    display: inline-block !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1A1A1A, #333);
    color: white;
    text-align: center;
    padding: 2rem;
    border-top: 3px solid #E63946;
}

footer p {
    font-size: 1.1rem;
    line-height: 1.8;
}

footer small {
    font-size: 0.95rem;
    color: #BBB;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #E63946, #D62828);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 300px;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 500px;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .order-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Sections */
    section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    /* Menu */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item {
        padding: 1.5rem;
    }
    
    .menu-item h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    /* Delivery Charges */
    .delivery-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .delivery-card {
        padding: 2rem 1.5rem;
    }
    
    .delivery-card.special-offer {
        transform: scale(1.03);
    }
    
    .delivery-card.special-offer:hover {
        transform: scale(1.06) translateY(-8px);
    }
    
    .offer-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .delivery-icon {
        font-size: 3rem;
    }
    
    .delivery-price {
        font-size: 2rem;
    }
    
    .delivery-note {
        padding: 1.2rem;
        font-size: 0.95rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    /* Contact */
    .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .address-info {
        padding: 1.2rem 1.5rem;
        margin: 1.2rem 0;
        font-size: 0.95rem;
    }
    
    .address-info p {
        font-size: 0.95rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 65px;
        height: 65px;
        bottom: 20px;
        right: 20px;
        font-size: 32px;
    }
    
    /* Footer */
    footer {
        padding: 1.5rem;
    }
    
    footer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .hero {
        min-height: 450px;
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .order-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    section {
        padding: 1.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        width: 80px;
        height: 4px;
    }
    
    .menu-item {
        padding: 1.2rem;
    }
    
    .menu-item h3 {
        font-size: 1.1rem;
    }
    
    .menu-item p {
        font-size: 0.95rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .order-now {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    /* Delivery Charges */
    .delivery-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .delivery-card {
        padding: 1.5rem 1.2rem;
    }
    
    .delivery-card.special-offer {
        transform: scale(1.02);
    }
    
    .delivery-card.special-offer:hover {
        transform: scale(1.05) translateY(-6px);
    }
    
    .offer-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .delivery-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .delivery-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .delivery-price {
        font-size: 1.8rem;
        margin: 0.8rem 0;
    }
    
    .delivery-card p {
        font-size: 0.9rem;
        margin-top: 0.8rem;
    }
    
    .delivery-note {
        padding: 1rem;
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .delivery-note i {
        font-size: 1.2rem;
    }
    
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .owner-badge {
        display: block;
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
        padding: 0.7rem 1.2rem;
    }
    
    .address-info {
        padding: 1rem 1.2rem;
        margin: 1rem 0;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .address-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .address-info i {
        margin-right: 0.4rem;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
    
    footer {
        padding: 1.2rem 1rem;
    }
    
    footer p {
        font-size: 0.85rem;
    }
    
    footer small {
        font-size: 0.8rem;
    }
}

/* Owner Badge */
.owner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E63946, #F77F00);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(230,57,70,0.3);
    font-size: 1.2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}