/* ============================================================
   sTrips Compass — Contact & Booking Page Styles
   ============================================================ */

/* ── CONTACT LAYOUT ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

/* ── CONTACT FORM CARD ────────────────────────────────────── */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-form-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* ── CONTACT INFO SIDEBAR ─────────────────────────────────── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}

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

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

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-subtle);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-item-text a,
.contact-item-text p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.contact-item-text a:hover {
  color: var(--primary);
}

/* WhatsApp CTA */
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
}

.whatsapp-cta .wa-icon {
  font-size: 1.5rem;
}

/* ── MAP ──────────────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 420px;
  background: var(--gradient-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
}

.map-placeholder .map-icon { font-size: 3rem; }
.map-placeholder h4 { color: var(--text-dark); margin: 0; }
.map-placeholder p { font-size: 0.85rem; text-align: center; max-width: 300px; }

/* ── SOCIAL LINKS ─────────────────────────────────────────── */
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  color: var(--text-dark);
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.social-card.instagram:hover { border-color: #E1306C; color: #E1306C; }
.social-card.facebook:hover { border-color: #1877F2; color: #1877F2; }
.social-card.tiktok:hover { border-color: #000; color: #000; }
.social-card.whatsapp:hover { border-color: #25D366; color: #25D366; }

.social-card-icon { font-size: 1.3rem; }

/* ── BOOKING PAGE ─────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.booking-form-card > h2 {
  margin-bottom: 0.5rem;
}

.booking-form-card > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.75rem 0 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.form-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.travelers-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Budget Range */
.budget-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.budget-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.budget-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.budget-option:has(input:checked) {
  border-color: var(--primary);
  background: rgba(0,119,182,0.06);
}

.budget-option-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.budget-option-text strong {
  font-size: 0.88rem;
  color: var(--text-dark);
}

.budget-option-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Booking Sidebar */
.booking-sidebar-card {
  background: var(--gradient-ocean);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: 6rem;
}

.booking-sidebar-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.booking-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.booking-benefit .icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.booking-benefit-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.booking-benefit-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.booking-contact-alt {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
}

.booking-contact-alt h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.booking-contact-alt a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.booking-contact-alt a:hover { color: var(--white); }

/* ── SUCCESS STATE ────────────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show { display: block; }

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(34,197,94,0.4);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar-card { position: static; }
}

@media (max-width: 640px) {
  .contact-form-card,
  .booking-form-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .social-links-grid { grid-template-columns: 1fr; }
  .budget-options { grid-template-columns: 1fr; }
  .travelers-input { grid-template-columns: 1fr; }
}
