:root {
  --blue: #1A4FD6;
  --blue-light: #EEF3FF;
  --blue-mid: #3B6EF5;
  --ink: #0F1729;
  --ink-mid: #334060;
  --muted: #7A8BAA;
  --border: #E3E9F4;
  --surface: #F7F9FC;
  --white: #ffffff;
  --gold: #F59E0B;
  --success: #059669;
  --orange: #f97316;
  --orange2: #fb923c;
  --accent: #2563eb;
  --accent2: #3b82f6;
}

.info-section {
  background: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 22px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.info-card:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, .09);
  transform: translateY(-4px);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.info-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
}

.info-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

.info-card a:hover {
  text-decoration: underline;
}

.info-badge {
  display: inline-block;
  margin-top: 10px;
  background: #f0fdf4;
  color: #16a34a;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .4px;
}

/* ─── MAIN CONTACT SECTION ─── */
.contact-main {
  background: var(--light);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
}

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  border: 1px solid var(--border);
}

.contact-form-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-box .sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .08);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  cursor: pointer;
}

.radio-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.radio-opt input[type="radio"] {
  accent-color: var(--accent);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.radio-opt span {
  font-size: 13px;
  color: #475569;
}

.btn-submit {
  width: 100%;
  background: var(--blue-mid);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s, transform .15s;
  margin-top: 6px;
  letter-spacing: .3px;
}

.btn-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 10px;
}

.form-note span {
  color: var(--accent);
  font-weight: 600;
}

/* Right sidebar info */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.sidebar-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card h4 .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--light);
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.c-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.c-icon.orange {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.c-icon.green {
  background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
}

.c-label {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 2px;
}

.c-val {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

.c-val a {
  color: var(--accent);
  text-decoration: none;
}

.c-val a:hover {
  text-decoration: underline;
}

/* hours table */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--light);
  font-size: 13px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  color: #475569;
  font-weight: 500;
}

.hours-row .time {
  color: var(--navy);
  font-weight: 600;
}

.hours-row .closed {
  color: #ef4444;
  font-weight: 600;
}

.open-now {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 14px;
}

.open-now::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

/* social links */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.soc-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 7px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}

.soc-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #eff6ff;
}

/* ─── MAP SECTION ─── */
.map-section {
  background: var(--white);
  padding-bottom: 0;
}

.map-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.map-tab {
  padding: 9px 24px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: #475569;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}

.map-tab:hover {
  border-color: var(--accent2);
  color: var(--accent);
}

.map-tab.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.map-container {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  height: 420px;
  position: relative;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}

.map-placeholder {
  text-align: center;
}

.map-placeholder .map-pin {
  font-size: 48px;
  margin-bottom: 8px;
}

.map-placeholder h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.map-placeholder p {
  font-size: 13px;
  color: #64748b;
}

.map-placeholder a {
  display: inline-block;
  margin-top: 14px;
  background: var(--accent);
  color: white;
  padding: 10px 24px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}

.map-placeholder a:hover {
  background: var(--accent2);
}

/* real embedded map */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-panel {
  display: none;
}

.map-panel.active {
  display: block;
}


.branch-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-bottom: 0px;
}

.branch-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}

.branch-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  transform: translateY(-3px);
}

.branch-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  color: white;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-info h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.branch-info p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

.branch-info a {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
}


/* Media */

@media(max-width:767px){
  
.contact-wrap, .branch-strip {
   grid-template-columns: repeat(1, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}