/* ============================================================
   CHEF CALEB — Contact Page
   Blue & White theme — Character Left + Content Right Layout
   ============================================================ */

/* ── Contact Hero ─────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, #1683ff 0%, #0b63c7 100%);
  color: #fff;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 32px;
  align-items: center;
}

.contact-hero-character {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.contact-hero-character img {
  width: min(100%, 380px);
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.30));
  transform: scaleX(-1);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Schoolbell', cursive;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 18px;
}

.contact-hero-content h1 {
  font-family: 'Schoolbell', cursive;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,.20);
  line-height: 1.05;
}

.contact-hero-content p {
  font-size: 1.15rem;
  max-width: 600px;
  color: rgba(255,255,255,.93);
  line-height: 1.65;
  margin-bottom: 20px;
}

.contact-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
}

/* ── Contact Body Layout ──────────────────────────────────── */
.contact-section {
  padding: 60px 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Left Character Column ────────────────────────────────── */
.contact-character-col {
  position: relative;
}

.contact-character-sticky {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-character-sticky img {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.15));
}

.character-speech-bubble {
  background: #fff;
  border: 3px solid #000;
  border-radius: 18px;
  padding: 16px 20px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  text-align: center;
  max-width: 280px;
}

.character-speech-bubble::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #000;
}

.character-speech-bubble::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
}

.character-speech-bubble strong {
  display: block;
  font-family: 'Schoolbell', cursive;
  font-size: 1.15rem;
  color: #0e2238;
  margin-bottom: 4px;
}

.character-speech-bubble span {
  font-size: .9rem;
  color: #57708e;
  line-height: 1.5;
}

/* ── Right Content Column ─────────────────────────────────── */
.contact-content-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Form & Info Wrappers ─────────────────────────────────── */
.contact-form-wrapper,
.contact-info-wrapper {
  background: #fff;
  border: 3px solid #000;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(28,77,90,.07);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-family: 'Schoolbell', cursive;
  font-size: 2rem;
  margin-bottom: 24px;
  color: #0e2238;
}

/* ── Form ─────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  color: #0e2238;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #d8e8eb;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fff;
  color: #0e2238;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1683ff;
  box-shadow: 0 0 0 4px rgba(22,131,255,0.1);
}

.form-group textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { margin-top: 8px; align-self: flex-start; }

/* ── Info Cards Grid ──────────────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-card {
  background: #f7fcfc;
  border: 2px solid #d8e8eb;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s, border-color 0.3s;
}
.contact-info-card:hover { transform: translateY(-2px); border-color: #1683ff; }

.contact-info-card h3 {
  font-family: 'Schoolbell', cursive;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #0e2238;
}

.contact-info-card p { color: #57708e; font-size: .95rem; line-height: 1.6; }
.contact-info-card a { color: #1683ff; font-weight: 600; }
.contact-info-card a:hover { text-decoration: underline; }

/* ── Quick FAQ ────────────────────────────────────────────── */
.faq-quick {
  background: linear-gradient(135deg, rgba(22,131,255,0.06) 0%, rgba(141,245,111,0.06) 100%);
  border: 2px solid #1683ff;
  border-radius: 16px;
  padding: 20px;
}

.faq-quick h3 {
  font-family: 'Schoolbell', cursive;
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #0e2238;
}

.faq-quick ul { list-style: none; padding: 0; }

.faq-quick li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d8e8eb;
  color: #57708e;
  font-size: .92rem;
  line-height: 1.55;
}
.faq-quick li:last-child { border-bottom: none; margin-bottom: 0; }
.faq-quick strong { color: #0e2238; display: block; margin-bottom: 4px; }

/* ── CTA Section ──────────────────────────────────────────── */
.contact-cta {
  background: linear-gradient(135deg, #1683ff 0%, #0b63c7 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.contact-cta h2 {
  font-family: 'Schoolbell', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,.2);
}

.contact-cta p { font-size: 1.15rem; margin-bottom: 28px; color: rgba(255,255,255,.93); }

.contact-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-cta .btn { min-width: 200px; }

.contact-cta .btn-secondary {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.contact-cta .btn-secondary:hover { background: rgba(255,255,255,.25); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #0e2238;
  color: #fff;
  padding: 24px 0;
  text-align: center;
  border-top: 3px solid #1683ff;
}
.footer-content p { font-size: .92rem; line-height: 1.6; }
.footer-content a { color: #77b8ff; font-weight: 600; }
.footer-content a:hover { text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────────── */

/* Tablets */
@media (max-width: 1000px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-character-col { display: none; }

  .contact-info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-hero-character {
    justify-content: center;
    order: -1;
  }

  .contact-hero-character img { max-width: 260px; }
  .contact-hero-content h1 { font-size: 2.4rem; }
  .contact-hero-content p { margin-left: auto; margin-right: auto; }
  .contact-hero-pills { justify-content: center; }
  .contact-hero { padding: 36px 0; }

  .contact-form-wrapper, .contact-info-wrapper { padding: 24px; }
}

/* Phones */
@media (max-width: 600px) {
  .contact-hero { padding: 24px 0; }
  .contact-hero-character img { max-width: 200px; }

  .contact-hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
  }
  .contact-hero-content p { font-size: 1rem; }
  .contact-eyebrow { font-family: 'Inter', sans-serif; font-size: .85rem; }

  .contact-section { padding: 28px 0; }
  .contact-form-wrapper, .contact-info-wrapper { padding: 18px; border-width: 2px; }
  .contact-info-grid { grid-template-columns: 1fr; }

  .contact-cta { padding: 40px 0; }
  .contact-cta h2 { font-family: 'Inter', sans-serif; font-size: 1.6rem; }
  .contact-cta p { font-size: 1rem; }
  .contact-cta-buttons { flex-direction: column; gap: 10px; }
  .contact-cta .btn { min-width: 0; width: 100%; }
}
