/* Base Settings & Variables */
:root {
    --primary: #FF6B35;
    --primary-hover: #E85D2B;
    --secondary: #00A859;
    --secondary-hover: #008f4b;
    --dark: #1E1E24;
    --dark-muted: #3D3D45;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --grey-100: #F1F3F5;
    --grey-200: #E9ECEF;
    --grey-300: #DEE2E6;
    --text-main: #2B2B2B;
    --text-muted: #6C757D;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 10px 30px rgba(255, 107, 53, 0.4);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-green {
    color: var(--secondary);
}

.text-red {
    color: #DC3545;
}

.bg-light {
    background-color: var(--grey-100);
}

.bg-dark {
    background-color: var(--dark);
}

.w-100 {
    width: 100%;
}

.mt-auto {
    margin-top: auto;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--grey-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--grey-300);
    color: var(--text-muted);
}

.btn-outline.active,
.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(0, 168, 89, 0.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li a:not(.btn) {
    font-weight: 500;
    color: var(--dark-muted);
    position: relative;
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links li a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 168, 89, 0.1);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    color: var(--primary);
    font-style: italic;
}

.hero>.hero-content>p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.quick-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-200);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--dark-muted);
    font-size: 0.95rem;
}

.stat i {
    color: var(--secondary);
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
    transition: transform 0.7s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.glass-card {
    position: absolute;
    top: 2rem;
    right: -2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    color: var(--white);
    font-weight: 600;
}

.glass-card i {
    color: #FFD700;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Sections */
section {
    padding: 6rem 2rem;
}

.menu-section,
.recommendations {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.filter-group {
    display: flex;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.diet-filters .filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.category-filters .filter-btn {
    border: 1px solid transparent;
}

.category-filters .filter-btn.active {
    background: rgba(0, 168, 89, 0.1);
    color: var(--secondary);
    border-color: var(--secondary);
}

/* Grid Layouts */
.menu-grid,
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Cards */
.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-bg-icon {
    position: absolute;
    bottom: -10px;
    right: -20px;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.05;
    z-index: 0;
    transform: rotate(-15deg);
    pointer-events: none;
    transition: var(--transition);
}

.menu-card:hover .category-bg-icon {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.08;
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .card-image img {
    transform: scale(1.1);
}

.healthy-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 168, 89, 0.9);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.diet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.diet-badge.veg i {
    color: var(--secondary);
}

.diet-badge.non-veg i {
    color: var(--primary);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.diet-badge-inline {
    background: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--grey-200);
}

.diet-badge-inline.veg i {
    color: var(--secondary);
}

.diet-badge-inline.non-veg i {
    color: var(--primary);
}

.tag.healthy-tag {
    background: rgba(0, 168, 89, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(0, 168, 89, 0.3);
}

.card-header h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin: 0;
}

.price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    white-space: nowrap;
}

.description {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--grey-100);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--dark-muted);
}

.nutrition-info {
    font-size: 0.9rem;
    background: var(--grey-50);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--secondary);
    margin-bottom: 1rem;
}

.nutrition-info .benefits {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Subscriptions Section */
.subscriptions {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark-muted);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--dark) 0%, #2a2a35 100%);
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-glow);
}

.plan-header h3 {
    color: var(--white);
    font-size: 1.8rem;
}

.plan-header .price {
    font-size: 2.5rem;
    color: var(--white);
    margin: 1rem 0;
}

.plan-header .price span {
    font-size: 1rem;
    color: #A0AEC0;
    font-weight: 400;
}

.plan-features {
    margin: 2rem 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #E2E8F0;
}

.plan-features li i {
    color: var(--secondary);
    background: rgba(0, 168, 89, 0.2);
    padding: 0.4rem;
    border-radius: 50%;
    font-size: 0.8rem;
}

.plan-features li i.fa-info-circle {
    color: #FFC107;
    background: rgba(255, 193, 7, 0.2);
}

/* Healthy Advisor */
.advisor {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.advisor-container {
    max-width: 800px;
    margin: 0 auto;
}

.advisor-header h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.advisor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    color: var(--text-main);
}

.advisor-form {
    transition: var(--transition);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.center-content {
    display: flex;
    justify-content: center;
}

.hidden {
    display: none !important;
}

.color-accent {
    background: var(--primary);
}

/* Footer */
footer {
    background: var(--white);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--grey-200);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    margin: 1rem 0;
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-200);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1500;
    transition: var(--transition);
    animation: float 4s ease-in-out infinite;
}

.floating-wa:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    color: white;
    animation: none;
}

/* Modal and Form Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 2.5rem;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-btn {
    color: var(--text-muted);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--dark);
    text-decoration: none;
}

.modal h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.modal-item-name {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grey-200);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero>.hero-content>p {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .quick-stats {
        justify-content: center;
    }

    .glass-card {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: -2rem;
        animation: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease-out;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .filter-group {
        flex-wrap: wrap;
        justify-content: center;
    }
}