/* ========== ABOUT.CSS - Foodigo About Page Styles ========== */
/* Matches the food-details.css design language */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary: #ff6648;
  --primary-dark: #e94222;
  --secondary: #f9c200;
  --green: #16a34a;
  --dark: #122033;
  --text: #334155;
  --muted: #64748b;
  --white: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --bg-light: #f8fafc;
  --bg-soft: #fff7f3;
  --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 16px 36px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 22px 50px rgba(15, 23, 42, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --transition: all .3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,102,72,.10), transparent 28%),
    radial-gradient(circle at top right, rgba(249,194,0,.08), transparent 24%),
    linear-gradient(180deg, #fff8f4 0%, #ffffff 240px, #f6f8fc 100%);
  color: var(--dark);
  overflow-x: hidden;
  padding-bottom: 0;
}

img {
  width: 100%;
  display: block;
}

button, a {
  font-family: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
}

a {
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 28px));
  margin: auto;
}

/* ================= HEADER ================= */
.about-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
}

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(233,66,34,.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 800;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #edf2f7;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.icon-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ff3d00;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= BREADCRUMB ================= */
.breadcrumb-wrap {
  padding: 18px 0 10px;
}

.breadcrumb-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb-line a {
  color: var(--muted);
  font-weight: 600;
}

.breadcrumb-line a:hover {
  color: var(--primary-dark);
}

.breadcrumb-line strong {
  color: var(--dark);
}

/* ================= HERO SECTION ================= */
.about-hero {
  padding: 30px 0 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,102,72,.12);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.hero-badge i {
  font-size: 12px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-text .highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.stat span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  height: 450px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.floating-card i {
  color: var(--primary);
  font-size: 16px;
}

.card-1 {
  top: 20px;
  left: 20px;
}

.card-2 {
  bottom: 20px;
  right: 20px;
}

/* ================= MISSION SECTION ================= */
.mission-section {
  padding: 60px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,102,72,.2);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255,102,72,.12), rgba(233,66,34,.05));
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon i {
  font-size: 32px;
  color: var(--primary);
}

.mission-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

.mission-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 14px;
}

/* ================= HOW IT WORKS ================= */
.how-it-works {
  padding: 40px 0 60px;
  background: var(--bg-soft);
  border-radius: 48px;
  margin: 20px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(255,102,72,.12);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 15px;
}

.text-center {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(233,66,34,.3);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: #fff3ee;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 20px;
}

.step-icon i {
  font-size: 32px;
  color: var(--primary);
}

.step-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

.step-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ================= TEAM SECTION ================= */
.team-section {
  padding: 60px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  padding: 0 0 24px;
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  margin-bottom: 16px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-card span {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 13px;
  color: var(--muted);
  padding: 0 16px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 40px;
  background: var(--bg-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: white;
}

/* ================= FEATURES SECTION ================= */
.features-section {
  padding: 60px 0;
  background: var(--bg-light);
  border-radius: 48px;
  margin: 20px 0;
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.features-left .section-tag {
  margin-bottom: 16px;
}

.features-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.features-left > p {
  color: var(--text);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item i {
  width: 48px;
  height: 48px;
  background: rgba(255,102,72,.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.feature-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.features-right {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.features-right img {
  height: 480px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.experience-badge i {
  color: var(--primary);
  font-size: 18px;
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
  padding: 60px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  margin-bottom: 20px;
}

.quote-icon i {
  font-size: 32px;
  color: rgba(255,102,72,.3);
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-info .avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
}

.user-info strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
}

.user-info span {
  font-size: 12px;
  color: #fbbf24;
  font-weight: 700;
}

.user-info span i {
  margin-right: 4px;
}

/* ================= CTA SECTION ================= */
.contact-cta {
  padding: 40px 0 60px;
}

.cta-card {
  background: linear-gradient(135deg, var(--dark), #1a2a3f);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-content {
  padding: 48px 40px;
  color: white;
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255,102,72,.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(255,102,72,.1);
}

.cta-image img {
  height: 100%;
  object-fit: cover;
}

/* ================= FOOTER ================= */
.about-footer {
  background: var(--dark);
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand-badge {
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  width: 50px;
  height: 50px;
  border-radius: 18px;
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}

.footer-contact i {
  width: 28px;
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

.footer-bottom i {
  color: var(--primary);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .hero-text h1 {
    font-size: 38px;
  }
  .mission-grid,
  .steps-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cta-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 72px;
  }
  .brand-text strong {
    font-size: 16px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-text {
    padding-right: 0;
    text-align: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-text h1 {
    font-size: 32px;
  }
  .hero-image img {
    height: 350px;
  }
  .mission-grid,
  .steps-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .section-head h2 {
    font-size: 28px;
  }
  .features-left h2 {
    font-size: 28px;
  }
  .cta-content {
    padding: 32px 24px;
  }
  .cta-content h3 {
    font-size: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-contact p {
    justify-content: center;
  }
  .brand-text small {
    display: none;
  }
  .icon-btn {
    width: 40px;
    height: 40px;
  }
  .brand-badge {
    width: 42px;
    height: 42px;
  }
  .step-number {
    left: 50%;
    transform: translateX(-50%);
    top: -12px;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat strong {
    font-size: 22px;
  }
  .stat span {
    font-size: 11px;
  }
  .mission-card {
    padding: 24px 20px;
  }
  .step-card {
    padding: 28px 16px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline {
    text-align: center;
    justify-content: center;
  }
  .floating-card {
    padding: 8px 14px;
    font-size: 11px;
  }
  .card-1 {
    top: 10px;
    left: 10px;
  }
  .card-2 {
    bottom: 10px;
    right: 10px;
  }
}