:root {
    --primary: hsl(142, 60%, 50%);
    --primary-dark: hsl(142, 70%, 10%);
    --secondary: hsl(0, 0%, 100%);
    --accent: hsl(142, 50%, 60%);
    --text: hsl(0, 0%, 95%);
    --text-muted: hsla(0, 0%, 100%, 0.6);
    --bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

span, .logo span {
    color: var(--primary);
}

/* Glassmorphism */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-radius: 0 0 20px 20px;
    border-top: none;
    border-left: none;
    border-right: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.2);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--border);
}

.w-full { width: 100%; }

/* Hero */
.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    gap: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.hero-image .image-wrapper {
    position: relative;
}

#hero-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    padding: 1.5rem;
    text-align: center;
}

.stat { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* Sections */
section {
    padding: 8rem 0; /* Increased from 5rem */
}

.section-header {
    text-align: center;
    margin-bottom: 5rem; /* Increased from 4rem */
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Menu */
.tab-switcher {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--primary-dark);
    border-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.menu-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-image {
    position: relative;
    width: 100%;
    height: 250px;
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: var(--transition);
}

.menu-item:hover img {
    transform: scale(1.05);
}

.nutrition-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text);
    border: 1px solid var(--border);
}

.menu-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.badge-small {
    font-size: 0.7rem;
    background: var(--primary-dark);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    border: 1px solid var(--primary);
}

.menu-info h4 { font-size: 1.4rem; margin-bottom: 0px; }
.menu-info p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.4; }

.includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.includes span {
    background: rgba(255,255,255,0.05);
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.menu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.type.veg { color: var(--primary); }
.type.non-veg { color: #ff4444; }

.price { font-weight: 700; color: var(--primary); }

/* Plans */
.plans {
    margin-bottom: 3rem; /* Extra space before feedback */
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    justify-content: center;
    gap: 3rem;
}

.plan-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.plan-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.plan-tag {
    position: absolute;
    top: -15px;
    background: var(--primary);
    color: var(--primary-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-card .price {
    font-size: 2.5rem;
    margin: 1.5rem 0;
}

.plan-card .price span { font-size: 1rem; color: var(--text-muted); }

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    width: 100%;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.features li.disabled::before {
    content: "×";
    color: #ff4444;
}

.features li.disabled {
    opacity: 0.5;
}

/* Feedback */
.feedback-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
}

.form-group { margin-bottom: 1.5rem; }

input, select, textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
}

select option {
    background-color: #1a1a1a;
    color: var(--text);
    padding: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.form-status {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(30, 255, 142, 0.1);
    border: 1px solid rgba(30, 255, 142, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideUp 0.3s ease-out;
}

.status-icon {
    font-size: 1.5rem;
}

.status-content h4 {
    margin: 0;
    color: var(--primary);
    font-size: 1.1rem;
}

.status-content p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hidden {
    display: none !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero h1 { font-size: 3rem; }
    .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .service-grid { grid-template-columns: 1fr; }
    .feedback-container { grid-template-columns: 1fr; padding: 2rem; }
    .nav-links { display: none; }
}
