/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0d2b4e 0%, #1976c8 100%);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.page-hero h1 span {
  background: linear-gradient(to right, #ffffff, #a8c8e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* BREADCRUMB */
.breadcrumb {
  background: #f3f7fc;
  padding: 14px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #667085;
}

.breadcrumb-inner a {
  color: #1976c8;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner i { font-size: 14px; color: #aaa; }

/* CONTACT SECTION */
.contact-section {
  padding: 100px 24px;
  background: #fafbfc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* INFO SIDE */
.contact-info-side .section-tag { margin-bottom: 12px; }

.contact-info-side .section-title {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 16px;
}

.contact-info-side > p {
  font-size: 16px;
  color: #667085;
  line-height: 1.8;
  margin-bottom: 40px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.info-card:hover {
  border-color: #1976c8;
  box-shadow: 0 8px 24px rgba(25,118,200,0.1);
  transform: translateY(-4px);
}

.info-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(25,118,200,0.12), rgba(15,90,162,0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1976c8;
  transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
  background: #1976c8;
  color: #fff;
}

.info-card-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0d2b4e;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-card-text p, .info-card-text a {
  font-size: 15px;
  color: #667085;
  line-height: 1.6;
  text-decoration: none;
  display: block;
}

.info-card-text a:hover { color: #1976c8; }

/* SOCIAL ROW */
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-row a:hover {
  background: #1976c8;
  border-color: #1976c8;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(25,118,200,0.3);
}

/* FORM SIDE */
.contact-form-side {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.contact-form-side h3 {
  font-size: 26px;
  font-weight: 800;
  color: #0d2b4e;
  margin-bottom: 8px;
}

.contact-form-side > p {
  font-size: 15px;
  color: #667085;
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0d2b4e;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  color: #1a1a1a;
  background: #fafbfc;
  outline: none;
  transition: all 0.25s ease;
  font-family: inherit;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1976c8;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(25,118,200,0.08);
}

.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #1976c8 0%, #0d5aa7 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(25,118,200,0.25);
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(25,118,200,0.35);
}

/* MAP SECTION */
.map-section {
  padding: 0 24px 100px;
  background: #fafbfc;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-side { padding: 32px 24px; }
}
