/* ============================================================
   Contact Page
   ============================================================ */

/* --- Hero --- */
.contact-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background-image: url(../images/contact/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.contact-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.contact-breadcrumb a:hover { color: #fff; }

.contact-hero-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #7cb4f5;
  margin-bottom: 14px;
}

.contact-hero h1 {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
}

.contact-hero .hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- Info Cards --- */
.contact-info-section {
  padding: 70px 0 60px;
}

.contact-info-card {
  background: #fff;
  border: 1.5px solid #e4ecf8;
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}
.contact-info-card:hover {
  box-shadow: 0 10px 32px rgba(0,79,181,0.1);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 52px; height: 52px;
  background: #eef4ff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #004FB5;
  margin-bottom: 18px;
}

.contact-info-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 4px;
  display: block;
  text-decoration: none;
}
.contact-info-card a:hover { color: #004FB5; }

/* --- Map --- */
.contact-map-section {
  padding: 0 0 70px;
}

.contact-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

/* --- Contact Form --- */
.contact-form-section {
  padding: 80px 0;
  background: #f8f9fc;
}

.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 46px 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  max-width: 760px;
  margin: 0 auto;
}

.contact-form-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}
.contact-form-card .form-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 30px;
}

.cf-input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
  background: #f9fafb;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
}
.cf-input:focus {
  border-color: #004FB5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,79,181,0.1);
}
.cf-input::placeholder { color: #9ca3af; }

textarea.cf-input {
  height: auto;
  padding: 14px 16px;
  resize: vertical;
}

.cf-submit {
  height: 52px;
  padding: 0 40px;
  background: #004FB5;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.cf-submit:hover {
  background: #003d8f;
  transform: translateY(-1px);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .contact-hero h1 { font-size: 34px; }
}
@media (max-width: 767px) {
  .contact-hero { min-height: 320px; }
  .contact-hero h1 { font-size: 26px; }
  .contact-hero .hero-content { padding: 100px 0 60px; }
  .contact-map-wrap iframe { height: 300px; }
  .contact-form-card { padding: 28px 20px; }
}
