/* =============================================
   Pizza Transport Guide — Main Stylesheet
   Colors: #FFFFFF (bg), #D62B2B (red accent), #2B2B2B (dark grey text)
   ============================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  background-color: #FFFFFF;
  color: #2B2B2B;
  line-height: 1.7;
}

a {
  color: #D62B2B;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #a51f1f;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: #2B2B2B;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p {
  margin-bottom: 1rem;
  color: #3a3a3a;
}

/* --- Layout Helpers --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 72px 0;
}

.section--grey {
  background-color: #F7F7F7;
}

.section--red {
  background-color: #D62B2B;
  color: #FFFFFF;
}

.section--red h2,
.section--red h3,
.section--red p {
  color: #FFFFFF;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D62B2B;
  margin-bottom: 0.5rem;
}

.section--red .section-label {
  color: rgba(255,255,255,0.75);
}

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

.section-intro {
  max-width: 680px;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2.5rem;
}

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 2px solid #D62B2B;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #2B2B2B;
  letter-spacing: -0.01em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: #D62B2B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.logo span {
  color: #D62B2B;
}

/* Desktop Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2B2B2B;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-list a:hover,
.nav-list a.active {
  background: #fff0f0;
  color: #D62B2B;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #2B2B2B;
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Disclaimer Banner --- */
.disclaimer-banner {
  background: #FFF8E1;
  border-bottom: 1px solid #FFE082;
  padding: 8px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #5D4037;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2B2B2B 60%, #3d1010 100%);
  color: #FFFFFF;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.hero-content h1 span {
  color: #D62B2B;
}

.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 500;
}

.badge-icon {
  font-size: 1rem;
}

/* Pizza Box Illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pizza-box-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}

.pizza-box-illustration {
  width: 260px;
  height: 220px;
  background: linear-gradient(145deg, #f5e6c8, #e8d4a0);
  border-radius: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.pizza-box-illustration::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: #D62B2B;
  border-radius: 12px 12px 0 0;
}

.pizza-box-illustration::after {
  content: 'PIZZA';
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: #D62B2B;
  position: absolute;
  bottom: 18px;
}

.pizza-emoji {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Steam effect */
.steam {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}

.steam-line {
  width: 4px;
  height: 28px;
  background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
  border-radius: 4px;
  animation: steam-rise 1.8s ease-in-out infinite;
}

.steam-line:nth-child(2) { animation-delay: 0.3s; }
.steam-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes steam-rise {
  0%   { opacity: 0.3; transform: translateY(0) scaleX(1); }
  50%  { opacity: 0.8; transform: translateY(-12px) scaleX(1.3); }
  100% { opacity: 0;   transform: translateY(-24px) scaleX(0.8); }
}

/* Glow ring */
.glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,43,43,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.82rem;
  color: #888;
  border-bottom: 1px solid #eee;
}

.breadcrumb a {
  color: #888;
}

.breadcrumb a:hover {
  color: #D62B2B;
}

.breadcrumb span {
  margin: 0 0.4rem;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, #2B2B2B 0%, #1a1a1a 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(214,43,43,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D62B2B;
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 580px;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: #FFF0F0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* --- Feature List --- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-dot {
  width: 10px;
  height: 10px;
  background: #D62B2B;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.feature-item h4 {
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.92rem;
  color: #666;
  margin: 0;
}

/* --- Info Blocks --- */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.info-row.reverse {
  direction: rtl;
}

.info-row.reverse > * {
  direction: ltr;
}

.info-visual {
  background: linear-gradient(135deg, #F7F7F7, #EBEBEB);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

.info-visual::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: #D62B2B;
}

.info-text h2 {
  margin-bottom: 1rem;
}

.info-text p {
  color: #555;
}

/* --- Stat Strip --- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: #EBEBEB;
  border: 1px solid #EBEBEB;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}

.stat-item {
  background: #FFFFFF;
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #D62B2B;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
}

/* --- Steps / Process --- */
.steps {
  counter-reset: step-counter;
  display: grid;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  counter-increment: step-counter;
  padding: 1.75rem;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 12px;
  transition: box-shadow 0.25s;
}

.step:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.step-number {
  width: 44px;
  height: 44px;
  background: #D62B2B;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.4rem;
}

.step-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* --- FAQ Accordion --- */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  background: #FFFFFF;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #2B2B2B;
  transition: background 0.2s;
  gap: 1rem;
}

.faq-question:hover {
  background: #FFF8F8;
}

.faq-question.open {
  background: #FFF0F0;
  color: #D62B2B;
}

.faq-chevron {
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: #D62B2B;
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: 0.97rem;
  color: #555;
  background: #FFF8F8;
  border-top: 1px solid #FFE0E0;
}

.faq-answer.open {
  display: block;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  background: #2B2B2B;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  color: #FFFFFF;
}

.contact-info-block h3 {
  color: #FFFFFF;
  margin-bottom: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #D62B2B;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-detail p,
.contact-detail a {
  color: #FFFFFF;
  font-size: 0.97rem;
  font-weight: 500;
  margin: 0;
}

.contact-detail a:hover {
  color: #D62B2B;
}

.contact-content-block {
  padding: 1rem 0;
}

.contact-content-block h2 {
  margin-bottom: 1rem;
}

.contact-content-block p {
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
  color: #555;
}

.info-card {
  background: #F7F7F7;
  border-left: 4px solid #D62B2B;
  border-radius: 0 10px 10px 0;
  padding: 1.2rem 1.5rem;
  margin-top: 1.5rem;
}

.info-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

/* --- About Page --- */
.about-mission {
  background: linear-gradient(135deg, #D62B2B 0%, #a51f1f 100%);
  border-radius: 16px;
  padding: 3rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.about-mission::before {
  content: '🍕';
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  font-size: 5rem;
  opacity: 0.15;
}

.about-mission h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.about-mission p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid #EBEBEB;
  border-radius: 12px;
  transition: box-shadow 0.25s;
}

.team-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.team-avatar {
  width: 72px;
  height: 72px;
  background: #FFF0F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.88rem;
  color: #888;
  margin: 0;
}

/* --- Privacy Policy --- */
.policy-nav {
  position: sticky;
  top: 88px;
  background: #F7F7F7;
  border-radius: 12px;
  padding: 1.5rem;
}

.policy-nav h4 {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}

.policy-nav ul {
  display: grid;
  gap: 0.25rem;
}

.policy-nav a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  color: #555;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.policy-nav a:hover {
  background: #fff0f0;
  color: #D62B2B;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.policy-content section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #EBEBEB;
}

.policy-content section:last-child {
  border-bottom: none;
}

.policy-content h2 {
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.policy-content h3 {
  margin: 1.5rem 0 0.6rem;
}

.policy-content p,
.policy-content li {
  font-size: 0.97rem;
  color: #555;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.4rem;
}

/* --- Footer --- */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #D62B2B;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  max-width: 600px;
  line-height: 1.5;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0.5rem;
}

/* --- Utility --- */
.text-red { color: #D62B2B; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.divider {
  width: 56px;
  height: 4px;
  background: #D62B2B;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.tag {
  display: inline-block;
  background: #FFF0F0;
  color: #D62B2B;
  border-radius: 6px;
  padding: 0.2rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { display: none; }
  .info-row { grid-template-columns: 1fr; }
  .info-row.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
}

@media (max-width: 680px) {
  .nav-list { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #FFFFFF; border-bottom: 2px solid #D62B2B; padding: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .nav-list.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .hero { padding: 70px 0 60px; }
}

@media (max-width: 400px) {
  .stat-strip { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
}