/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --accent: #ff6b6b;
    --dark: #2d3748;
    --light: #f7fafc;
    --gray: #718096;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    height: 100px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.hero-details {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-large, .btn-accent, .btn-white {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-accent {
    background: var(--accent);
    color: white;
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1em;
}

.btn-primary:hover, .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-white:hover {
    background: var(--light);
}

/* Trust Signals */
.trust-signals {
    background: var(--light);
    padding: 60px 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trust-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.trust-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: 80px 20px;
}

.about h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--primary);
}

.about h3 {
    text-align: center;
    font-size: 1.5em;
    color: var(--gray);
    margin-bottom: 40px;
}

.about-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    background: var(--light);
    padding: 80px 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-text.expanded {
    display: block;
    overflow: visible;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-decoration: underline;
}

.read-more-btn:hover {
    opacity: 0.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

/* CTA Section */
.cta {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary);
}

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

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        padding-bottom: 0;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 0;
        width: 100%;
        padding: 8px 0;
        margin: 0;
        border-top: 1px solid #eee;
        scrollbar-width: none;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-menu li {
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .nav-menu a {
        display: block;
        padding: 8px 16px;
        white-space: nowrap;
        font-size: 0.9rem;
    }

    .nav-menu .btn-primary {
        margin: 4px 16px 4px 8px;
        white-space: nowrap;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-details {
        font-size: 1em;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-grid, .testimonial-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* Policies Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.last-updated {
    margin-top: 15px;
    font-size: 1em;
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
}

.policies-section {
    padding: 80px 20px;
}

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

.policy-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.policy-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.policy-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.policy-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.policy-notice {
    background: var(--light);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.policy-notice h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.policy-notice p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.active {
    color: var(--primary) !important;
}

/* Policy List Styles */
.policy-category {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.policy-category h2 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

.policy-category-header h2 {
    color: #ffffff !important;
    margin: 0;
    padding: 0;
    border: none;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list a {
    color: var(--dark);
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.policy-list a:hover {
    background: var(--light);
    color: var(--primary);
}

.coming-soon {
    background: #f8f9fa;
    border-left: 4px solid #ffc107;
}

.coming-soon h2 {
    color: #6c757d;
}

/* Fees Section */
.fees-section {
    padding: 70px 0;
    background: #f4f6fb;
}

.fees-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
    font-size: 2rem;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .fees-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .fees-grid { grid-template-columns: 1fr; }
}

.fee-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-top: 4px solid var(--primary);
}

.fee-card.highlight {
    border-top-color: #764ba2;
    text-align: center;
}

.fee-card-wide {
    grid-column: 1 / -1;
    border-top-color: #e74c3c;
}

.fee-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.price-badge {
    font-size: 3rem;
    font-weight: 800;
    color: #764ba2;
    margin: 10px 0;
    line-height: 1;
}

.price-badge span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.fee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-list li {
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444;
}

.fee-list li:last-child { border-bottom: none; }

/* Meals Section */
.meals-section {
    padding: 70px 0;
    background: white;
}

.meals-header {
    text-align: center;
    margin-bottom: 40px;
}

.meals-header h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.meals-intro {
    max-width: 750px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.meals-hero-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 50px;
    max-height: 380px;
}

.meals-hero-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.meals-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    padding: 30px 25px 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meals-hero-overlay span {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.meals-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.meal-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.meal-feature.reverse {
    direction: rtl;
}

.meal-feature.reverse > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .meal-feature,
    .meal-feature.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.meal-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.meal-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.meal-img-wrap:hover img {
    transform: scale(1.04);
}

.meal-feature-text h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.meal-feature-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.meals-standards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .meals-standards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .meals-standards { grid-template-columns: 1fr; }
}

.standard-badge {
    text-align: center;
    color: white;
}

.standard-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.standard-badge h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: white;
}

.standard-badge p {
    font-size: 0.88rem;
    opacity: 0.85;
    line-height: 1.6;
    color: white;
}
