:root {
    --primary: #e23744;
    --primary-hover: #c92c38;
    --text-dark: #1c1c1c;
    --text-light: #555555;
    --bg-light: #fdfdfd;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    background-color: #fcfcfc;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section { padding: 100px 0; }
.bg-light { 
    background: linear-gradient(to bottom, #ffffff, #f8f9fa); 
}
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1.05rem;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
}
.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 14px;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 55, 68, 0.3);
}
.btn-secondary {
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--white);
}
.btn-secondary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-2px);
}
.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-glow {
    box-shadow: 0 0 20px rgba(226, 55, 68, 0.4);
    animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(226, 55, 68, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(226, 55, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(226, 55, 68, 0); }
}

.mt-20 { margin-top: 20px; }
.text-primary { color: var(--primary); }
.bg-white { background-color: var(--white) !important; }

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes float-reverse {
    0% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(0px); }
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}
.logo span { color: var(--primary); }
.nav-links {
    display: flex;
    gap: 35px;
}
.nav-links a {
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 1.05rem;
}
.nav-links a:hover { color: var(--primary); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Modern (Spicebox Inspired) */
.hero-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, #fff9f0 0%, #fff0f2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}
.hero-text {
    flex: 1;
    max-width: 600px;
}
.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-text p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-floating-img {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 15px solid var(--white);
    box-shadow: 0 30px 60px rgba(226, 55, 68, 0.15);
    animation: float 6s ease-in-out infinite;
}
.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 3;
}
.badge-1 {
    top: 10%;
    left: 0;
    animation: float-reverse 5s ease-in-out infinite;
}
.badge-2 {
    bottom: 15%;
    right: 0;
    color: var(--primary);
    animation: float 7s ease-in-out infinite;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    opacity: 0.6;
}
.shape-1 {
    width: 400px;
    height: 400px;
    background: #ffd1d5;
    top: -100px;
    right: -100px;
}
.shape-2 {
    width: 300px;
    height: 300px;
    background: #ffe8a1;
    bottom: -50px;
    left: 30%;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .hero-text h1 { font-size: 3rem; }
    .hero-buttons { justify-content: center; }
    .badge-1 { left: -10px; }
    .badge-2 { right: -10px; }
}
@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-floating-img { max-width: 300px; border-width: 8px; }
}

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
}
.plan-card {
    background: linear-gradient(to bottom right, #ffffff, #fff9e6);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid #ffe8a1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.plan-card .btn {
    margin-top: 30px;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.plan-card.deluxe {
    background: linear-gradient(to bottom right, #ffffff, #fff0f2);
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(226, 55, 68, 0.15);
}
.plan-card.deluxe:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 50px rgba(226, 55, 68, 0.2);
}
.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(226, 55, 68, 0.3);
}
.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1;
}
.price span {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}
.monthly-price {
    background: rgba(0,0,0,0.03);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.monthly-price strong {
    font-size: 1.3rem;
    color: var(--text-dark);
}
.savings {
    color: #059669; /* Green */
    font-weight: 600;
    font-size: 0.9rem;
}
.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
}
.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-dark);
    font-weight: 500;
}
.plan-features li:last-child { border-bottom: none; }
.deluxe-note {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

/* How It Works Section */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.how-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.how-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.step-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: #fff0f2;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}
.how-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.how-step p {
    color: var(--text-light);
    line-height: 1.5;
}

.jain-available {
    font-size: 0.95rem;
    color: #166534; /* Green */
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.jain-available::before {
    content: "🌿";
}
.plan-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.feature-item h3 { margin-bottom: 15px; }
.feature-item p { color: var(--text-light); }

/* Delivery */
.delivery-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.area-tag {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    font-weight: 500;
    color: var(--primary);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.testimonial-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(to bottom right, #ffffff, #fff0f2);
}
.stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.review {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.7;
}
.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}
.customer-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}
.customer-loc {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
    padding: 100px 20px;
}
.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}
.final-cta p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: wa-pulse 2s infinite;
}
.floating-wa:hover {
    transform: scale(1.1);
}
.wa-tooltip {
    position: absolute;
    right: 75px;
    background: #1a1a1a;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.wa-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #1a1a1a;
}
.floating-wa:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Custom Footer */
.footer-custom {
    display: flex;
    background-color: #f8f9fa;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eaeaea;
}
.footer-brand-section {
    background-color: #1a1a1a; /* Dark theme to match premium section */
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 50% 50% 0 / 0 50% 50% 0;
    position: relative;
    z-index: 2;
    padding: 40px;
    min-width: 250px;
}
.footer-brand-section .logo {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}
.footer-brand-section .logo span {
    color: var(--primary);
}
.footer-main-section {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-links-horizontal {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-links-horizontal a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
.footer-links-horizontal a:hover {
    color: var(--primary);
}
.footer-contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.footer-contact-details p {
    color: #555;
    margin-bottom: 8px;
    font-size: 1rem;
}
.footer-contact-details a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact-details a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.footer-copyright {
    margin-top: 40px;
}
.footer-copyright p {
    color: #777;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 992px) {
    .footer-custom {
        flex-direction: column;
    }
    .footer-brand-section {
        width: 100%;
        border-radius: 0 0 50% 50% / 0 0 50px 50px;
        padding: 40px 20px;
    }
    .footer-main-section {
        padding: 40px 20px;
    }
    .footer-top-row {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links-horizontal {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer Modern */
.footer-modern {
    background-color: #111111;
    color: #e0e0e0;
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-logo span { color: var(--primary); }
.footer-desc {
    color: #aaaaaa;
    margin-bottom: 25px;
    line-height: 1.7;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.footer-modern h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: #aaaaaa;
    transition: var(--transition);
    text-decoration: none;
}
.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-contact ul { list-style: none; padding: 0; }
.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #aaaaaa;
    align-items: flex-start;
}
.footer-newsletter p {
    color: #aaaaaa;
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletter-form input {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #222;
    color: white;
    outline: none;
}
.newsletter-form input:focus { border-color: var(--primary); }
.footer-bottom {
    background: #0a0a0a;
    padding: 25px 0;
    border-top: 1px solid #222;
}
.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { color: #888; margin: 0; }
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: #888;
    transition: var(--transition);
    text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--white); }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    .nav-links.active { max-height: 400px; }
    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        display: block;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { 
        flex-direction: column; 
        align-items: center;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 80%;
        max-width: 250px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .plan-card.deluxe { transform: scale(1); }
    .plan-card.deluxe:hover { transform: translateY(-5px); }
}

/* Premium Promise Section */
.premium-dark {
    background-color: #1a1a1a;
    color: #ffffff;
    border-top: 4px solid #d4af37; /* Gold accent */
}
.premium-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4af37;
    text-align: center;
    font-weight: 800;
}
.premium-lead {
    font-size: 1.25rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cccccc;
    line-height: 1.6;
}
.promise-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}
.highlight-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 600;
    font-size: 0.95rem;
}
.promise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.promise-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}
.promise-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}
.promise-item h3 {
    color: #d4af37;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
}
.promise-item ul {
    list-style: none;
}
.promise-item ul li {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}
.promise-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* About / SEO Section */
.about-header {
    max-width: 800px;
    margin: 0 auto 40px;
}
.about-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}
.about-story {
    max-width: 900px;
    margin: 0 auto 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}
.about-story p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-dark);
}
.about-story p:last-child {
    margin-bottom: 0;
}
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.about-feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary);
}
.about-feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.about-feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Locations Wrapper */
.locations-wrapper {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}
.locations-text {
    line-height: 2.2;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.sep {
    color: var(--primary);
    margin: 0 8px;
    opacity: 0.6;
    font-weight: bold;
}

/* Jain Meals Section */
#jain-meals {
    background-color: #f0fdf4; /* Very light green */
    padding: 80px 0;
}
.jain-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #dcfce7;
}
.jain-title {
    font-size: 2.2rem;
    color: #166534; /* Darker green for text */
    margin-bottom: 30px;
    font-weight: 800;
}
.jain-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    max-width: fit-content;
    margin: 0 auto;
    text-align: left;
}
.jain-points li {
    font-size: 1.2rem;
    font-weight: 500;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
}
.jain-points li .icon {
    font-size: 1.4rem;
}

/* FAQ Section */
.faq-subtitle {
    margin-top: -30px;
    margin-bottom: 40px;
    color: var(--text-light);
    font-size: 1.1rem;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--primary);
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}
.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}
.faq-cta {
    margin-top: 40px;
}
.faq-cta p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}
