/* ==========================================================================
   SHRAMIK PORTAL - CONTACT US PAGE UPGRADE STYLES
   ========================================================================== */

:root {
  --sh-cnt-primary: #0b2545;
  --sh-cnt-primary-light: #134074;
  --sh-cnt-accent: #e06d10;
  --sh-cnt-accent-hover: #c45a05;
  --sh-cnt-accent-light: #fff3ea;
  --sh-cnt-gold: #ffb703;
  --sh-cnt-success: #10b981;
  --sh-cnt-success-bg: #ecfdf5;
  --sh-cnt-bg-soft: #f4f6fa;
  --sh-cnt-card-bg: #ffffff;
  --sh-cnt-border: #e2e8f0;
  --sh-cnt-border-light: #f1f5f9;
  --sh-cnt-text: #0f172a;
  --sh-cnt-text-muted: #64748b;
  --sh-cnt-radius-sm: 8px;
  --sh-cnt-radius-md: 14px;
  --sh-cnt-radius-lg: 20px;
  --sh-cnt-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --sh-cnt-shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --sh-cnt-shadow-lg: 0 20px 35px -10px rgba(11, 37, 69, 0.16);
}

/* --------------------------------------------------------------------------
   1. HERO BANNER
   -------------------------------------------------------------------------- */
.sh-contact-hero {
  position: relative;
  background: linear-gradient(135deg, #07192f 0%, #0b2545 60%, #134074 100%);
  color: #ffffff;
  padding: 48px 0 58px;
  overflow: hidden;
  border-bottom: 3px solid var(--sh-cnt-accent);
}

.sh-contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 85% 20%, rgba(224, 109, 16, 0.2) 0%, transparent 60%),
              radial-gradient(circle at 15% 85%, rgba(255, 183, 3, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.sh-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.sh-contact-badge i {
  color: var(--sh-cnt-gold);
}

.sh-contact-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.sh-contact-title span {
  color: var(--sh-cnt-gold);
}

.sh-contact-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 780px;
  margin: 0 auto 18px;
  line-height: 1.6;
}

.sh-contact-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 18px;
  border-radius: 20px;
}

.sh-contact-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sh-contact-breadcrumbs a:hover {
  color: var(--sh-cnt-gold);
}

.sh-contact-breadcrumbs span.sep {
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   2. CONTACT CHANNELS / INFO CARDS
   -------------------------------------------------------------------------- */
.sh-contact-channels-section {
  position: relative;
  margin-top: -34px;
  z-index: 20;
}

.sh-channel-card {
  background: #ffffff;
  border: 1px solid var(--sh-cnt-border);
  border-radius: var(--sh-cnt-radius-md);
  box-shadow: var(--sh-cnt-shadow-sm);
  padding: 24px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.sh-channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, var(--sh-cnt-accent) 0%, var(--sh-cnt-gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sh-channel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-cnt-shadow-md);
  border-color: #cbd5e1;
}

.sh-channel-card:hover::before {
  opacity: 1;
}

.sh-channel-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sh-cnt-primary) 0%, var(--sh-cnt-primary-light) 100%);
  color: var(--sh-cnt-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.18);
  transition: transform 0.3s ease;
}

.sh-channel-card:hover .sh-channel-icon-wrap {
  transform: scale(1.08);
}

.sh-channel-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--sh-cnt-primary);
  margin-bottom: 6px;
}

.sh-channel-desc {
  font-size: 13.5px;
  color: var(--sh-cnt-text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
  flex-grow: 1;
}

.sh-channel-link {
  color: var(--sh-cnt-primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.sh-channel-link:hover {
  color: var(--sh-cnt-accent);
}

.sh-channel-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   3. MAIN FORM & MAP SECTION
   -------------------------------------------------------------------------- */
.sh-contact-main-section {
  padding: 60px 0 75px;
  background-color: var(--sh-cnt-bg-soft);
}

.sh-contact-form-card {
  background: #ffffff;
  border: 1px solid var(--sh-cnt-border);
  border-radius: var(--sh-cnt-radius-lg);
  box-shadow: var(--sh-cnt-shadow-md);
  padding: 36px 32px;
  height: 100%;
}

.sh-form-header {
  margin-bottom: 24px;
}

.sh-form-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--sh-cnt-accent);
  background: var(--sh-cnt-accent-light);
  border: 1px solid #fed7aa;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.sh-form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--sh-cnt-primary);
  margin-bottom: 6px;
}

.sh-form-subtitle {
  font-size: 13.5px;
  color: var(--sh-cnt-text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.sh-field-wrap {
  position: relative;
  margin-bottom: 18px;
}

.sh-cnt-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sh-cnt-primary);
  margin-bottom: 6px;
}

.sh-cnt-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.sh-cnt-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 15px;
  pointer-events: none;
  z-index: 2;
  transition: color 0.2s ease;
}

.sh-cnt-input {
  width: 100%;
  height: 48px;
  padding: 10px 14px 10px 42px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sh-cnt-text);
  background-color: var(--sh-cnt-bg-soft);
  border: 1.5px solid var(--sh-cnt-border);
  border-radius: var(--sh-cnt-radius-sm);
  outline: none;
  transition: all 0.25s ease;
}

.sh-cnt-input:focus {
  background-color: #ffffff;
  border-color: var(--sh-cnt-accent);
  box-shadow: 0 0 0 4px rgba(224, 109, 16, 0.12);
}

.sh-cnt-input:focus + .sh-cnt-icon,
.sh-cnt-input-group:focus-within .sh-cnt-icon {
  color: var(--sh-cnt-accent);
}

.sh-cnt-textarea {
  width: 100%;
  padding: 12px 14px 12px 42px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sh-cnt-text);
  background-color: var(--sh-cnt-bg-soft);
  border: 1.5px solid var(--sh-cnt-border);
  border-radius: var(--sh-cnt-radius-sm);
  outline: none;
  transition: all 0.25s ease;
  resize: vertical;
  min-height: 120px;
}

.sh-cnt-textarea:focus {
  background-color: #ffffff;
  border-color: var(--sh-cnt-accent);
  box-shadow: 0 0 0 4px rgba(224, 109, 16, 0.12);
}

.sh-cnt-textarea-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  color: #94a3b8;
  font-size: 15px;
  pointer-events: none;
  z-index: 2;
  transition: color 0.2s ease;
}

.sh-cnt-input-group:focus-within .sh-cnt-textarea-icon {
  color: var(--sh-cnt-accent);
}

.sh-btn-contact-submit {
  width: 100%;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--sh-cnt-accent) 0%, #d05f08 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--sh-cnt-radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(224, 109, 16, 0.35);
  transition: all 0.25s ease;
}

.sh-btn-contact-submit:hover {
  background: linear-gradient(135deg, var(--sh-cnt-accent-hover) 0%, #b85002 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(224, 109, 16, 0.45);
  transform: translateY(-1px);
}

.sh-form-privacy-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--sh-cnt-text-muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   4. SIDE CARD: HOURS & MAP
   -------------------------------------------------------------------------- */
.sh-contact-side-card {
  background: #ffffff;
  border: 1px solid var(--sh-cnt-border);
  border-radius: var(--sh-cnt-radius-lg);
  box-shadow: var(--sh-cnt-shadow-md);
  padding: 30px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sh-hours-box {
  background: var(--sh-cnt-bg-soft);
  border: 1px solid var(--sh-cnt-border);
  border-radius: var(--sh-cnt-radius-sm);
  padding: 16px 18px;
  margin-bottom: 22px;
}

.sh-hours-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sh-hours-header i {
  color: var(--sh-cnt-accent);
  font-size: 18px;
}

.sh-hours-header h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--sh-cnt-primary);
  margin-bottom: 0;
}

.sh-hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--sh-cnt-text);
  padding: 4px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.sh-hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sh-hours-day {
  font-weight: 600;
  color: var(--sh-cnt-primary);
}

.sh-hours-time {
  color: var(--sh-cnt-text-muted);
}

/* Map Frame */
.sh-map-container {
  border-radius: var(--sh-cnt-radius-md);
  overflow: hidden;
  border: 1px solid var(--sh-cnt-border);
  box-shadow: var(--sh-cnt-shadow-sm);
  flex-grow: 1;
  min-height: 250px;
  position: relative;
}

.sh-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: none;
  display: block;
}

.sh-map-action-bar {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.sh-btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--sh-cnt-bg-soft);
  color: var(--sh-cnt-primary);
  border: 1px solid var(--sh-cnt-border);
  border-radius: var(--sh-cnt-radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sh-btn-directions:hover {
  background: var(--sh-cnt-primary);
  color: #ffffff;
  border-color: var(--sh-cnt-primary);
}

/* --------------------------------------------------------------------------
   5. QUICK ASSISTANCE CARDS (FAQ HELPDESK)
   -------------------------------------------------------------------------- */
.sh-quick-help-section {
  padding: 50px 0 65px;
  background-color: #ffffff;
  border-top: 1px solid var(--sh-cnt-border);
}

.sh-quick-help-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.sh-quick-help-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--sh-cnt-primary);
  margin-bottom: 6px;
}

.sh-quick-help-header p {
  font-size: 14px;
  color: var(--sh-cnt-text-muted);
  margin-bottom: 0;
}

.sh-quick-help-card {
  background: var(--sh-cnt-bg-soft);
  border: 1px solid var(--sh-cnt-border);
  border-radius: var(--sh-cnt-radius-md);
  padding: 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.sh-quick-help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-cnt-shadow-sm);
  border-color: var(--sh-cnt-accent);
}

.sh-quick-help-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--sh-cnt-border);
  color: var(--sh-cnt-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.sh-quick-help-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sh-cnt-primary);
  margin-bottom: 6px;
}

.sh-quick-help-card p {
  font-size: 13px;
  color: var(--sh-cnt-text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.sh-quick-help-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sh-cnt-accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.sh-quick-help-link:hover {
  color: var(--sh-cnt-accent-hover);
  gap: 8px;
}

/* --------------------------------------------------------------------------
   6. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .sh-contact-title {
    font-size: 28px;
  }

  .sh-contact-channels-section {
    margin-top: -24px;
  }

  .sh-contact-form-card,
  .sh-contact-side-card {
    padding: 24px 20px;
  }
}

@media (max-width: 576px) {
  .sh-contact-hero {
    padding: 32px 0 46px;
  }

  .sh-contact-title {
    font-size: 22px;
  }

  .sh-contact-form-card {
    padding: 20px 16px;
  }
}
