/* Variables */
:root {
  --primary-color: #2ecc71;
  --primary-dark: #27ae60;
  --secondary-color: #e8f5e9;
  --text-color: #2c3e50;
  --light-text: #ecf0f1;
  --background: #ffffff;
  --section-bg: #f9f9f9;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --green: #6bbf59;
  --dark-green: #3a7d3b;
  --beige: #f7f5ef;
  --white: #fff;
  --gray: #f0f0f0;
  --accent: #e6c77e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--beige);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--background);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 1000;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

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

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

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

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  background: rgba(107, 191, 89, 0.6);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-content .cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: var(--dark-green);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn.secondary {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
}

.btn:hover {
  background: var(--dark-green);
  color: var(--white);
}

/* About Section */
.about {
  padding: 5rem 10%;
  background-color: var(--section-bg);
}

.about h2 {
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 3rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.skills {
  margin-top: 2rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.skill-tags span {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Projects Section */
.projects {
  padding: 5rem 10%;
}

.projects h2 {
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 3rem;
}

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

.project-card {
  background: var(--background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.project-image.placeholder {
  height: 200px;
  background-color: var(--secondary-color);
}

.project-card h3 {
  padding: 1rem;
  color: var(--primary-dark);
}

.project-card p {
  padding: 0 1rem 1rem;
}

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

.project-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 5rem 10%;
  background-color: var(--section-bg);
  text-align: center;
}

.contact h2 {
  color: var(--primary-dark);
  margin-bottom: 3rem;
}

.cv-download {
  margin-bottom: 3rem;
}

.cv-download h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.cv-download p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.download-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.download-button i {
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--primary-dark);
  color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

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

  .about, .projects, .contact {
    padding: 3rem 5%;
  }
}

@media (max-width: 480px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }
}

/* What We Offer */
.offer-section {
  background: var(--white);
  padding: 3rem 0 2rem 0;
}

.offer-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--green);
}

.offers {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.offer {
  background: var(--beige);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.offer-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offer-title-text {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-green);
}

/* How It Works */
.how-section {
  padding: 3rem 0 2rem 0;
  background: var(--gray);
}

.how-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--green);
}

.how-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.how-step {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.how-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--green);
}

.how-title-text {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-green);
}

/* Testimonials */
.testimonials-section {
  padding: 3rem 0 2rem 0;
  background: var(--white);
}

.testimonials-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--green);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial {
  background: var(--beige);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  flex: 1 1 250px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--green);
}

.testimonial-name {
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #444;
}

/* CTA Section */
.cta-section {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 3rem 1rem;
  margin: 2rem 0;
  border-radius: 24px;
  width: 90%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-section .btn {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--white);
  margin-top: 1rem;
}

.cta-section .btn:hover {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
}

/* Meal Plans */
.plans-section {
  padding: 3rem 0 2rem 0;
  background: var(--white);
}

.plans-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--green);
}

.plans {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.plan-card {
  background: var(--beige);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  flex: 1 1 250px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-img {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--green);
}

.plan-name {
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.plan-details {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1rem;
}

.plan-card .btn {
  margin-top: auto;
}

/* FAQs */
.faq-section {
  background: var(--gray);
  padding: 3rem 0 2rem 0;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--green);
}

.faqs {
  max-width: 700px;
  margin: 0 auto;
}

.faq {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1.25rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-q {
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.faq-a {
  color: #444;
  font-size: 1rem;
}

/* Footer */
footer {
  background: var(--white);
  padding: 2rem 0 1rem 0;
  border-top: 1px solid #eee;
}

/* --- Order Form Redesign --- */
.order-form-max {
  max-width: 600px;
  margin: 3rem auto 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
}
.order-form-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.form-group label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-green);
}
.form-group input {
  font-size: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1.5px solid var(--green);
  background: var(--beige);
  outline: none;
  transition: border 0.2s;
}
.form-group input:focus {
  border: 2px solid var(--dark-green);
}
.order-form-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.order-form-btn {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 30px;
}
@media (max-width: 700px) {
  .order-form-max {
    padding: 1.2rem 0.5rem;
  }
  .order-form-title {
    font-size: 1.3rem;
  }
  .order-form-btn {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
}

/* --- Scrollable FAQs Section --- */
.faqs-scrollable-container {
  max-width: 700px;
  margin: 2.5rem auto 0 auto;
  background: var(--gray);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2rem 1.5rem;
}
.faqs-scrollable {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.faqs-scrollable::-webkit-scrollbar {
  width: 8px;
  background: #e0e0e0;
  border-radius: 8px;
}
.faqs-scrollable::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 8px;
}
@media (max-width: 700px) {
  .faqs-scrollable-container {
    padding: 1rem 0.5rem;
  }
  .faqs-scrollable {
    max-height: 180px;
  }
}

/* --- Meal Plans Page Enhanced Design --- */
.meal-plans-bg {
  background: linear-gradient(135deg, #e8f5e9 0%, #f7f5ef 100%);
  min-height: 100vh;
  padding: 0 0 3rem 0;
}
.meal-plans-title {
  font-size: 2.5rem;
  color: var(--green);
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.meal-icon {
  font-size: 2.2rem;
}
.meal-plans-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #4e6e4c;
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.meal-sparkle {
  font-size: 1.2rem;
}
.meal-plans-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .meal-plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    justify-items: center;
  }
}
.meal-plan-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(107,191,89,0.10), 0 1.5px 6px rgba(60,60,60,0.04);
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
  overflow: hidden;
}
.meal-plan-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 40px rgba(107,191,89,0.18), 0 2px 8px rgba(60,60,60,0.07);
  border: 2px solid var(--green);
}
.plan-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.35em 1em;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(107,191,89,0.10);
  letter-spacing: 1px;
  z-index: 2;
}
.meal-plan-card .plan-img {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 2.5px solid var(--green);
  box-shadow: 0 2px 12px rgba(107,191,89,0.10);
}
.meal-plan-card .plan-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}
.meal-plan-card .plan-details {
  font-size: 1.08rem;
  color: #4e6e4c;
  margin-bottom: 0.7rem;
  text-align: center;
}
.meal-plan-card .plan-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.2rem;
}
.meal-plan-card .btn {
  margin-top: auto;
  font-size: 1.1rem;
  padding: 0.8rem 2.2rem;
}
@media (max-width: 900px) {
  .meal-plans-title { font-size: 2rem; }
  .meal-plans-grid { gap: 1.2rem; }
}
@media (max-width: 600px) {
  .meal-plans-title { font-size: 1.3rem; }
  .meal-plans-subtitle { font-size: 1rem; }
  .meal-plan-card { padding: 1.2rem 0.5rem 1.5rem 0.5rem; }
  .meal-plan-card .plan-img { width: 90px; height: 90px; }
}
