/*
=============================================================
  SINGH SAAB TAXI SERVICE
  FILE: css/contact.css
  PURPOSE: Contact page styles
  Load order: AFTER style.css
=============================================================
*/

/* =============================================================
   CONTACT PAGE BODY
   ============================================================= */
.contact-page {
  background: #f0f3fb;
  min-height: 100vh;
}

/* =============================================================
   HERO
   ============================================================= */
.contact-hero {
  background:
    radial-gradient(ellipse at 75% 25%, rgba(255,183,0,0.1) 0%, transparent 55%),
    linear-gradient(135deg, #0d1a3e 0%, #1A2E6E 60%, #243580 100%);
  padding: 40px 0 36px;
  border-bottom: 3px solid #FFB700;
}

.ch-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.ch-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.ch-breadcrumb a:hover { color: #FFB700; }
.ch-breadcrumb i { font-size: 9px; }
.ch-breadcrumb span { color: #FFB700; }

.ch-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.ch-title span { color: #FFB700; }

.ch-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* =============================================================
   QUICK CONTACT PILLS
   ============================================================= */
.quick-pills-wrap { margin-top: -24px; position: relative; z-index: 10; }

.quick-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.qpill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(26,46,110,0.1);
  border: 1.5px solid rgba(26,46,110,0.06);
  transition: all 0.25s ease;
}
.qpill:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(26,46,110,0.14);
  border-color: rgba(255,183,0,0.4);
}

.qpill-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.qpill--call  .qpill-icon { background: linear-gradient(135deg, #1A2E6E, #2F3D74); color: #FFB700; }
.qpill--wa    .qpill-icon { background: linear-gradient(135deg, #25D366, #1ebe5b); color: #fff; }
.qpill--mail  .qpill-icon { background: linear-gradient(135deg, #f59e0b, #FFD257); color: #0d1a3e; }
.qpill--hours .qpill-icon { background: linear-gradient(135deg, #eef1fb, #dde2f5);  color: #1A2E6E; }

.qpill-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 2px;
}
.qpill-value {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #0d1a3e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================================================
   MAIN CONTENT AREA
   ============================================================= */
.contact-main {
  padding-top: 40px;
  padding-bottom: 56px;
}

/* =============================================================
   INFO CARD (left)
   ============================================================= */
.cinfo-card {
  background: linear-gradient(160deg, #0d1a3e 0%, #1A2E6E 60%, #243580 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(13,26,62,0.28);
  position: sticky;
  top: 120px;
}

.cinfo-header {
  padding: 30px 28px 24px;
  border-bottom: 1px solid rgba(255,183,0,0.15);
}

.cinfo-title {
  font-family: 'Raleway', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 8px 0 6px;
}
.cinfo-title span { color: #FFB700; }

.cinfo-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.cinfo-items { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }

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

.cinfo-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,183,0,0.12);
  border: 1px solid rgba(255,183,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFB700;
  font-size: 15px;
  flex-shrink: 0;
}
.cinfo-icon--wa   { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.2); color: #4ade80; }
.cinfo-icon--mail { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.2); color: #fbbf24; }

.cinfo-item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.cinfo-item-value {
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}
.cinfo-link {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}
.cinfo-link:hover { color: #FFB700; }

.cinfo-social {
  padding: 18px 28px 26px;
  border-top: 1px solid rgba(255,183,0,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cinfo-social-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.cinfo-social-links { display: flex; gap: 10px; }
.cinfo-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,183,0,0.25);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.22s;
}
.cinfo-social-icon:hover       { background: #FFB700; color: #0d1a3e; border-color: #FFB700; transform: translateY(-3px); }
.cinfo-social-wa               { color: #4ade80; border-color: rgba(74,222,128,0.3); }
.cinfo-social-wa:hover         { background: #22c55e; border-color: #22c55e; color: #fff; }

/* =============================================================
   CONTACT FORM CARD (right)
   ============================================================= */
.cform-card {
  background: #fff;
  border-radius: 22px;
  border: 1.5px solid rgba(26,46,110,0.07);
  box-shadow: 0 4px 24px rgba(26,46,110,0.08);
  overflow: hidden;
}

.cform-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px 18px;
  border-bottom: 1px solid rgba(26,46,110,0.06);
  background: linear-gradient(90deg, #f8f9ff, #fff);
}

.cform-step-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1A2E6E, #2F3D74);
  color: #FFB700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,46,110,0.2);
}

.cform-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #0d1a3e;
}
.cform-sub {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}

/* =============================================================
   ALERT BANNERS
   ============================================================= */
.cform-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid transparent;
}
.cform-alert i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.cform-alert a { font-weight: 700; }

.cform-alert--success { background: #f0fdf4; border-color: #86efac; color: #15803d; }
.cform-alert--success i { color: #22c55e; }
.cform-alert--success a { color: #15803d; }

.cform-alert--error { background: #fef2f2; border-color: #fca5a5; color: #dc2626; }
.cform-alert--error i { color: #ef4444; }
.cform-alert--error a { color: #dc2626; }

.cform-alert--warn { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.cform-alert--warn i { color: #f59e0b; }

/* =============================================================
   FORM FIELDS
   ============================================================= */
.cform-body { padding: 24px 26px 28px; }

.cfield-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}
.cfield-label .req { color: #FFB700; }

.cfield-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.cfield-wrap--textarea { align-items: flex-start; }
.cfield-wrap--select   {}

.cfield-icon {
  position: absolute;
  left: 14px;
  color: #1A2E6E;
  font-size: 14px;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.2s, color 0.2s;
  z-index: 1;
}
.cfield-icon--top { top: 14px; }
.cfield-wrap:focus-within .cfield-icon { opacity: 1; color: #FFB700; }

.cfield-input,
.cfield-select,
.cfield-textarea {
  width: 100%;
  border: 2px solid rgba(26,46,110,0.1);
  border-radius: 12px;
  padding: 0 16px 0 42px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #0d1a3e;
  background: #fafbff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.cfield-input,
.cfield-select { height: 48px; }

.cfield-textarea {
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
  min-height: 120px;
}

.cfield-input:focus,
.cfield-select:focus,
.cfield-textarea:focus {
  border-color: #FFB700;
  box-shadow: 0 0 0 3px rgba(255,183,0,0.15);
  background: #fff;
}

.cfield-input::placeholder,
.cfield-textarea::placeholder { color: #b0b8cc; }

/* Select arrow */
.cfield-wrap--select::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 14px;
  color: #9ca3af;
  pointer-events: none;
  font-size: 14px;
}

/* =============================================================
   SUBMIT BUTTON
   ============================================================= */
.cform-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1A2E6E 0%, #2F3D74 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}
.cform-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.45s;
}
.cform-submit-btn:hover::before { transform: translateX(100%); }
.cform-submit-btn:hover {
  background: linear-gradient(135deg, #FFB700 0%, #FFD257 100%);
  color: #0d1a3e;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,183,0,0.4);
}

.csb-arrow { margin-left: auto; transition: transform 0.22s; }
.cform-submit-btn:hover .csb-arrow { transform: translateX(4px); }

/* =============================================================
   MAP SECTION
   ============================================================= */
.map-section-wrap {
  padding: 56px 0 0;
  background: #fff;
  border-top: 1px solid rgba(26,46,110,0.07);
}

.map-frame-wrap {
  position: relative;
  margin-top: 8px;
}
.map-frame-wrap iframe {
  display: block;
  filter: saturate(0.9) contrast(1.05);
}

.map-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  border: 1.5px solid rgba(255,183,0,0.3);
  z-index: 5;
}
.map-overlay-badge i { font-size: 22px; color: #FFB700; flex-shrink: 0; }
.mob-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #0d1a3e;
}
.mob-addr {
  font-size: 11.5px;
  color: #9ca3af;
  margin-top: 1px;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1199px) {
  .quick-pills { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .cinfo-card { position: static; }
  .contact-hero { padding: 30px 0 26px; }
  .quick-pills-wrap { margin-top: -18px; }
}

@media (max-width: 767px) {
  .quick-pills { grid-template-columns: 1fr 1fr; gap: 10px; }
  .qpill { padding: 13px 14px; gap: 10px; }
  .qpill-value { font-size: 12px; }
  .cform-body { padding: 18px 18px 22px; }
  .cform-header { padding: 18px 18px 14px; }
  .cinfo-items { padding: 20px 22px; }
  .cinfo-header { padding: 24px 22px 20px; }
  .cinfo-social { padding: 14px 22px 20px; }
}

@media (max-width: 480px) {
  .quick-pills { grid-template-columns: 1fr; }
  .qpill--hours { display: none; } /* hide on very small screens */
  .map-overlay-badge { top: 10px; left: 10px; padding: 10px 12px; }
}
