:root {
    --papaya: #d97706;
    /* Warm ochre / earthy amber for CTAs */
    --navy: #1f2937;
    /* Deep slate (modern alternative to black/navy) */
    --cream: #f5f3ef;
    /* Soft stone for light backgrounds */
    --sage: #94a3a3;
    /* Desaturated sage green for accents */
    --offwhite: #fefcf9;
    /* Near-white with a natural warmth */

    /* Additional theme colors */
    --papaya-light: rgba(217, 119, 6, 0.12);
    /* Soft glow for hover states */
    --navy-light: rgba(31, 41, 55, 0.08);
    /* Shadowed background overlay */
    --cream-gradient: linear-gradient(135deg, #f5f3ef 0%, #fefcf9 100%);
    --navy-gradient: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--offwhite);
  color: var(--navy);
  line-height: 1.6;
}

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

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 138, 76, 0.3);
}

section {
  padding: 80px 0;
}

/* Modern Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
    color: var(--navy);
    line-height: 1.2;
    background: var(--navy-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.85;
}

/* Dark Background Sections */
.features .section-header::after,
.benefits .section-header::after,
.cta .section-header::after {
    background: linear-gradient(90deg, var(--papaya) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.features .section-title,
.benefits .section-title,
.cta .section-title {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features .section-title::before,
.benefits .section-title::before,
.cta .section-title::before {
    background-color: var(--papaya);
}

.features .section-subtitle,
.benefits .section-subtitle,
.cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .section-header {
        margin-bottom: 3.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

/* Section Title Animation */
@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    animation: titleFadeIn 0.8s ease-out forwards;
}

.section-subtitle {
    animation: titleFadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Enhanced Typography */
.section-title span {
    color: var(--papaya);
}

/* Section Header Spacing */
section {
    position: relative;
    overflow: hidden;
}

section:not(:first-child) .section-header {
    margin-top: 2rem;
}

/* Section Background Enhancement */
.section-header::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--papaya-light) 0%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
    border-radius: 50%;
}

/* Header Styles */
header {
  background-color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hero Section */
.hero {
  padding-top: 120px;
  background: var(--cream-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

.hero-text {
  max-width: 600px;
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--navy);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* How It Works Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.step-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 2rem;
}

/* Features Section */
.features {
    background: var(--navy-gradient);
    padding: 6rem 0;
    color: white;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--papaya);
    box-shadow: 0 10px 30px rgba(255, 138, 76, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 138, 76, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--papaya);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--papaya);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Modern Feature Highlights */
.feature-highlights {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 6rem 0;
}

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

.feature-highlight-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--papaya);
}

.feature-highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--papaya-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-highlight-icon i {
    font-size: 1.8rem;
    color: var(--papaya);
    transition: all 0.3s ease;
}

.feature-highlight-card:hover .feature-highlight-icon {
    background: var(--papaya);
}

.feature-highlight-card:hover .feature-highlight-icon i {
    color: white;
}

.feature-highlight-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.feature-highlight-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: var(--navy-gradient);
    padding: 6rem 0;
    color: white;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 4px solid var(--papaya);
}

.rating {
    margin-bottom: 1.5rem;
}

.rating i {
    color: var(--papaya);
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content p {
    color: var(--navy);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content h4 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-title {
    color: rgba(26, 31, 54, 0.7);
    font-size: 0.9rem;
}

.swiper-slide {
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-card {
        min-height: 350px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .feature-highlight-card {
        padding: 1.5rem;
    }

    .feature-highlight-icon {
        width: 50px;
        height: 50px;
    }

    .feature-highlight-content h3 {
        font-size: 1.2rem;
    }
}

/* Testimonials */
.testimonials-container {
  overflow: hidden;
}

/* FAQ Section */
#faq{
    background: var(--offwhite);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Get In Touch Section */
.get-in-touch {
    background: var(--cream);
    text-align: center;
    padding: 4rem 0;
}

.get-in-touch .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--sage);
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    color: var(--navy);
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--papaya);
}

.contact-form button.btn-primary {
    background-color: var(--papaya);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-form button.btn-primary:hover {
    background-color: #b96904;
    /* darker shade of --papaya */
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .waitlist-form {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .feature-card {
    text-align: center;
    align-items: center;
  }

  .cta .section-title {
    font-size: 2.5rem;
  }
}

/* Meal Cards */
.meal-cards-slider {
    padding: 2rem 0;
}

.meal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.meal-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.meal-card h3 {
    padding: 1rem;
    margin: 0;
}

.meal-tags {
    padding: 0 1rem 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.meal-tags span {
    background: var(--cream);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--navy);
}

/* User Types Grid */
.user-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.user-type-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.user-type-card i {
    font-size: 2.5rem;
    color: var(--papaya);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    text-align: center;
    padding: 2rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.testimonial-title {
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: var(--navy);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Navigation */
nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .header-container {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: left!important;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .user-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text, .step-card, .feature-card, .user-type-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Header Scroll Effects */
header.scroll-down {
    transform: translateY(-100%);
}

header.scroll-up {
    transform: translateY(0);
}

header {
    transition: transform 0.3s ease;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--papaya);
}

.swiper-pagination-bullet-active {
    background: var(--papaya);
    transform: scale(1.2);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, var(--navy) 0%, #2a3045 100%);
    color: white;
}

.benefits .section-title {
    color: white;
}

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

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--papaya);
}

.benefit-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Image Enhancement */
.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image img {
        margin-top: 2rem;
    }
}

/* Animation Enhancements */
.benefit-card, .feature-card {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

.benefit-card:nth-child(1) { --animation-order: 1; }
.benefit-card:nth-child(2) { --animation-order: 2; }
.benefit-card:nth-child(3) { --animation-order: 3; }
.benefit-card:nth-child(4) { --animation-order: 4; }

/* Enhanced Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--papaya);
}

.swiper-pagination-bullet {
    background: var(--papaya);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Section Backgrounds */
section:nth-of-type(odd) {
    background-color: var(--offwhite);
}

section:nth-of-type(even) {
    background-color: var(--cream);
}

.hero {
    background: var(--cream-gradient);
}

.features {
    padding: 6rem 0;
    background: var(--navy-gradient);
}

.features .section-title,
.features .feature-card h3 {
    color: white;
}

.features .feature-card {
    background: rgba(255, 255, 255, 0.1);
}

.features .feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

.how-it-works {
    background: var(--papaya-light);
}

.meal-cards {
    background: var(--navy-light);
}

.target-users {
    background: var(--cream-gradient);
}

.testimonials {
    background: var(--navy-gradient);
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
}

.faq {
    background: var(--offwhite);
}

.waitlist {
    background: var(--cream-gradient);
}

/* Icon Styles */
.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--papaya);
}

.features .icon {
    color: white;
}

/* Enhanced Card Styles */
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Stats Section */
.stats {
    background: var(--cream-gradient);
    padding: 6rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--papaya);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.stat-card h3 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

/* App Preview Section */
.app-preview {
    background: var(--cream-gradient);
    padding: 6rem 0;
}

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

.screen {
    text-align: center;
}

.screen img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* CTA Section */
.cta {
    background: var(--navy-gradient);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.cta .section-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.cta-buttons a {
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--papaya);
    border: 2px solid var(--papaya);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--papaya);
    color: white;
}

/* Download App Section */
.download-app {
    background: var(--cream-gradient);
    padding: 6rem 0;
}

.download-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    position: relative;
}

.download-text {
    padding-right: 2rem;
}

.download-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.download-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-feature i {
    font-size: 1.2rem;
    color: var(--papaya);
    width: 24px;
}

.app-feature span {
    font-weight: 500;
}

.download-image {
    display: flex;
    justify-content: center;
}

.download-image .app-image {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.download-image .app-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.download-buttons {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.store-button i {
    font-size: 2rem;
}

.store-button-text {
    display: flex;
    flex-direction: column;
}

.store-button-small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-button-large {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive styles for download app section */
@media (max-width: 768px) {
    .download-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-text {
        padding-right: 0;
        order: 1;
    }

    .download-image {
        order: 0;
        margin-bottom: 2rem;
    }

    .download-buttons {
        order: 2;
        flex-direction: column;
        align-items: center;
    }

    .app-features {
        align-items: center;
    }
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--papaya);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .app-screens {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Animations */
.screen, .stat-card {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

.screen:nth-child(1) { --animation-order: 1; }
.screen:nth-child(2) { --animation-order: 2; }
.screen:nth-child(3) { --animation-order: 3; }

/* Icon Enhancements */
.fa-light {
    font-weight: 300;
}

/* Image Styles */
.step-icon {
    width: 100px;
    height: 100px;
    background: var(--papaya-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--papaya);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--papaya);
    transform: translateY(-5px);
}

.step-card:hover .step-icon i {
    color: white;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--papaya);
    /* Default text color */
}

.logo-text .accent {
    color: var(--papaya);
    /* Ambery accent color */
}

/* Footer Logo */
.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--papaya);
    /* Keep the footer version amber as well for consistency */
}

/* Button Styles */
.btn:hover i {
    transform: translateX(4px);
}

/* Image Loading Animation */
@keyframes imageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

img {
    animation: imageLoad 0.6s ease-out forwards;
}

/* Image Styles */
.user-type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.hero-mockup {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.hero-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.app-screens .screen img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.app-screens .screen:hover img {
    transform: translateY(-10px);
}

.meal-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

.meal-card:hover img {
    transform: scale(1.05);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 3px solid var(--papaya);
}

/* Enhanced Mobile Responsiveness for Images */
@media (max-width: 768px) {
    .hero-mockup {
        transform: none;
        margin-top: 2rem;
    }

    .user-type-image {
        height: 150px;
    }

    .app-screens .screen img {
        max-width: 250px;
    }
}

/* Button Animation */
.btn i {
    transition: transform 0.3s ease;
}

/* Grid Layouts */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-highlights .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 999;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mobile-nav a {
    color: var(--navy);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-nav .btn {
    margin-top: 1rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .header-container {
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }

    /* Consistent Section Spacing */
    section {
        padding: 4rem 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Consistent Typography */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Hero Section Mobile Fixes */
    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Card Grids Mobile Fixes */
    .features-grid,
    .benefits-grid,
    .stats-grid,
    .steps-container,
    .user-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Card Spacing */
    .feature-card,
    .benefit-card,
    .stat-card,
    .step-card,
    .user-type-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Footer Mobile Fixes */
    .footer-content {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-bottom {
        padding: 1.5rem;
    }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    section {
        padding: 5rem 2rem;
    }

    .container {
        padding: 0 2rem;
    }

    .features-grid,
    .benefits-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.fa-apple, .fa-google-play{
    color: var(--papaya);
}