/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Problem Section */
.problem-section {
  display: flex;
  width: 100%;
  min-height: 80vh;
  margin-top: 2px;
}

/* Left Image */
.problem-image {
  width: 50%;
}

.problem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Content */
.problem-content {
  width: 50%;
  background-color: #fbf7ef;
  padding: 8% 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Bullet list */
.problem-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 22px;
}

.problem-list li {
  font-size: 1.5rem;
  color: #777;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

/* Highlight line */
.problem-highlight {
  font-size: 2rem;
  font-weight: 500;
  color: #e65734;

  margin-top: 0;
}

@media (max-width: 768px) {
  .problem-section {
    flex-direction: column;
    min-height: auto;
  }

  .problem-image,
  .problem-content {
    width: 100%;
  }

  .problem-image {
    height: 40vh;
    min-height: 300px;
  }

  .problem-content {
    padding: 15% 8%;
  }

  .problem-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .problem-highlight {
    font-size: 1.6rem;
  }
}

/* Assurance Section */
.assurance-section {
  display: flex;
  width: 100%;
  min-height: 80vh;
}

/* Left Content */
.assurance-content {
  width: 50%;
  background-color: #fbf7ef;
  padding: 9% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Heading */
.assurance-content h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #d86044;
  margin-bottom: 40px;
  font-family: "Bodoni Moda", "Didot", serif;
}

/* Bullet List */
.assurance-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 35px;
}

.assurance-list li {
  font-size: 1.4rem;
  color: #8a8a8a;
  margin-bottom: 18px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
}

/* Sub text */
.assurance-subtext {
  font-size: 1.4rem;
  color: #9a9a9a;
  line-height: 1.6;
  margin: 0;
  font-family: "Manrope", sans-serif;
}

/* Right Image */
.assurance-image {
  width: 50%;
}

.assurance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .assurance-section {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .assurance-content,
  .assurance-image {
    width: 100%;
  }

  .assurance-image {
    height: 40vh;
    min-height: 300px;
  }

  .assurance-content {
    padding: 15% 8%;
  }

  .assurance-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .assurance-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .assurance-subtext {
    font-size: 1.2rem;
  }
}

/* Statement Section */
.statement-section {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Heading */
.statement-section h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #d86044;
  margin-bottom: 8px;
  font-family: "Bodoni Moda", "Didot", serif;
}

/* Sub text */
.statement-section p {
  font-size: 1.2rem;
  color: #8a8a8a;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
}

@media (max-width: 768px) {
  .statement-section {
    padding: 30px 15px;
  }

  .statement-section h2 {
    font-size: 1.8rem;
  }

  .statement-section p {
    font-size: 1rem;
  }
}

/* Value Section */
.value-section {
  background: #fbf7ef;
  padding: 50px 0;
}

/* Full-width border wrapper */
.value-border {
  width: 100%;
  border: 4px solid #e28b76;
  margin: 10px 0;
}

/* Grid content */
.value-grid {
  padding: 50px 7% 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

/* Card */
.value-card {
  text-align: center;
  padding: 20px;
}

/* Lottie container */
.lottie {
  width: 230px;
  height: 230px;
  margin: 0 auto 20px;
}

/* Title */
.value-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
}

/* Footer heading inside border */
.value-footer-heading {
  text-align: center;
  padding-bottom: 30px;
  color: #d86044;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Bodoni Moda", "Didot", serif;
}

@media (max-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .lottie {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 600px) {
  .value-section {
    padding: 30px 0;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 5% 30px;
  }

  .lottie {
    width: 150px;
    height: 150px;
  }

  .value-footer-heading {
    font-size: 1.6rem;
    padding-bottom: 20px;
  }
}

.app-section {
  background: #feefe4;
  padding: 110px 0;
}

/* Full-width wrapper */
.app-wrapper {
  display: flex;
  align-items: center;
}

/* Left image – flush to screen */
.app-image {
  flex: 0.95;
  max-width: 700px;
}

.app-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Right content – wider */
.app-content {
  flex: 1.1;
  padding-left: 7%;
  padding-right: 7%;
  background: #feefe4;
  margin-left: 40px;
}

/* Heading */
.app-heading {
  color: #d86044;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 14px;
  font-family: "Bodoni Moda", "Didot", serif;
}

/* Subtitle */
.app-subtitle {
  font-size: 1.45rem;
  color: #777;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
}

/* Bullet points */
.app-points {
  list-style: disc;
  padding-left: 22px;
}

.app-points li {
  font-size: 1.15rem;
  color: #777;
  margin-bottom: 16px;
  line-height: 1.7;
  font-family: "Manrope", sans-serif;
}

@media (max-width: 900px) {
  .app-section {
    padding: 60px 0;
  }

  .app-wrapper {
    flex-direction: column;
  }

  .app-image img {
    height: 350px;
    width: 100%;
  }

  .app-content {
    padding: 40px 5% 0;
    text-align: center;
    margin-left: 0;
  }

  .app-heading {
    font-size: 2rem;
  }

  .app-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .app-points {
    max-width: 420px;
    margin: auto;
    text-align: left;
    padding-left: 20px;
  }

  .app-points li {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}

.about-section {
  background: #fbf7ef;
  padding: 120px 0;
}

.about-wrapper {
  max-width: 1500px;
  margin: auto;
  padding: 0 7%;
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

/* Left text */
.about-content {
  flex: 1.1;
  margin-top: 10px;
}

/* Heading */
.about-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #555;
  font-family: "Manrope", sans-serif;
}

/* Orange switching label */
.about-label {
  font-size: 3.5rem;
  font-weight: 600;
  color: #d86044;
  margin-bottom: 14px;
  transition: opacity 0.4s ease;
  font-family: "Bodoni Moda", "Didot", serif;
}

/* Description */
.about-description {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  max-width: 560px;
  transition: opacity 0.4s ease;
}

/* Right image */
.about-image {
  flex: 1.1;
}

.about-image img {
  width: 100%;
  height: 450px;
  display: block;
}

/* Carousel wrapper */
.about-carousel {
  position: relative;
  min-height: 160px;
}

/* Slides */
.about-slide {
  display: none;
  animation: fade 0.4s ease;
}

.about-slide.active {
  display: block;
}

/* Story paragraphs */
.story-paragraph {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
}

/* Lists */
.about-list {
  padding-left: 18px;
}

.about-list li {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
}

/* Dots */
.about-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.dot {
  width: 6px;
  height: 6px;
  border: 2px solid #111;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dot.active {
  background: #d86044;
  border-color: #d86044;
}

/* Smooth unified transition */
.about-label,
.about-description {
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Make body animation slower */
.about-slide {
  animation: fade 0.8s ease;
}

/* SINGLE UNIT animation */
.about-unit {
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.about-unit.hide {
  opacity: 0;
  transform: translateY(16px);
}

.about-unit.show {
  opacity: 1;
  transform: translateY(0);
}

/* Disable internal animations */
.about-slide {
  display: none;
}

.about-slide.active {
  display: block;
}

/* Fade animation */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .about-section {
    padding: 60px 0;
  }

  .about-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
    padding: 0 5%;
  }

  .about-image img {
    height: 300px;
    width: 100%;
  }

  .about-description {
    margin: auto;
    font-size: 1rem;
  }

  .about-label {
    font-size: 2.5rem;
  }

  .about-heading {
    font-size: 1.6rem;
  }

  .story-paragraph {
    font-size: 1rem;
  }

  .about-list li {
    font-size: 1rem;
  }
}

.testimonial-section {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 30px 0;
}

/* Header Styles */
.header-area {
  text-align: left;
  margin-bottom: 50px;
  padding-left: 8%;
}

.subtitle {
  font-size: 30px;
  font-weight: 500;
  margin-top: 50px;
  font-family: "Manrope", sans-serif;
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #d86044;
  margin-top: 10px;
  font-weight: 600;
  font-family: "Bodoni Moda", "Didot", serif;
}

/* Container & Cards */
.testimonial-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  text-align: center;
}

.main-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 25px;
}

.highlight-text {
  color: #d86044;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: "Bodoni Moda", "Didot", serif;
}

.feedback {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 20px;
  font-family: "Manrope", sans-serif;
}

/* User Profile Section */
.user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  justify-content: center;
}

.user-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-details {
  text-align: left;
}

.user-name {
  font-weight: 600;
  color: #333;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.stars {
  color: #f5b301;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Navigation Buttons */
.nav-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: #d86044;
  color: white;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: 0.3s;
}

.nav-btn {
  opacity: 1;
}

.nav-btn:hover {
  transform: scale(1.1);
}

.section-2 {
  background-color: #fbf7ef;
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 30px 0;
  }

  .header-area {
    padding-left: 5%;
    margin-bottom: 30px;
    text-align: center;
  }

  .subtitle {
    font-size: 1.5rem;
    margin-top: 20px;
  }

  .main-title {
    font-size: 2rem;
  }

  .testimonial-container {
    gap: 20px;
    padding: 0 15px;
  }

  .testimonial-card {
    min-width: 280px;
    margin-bottom: 30px;
  }

  .main-img {
    height: 250px;
  }

  .highlight-text {
    font-size: 1.1rem;
  }

  .feedback {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

/* --- Connect Section (Chef & Form) --- */
.connect-section {
  width: 100%;
  padding: 10px 0 20px 0;
  background-color: #fff;
  border: 4px solid #e28b76;
}

.connect-flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Increased Image Size */
.image-column {
  flex: 0 0 auto;
  width: 550px;
}

.chef-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Increased Form Column Size */
.form-column {
  flex: 0 0 auto;
  padding-bottom: 70px;
}

.contact-card {
  background: #fff;
  border: 2px solid #bdbcbc;
  border-radius: 20px;
  padding: 40px;
  width: 520px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-title {
  font-family: "Bodoni Moda", "Didot", serif;
  font-size: 28px;
  line-height: 1.3;
  margin: 12px 0;
  color: #333;
}

.accent-text {
  color: #d97d54;
}

.form-description {
  font-size: 14px;
  color: #888;
  margin-bottom: 25px;
  font-family: "Manrope", sans-serif;
}

/* Form Fields */
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  font-family: "Manrope", sans-serif;
}

.form-textarea {
  height: 100px;
  resize: none;
  font-family: "Manrope", sans-serif;
}

/* Button Styling */
.submit-btn {
  background-color: #d97d54;
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Manrope", sans-serif;
}

.submit-btn:hover {
  background-color: #bf6a44;
}

/* --- Responsive Behavior --- */
@media (max-width: 900px) {
  .connect-section {
    border-width: 3px;
  }

  .connect-flex {
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    gap: 30px;
  }

  .image-column {
    width: 90%;
    max-width: 400px;
  }

  .form-column {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 0;
  }

  .contact-card {
    width: 90%;
    max-width: 400px;
    padding: 30px 25px;
  }

  .form-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .connect-flex {
    padding: 0 15px;
    gap: 20px;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .form-title {
    font-size: 22px;
  }

  .form-input,
  .form-textarea {
    padding: 12px;
  }
}

/* --- Footer Main --- */
.main-footer {
  background-color: #fbf7ef;
  padding: 80px 0 0 0;
  color: #d86044;
  width: 100%;
}

/* --- Container Alignment --- */
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Column 1: Logo/Contact --- */
.contact-col {
  flex: 1;
  text-align: left;
}

.footer-logo-img {
  max-width: 120px;
  height: auto;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 8px;
  color: #e28b76;
  font-family: "Manrope", sans-serif;
}

/* --- Column 2: Links --- */
.links-col {
  flex: 1;
  padding-left: 10px;
}

.footer-heading {
  font-family: "Bodoni Moda", "Didot", serif;
  font-size: 26px;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
}

.footer-links a {
  text-decoration: none;
  color: #e28b76;
  font-size: 15px;
  transition: 0.3s;
}

/* --- Column 3: Map Graphic --- */
.regional-graphic {
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.karnataka-img {
  height: 220px;
  width: auto;
}

.karnataka-text {
  text-align: left;
  color: #d86044;
}
.policy-link {
  color: #d86044;
  text-decoration: none;
  font-weight: 600;
}

.policy-link:hover {
  text-decoration: underline;
}
.k-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}
.k-subtitle {
  margin: 0;
  font-size: 14px;
}
.k-small {
  font-size: 11px;
  margin-top: 5px;
  opacity: 0.8;
}

/* --- Copyright Bottom Bar --- */
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(226, 139, 118, 0.2);
  text-align: center;
  padding: 30px 0;
  font-size: 13px;
  color: #e28b76;
}

/* --- Responsive fixes --- */
@media (max-width: 992px) {
  .main-footer {
    padding: 60px 0 0;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
    padding: 0 30px;
  }

  .contact-col,
  .links-col,
  .regional-graphic {
    padding-left: 0;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .links-col {
    order: 3;
  }

  .regional-graphic {
    justify-content: center;
    order: 2;
  }

  .karnataka-text {
    text-align: center;
  }

  .footer-heading {
    font-size: 22px;
  }

  .karnataka-img {
    height: 180px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    padding: 0 20px;
    gap: 40px;
  }

  .footer-logo-img {
    max-width: 150px;
  }

  .footer-heading {
    font-size: 20px;
  }

  .regional-graphic {
    flex-direction: column;
    text-align: center;
  }

  .karnataka-img {
    height: 150px;
  }
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #d86044; /* Your brand orange */
  font-size: 18px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.social-links a:hover {
  color: #e28b76; /* Lighter shade on hover */
  transform: translateY(-3px); /* Slight lift effect */
}

/* Ensure icons align left on desktop but center on mobile */
@media (max-width: 850px) {
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-list li {
    text-align: left;
  }
}
