/* ============================================================
   CONTACT.CSS — Contact Us Page | Lion King Naturals
   ============================================================ */

/* ── Hero ── */
.contact-hero {
  background: linear-gradient(135deg, #f5efe4 0%, #ede8df 60%, #e0d8cc 100%);
  border-bottom: 1.75px dashed #e6d6c5;
  padding: 60px 60px 50px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '✉️';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.07;
  pointer-events: none;
}

.contact-hero-inner {
  max-width: 640px;
}

.contact-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2d5a1b;
  background: #eef7e2;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.contact-hero h1 {
  font-family: "Noto Sans", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #573e19;
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-hero h1 .hi {
  color: #2d5a1b;
}

.contact-hero p {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
}

/* ── Section ── */
.contact-section {
  padding: 60px 60px 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* ── Info Panel (left) ── */
.contact-info-panel {
  background: #2d5a1b;
  border-radius: 18px;
  padding: 36px 30px;
  color: #fff;
  position: sticky;
  top: 90px;
  box-shadow: 0 8px 32px rgba(45, 90, 27, 0.25);
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  bottom: -40px;
  /* right: -40px; */
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.contact-info-panel::after {
  content: '';
  position: absolute;
  top: -30px;
  right: 30px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cip-top {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cip-top h2 {
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.cip-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.cip-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.cip-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.cip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cip-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.cip-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cip-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.55);
}

.cip-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

a.cip-value:hover {
  color: #a8e47a;
}

.cip-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
}

.cip-trust-item {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── Form Panel (right) ── */
.contact-form-panel {
  background: #fdf9f2;
  border: 1px solid #d8cbb6;
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cfp-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #573e19;
  margin-bottom: 6px;
}

.cfp-sub {
  font-size: 13.5px;
  color: #888;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Django messages */
.contact-messages {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-msg {
  padding: 12px 16px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: "Noto Sans", sans-serif;
}

.contact-msg-success {
  background: #dcf5e0;
  color: #166534;
  border: 1px solid #a7d7b0;
}

.contact-msg-error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #f5c6c6;
}

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

.cf-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.cf-field label {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #573e19;
}

.cf-required {
  color: #b91c1c;
  margin-left: 2px;
}

.cf-field input,
.cf-field textarea {
  padding: 11px 15px;
  border: 1.5px solid #d8cbb6;
  border-radius: 10px;
  background: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  color: #573e19;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: #2d5a1b;
  box-shadow: 0 0 0 3px rgba(45, 90, 27, 0.1);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: #bbb;
  font-size: 13.5px;
}

.cf-field textarea {
  resize: vertical;
  min-height: 130px;
}

.cf-char-count {
  font-size: 11.5px;
  color: #888;
  text-align: right;
  margin-top: 2px;
}

.cf-error {
  font-size: 12px;
  color: #b91c1c;
  font-weight: 600;
  display: none;
  font-family: "Noto Sans", sans-serif;
}

/* Submit button */
.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 28px;
  background: #2d5a1b;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Noto Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 4px;
  letter-spacing: 0.2px;
}

.cf-submit:hover {
  background: #3d7a1a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 90, 27, 0.28);
}

.cf-submit:active {
  transform: translateY(0);
}

/* ── FAQ Section ── */
.contact-faq {
  background: #f5efe4;
  border-top: 1.75px dashed #e6d6c5;
  padding: 60px 60px;
}

.contact-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #573e19;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-title::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: #d8cbb6;
  border-radius: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  background: #fdf9f2;
  border: 1px solid #d8cbb6;
  border-radius: 12px;
  padding: 20px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.faq-q {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #573e19;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.faq-q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #2d5a1b;
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-a {
  font-size: 13.5px;
  color: #888;
  line-height: 1.7;
  padding-left: 30px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 20px 36px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-section {
    padding: 40px 20px 50px;
  }

  .contact-form-panel {
    padding: 28px 20px;
  }

  .cf-two-col {
    grid-template-columns: 1fr;
  }

  .contact-faq {
    padding: 40px 20px;
  }

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

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 24px;
  }

  .cip-trust {
    gap: 6px;
  }

  .cip-trust-item {
    font-size: 10.5px;
    padding: 4px 10px;
  }
}