@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════ */
.contact-page {
  font-family: 'Inter', sans-serif;
  background: #dce8f0;
  padding: 60px 0 80px;
}

.contact-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.contact-eyebrow {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #17344c;
  margin: 0 0 10px;
}

.contact-main-title {
  font-size: 68px;
  font-weight: 800;
  color: #17344c;
  margin: 0 0 12px;
  line-height: 1;
}

.contact-main-sub {
  font-size: 14px;
  color: #17344c;
  margin: 0 0 32px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   TWO-COLUMN LAYOUT
══════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* ══════════════════════════════════════
   NETWORK CARD (LEFT)
══════════════════════════════════════ */
.network-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.network-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.network-card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #17344c;
  margin: 0 0 8px;
  line-height: 1.25;
  padding-right: 86px;
}

.network-card > p {
  font-size: 13px;
  color: #17344c;
  margin: 0;
  padding-right: 86px;
}

/* ══════════════════════════════════════
   CITY GRID
══════════════════════════════════════ */
.city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

.city-item {
  padding: 14px 0;
  border-bottom: 1px solid #eef2f5;
}

.city-item:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid #eef2f5;
}

.city-item:nth-child(even) {
  padding-left: 24px;
}

.city-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.city-name {
  font-size: 14px;
  font-weight: 700;
  color: #17344c;
  margin: 0 0 3px;
}

.city-addr {
  font-size: 12px;
  color: #17344c;
  margin: 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   CONTACT INFO LIST
══════════════════════════════════════ */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #17344c;
  line-height: 1.6;
}

.contact-info-list li a {
  color: #17344c;
  text-decoration: none;
}

.contact-info-list li a:hover {
  text-decoration: underline;
}

.info-icon {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2d6a9f;
  font-size: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   FORM CARD (RIGHT)
══════════════════════════════════════ */
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(13, 31, 45, 0.05);
}

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

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #17344c;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #17344c;
  background: #f4f8fb;
  border: 1.5px solid #e0eaf0;
  border-radius: 8px;
  padding: 11px 14px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aac0cc;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #43dde6;
  background: #fff;
}
.form-field input:hover,
.form-field textarea:hover { border-color: #43dde6; }

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-send {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #17344c;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.btn-send:hover {
  background: #1a3a5c;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   SUCCESS ALERT
══════════════════════════════════════ */
.alert-success {
  background: #e8f5ec;
  border: 1px solid #a3d9b1;
  border-radius: 8px;
  padding: 12px 16px;
  color: #2a7a4b;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}


/* ========================================================
   RESPONSIVE — contact.css
   ======================================================== */

@media (max-width: 991px) {
  .contact-container { max-width: 720px; }
  .contact-layout { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 767px) {
  .contact-page { padding: 36px 0 48px; }
  .contact-container { padding: 0 16px; }
  .contact-main-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .contact-main-title { font-size: 1.5rem; }
  .contact-container { padding: 0 12px; }
}
