/* ===== PAGE HERO ===== */
.page-hero {
  margin-top: 72px;
  padding: 64px 0 56px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,160,0.12), transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,178,54,0.08), transparent 70%);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}
.breadcrumb-current {
  color: rgba(255,255,255,0.8);
}
.page-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info {
  padding: 80px 0 0;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--grey-900);
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.7;
}
.contact-card a {
  color: var(--blue);
  font-weight: 500;
}
.contact-card a:hover {
  color: var(--blue-dark);
}
.contact-card-note {
  font-size: 0.8rem;
  color: var(--grey-400);
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 80px 0;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-form-info .section-tag {
  margin-bottom: 16px;
}
.contact-form-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.contact-form-info p {
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 24px;
}
.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--grey-700);
  font-weight: 500;
}
.contact-benefits svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey-800);
  background: var(--bg);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,160,0.1);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 0 0 80px;
}
.map-placeholder {
  background: linear-gradient(135deg, var(--blue-light), var(--grey-100));
  border-radius: var(--radius);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(37,99,160,0.04) 40px,
    rgba(37,99,160,0.04) 41px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(37,99,160,0.04) 40px,
    rgba(37,99,160,0.04) 41px
  );
}
.map-overlay {
  text-align: center;
  position: relative;
  z-index: 1;
}
.map-overlay svg {
  width: 48px;
  height: 48px;
  color: var(--blue);
  margin-bottom: 16px;
  opacity: 0.6;
}
.map-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 6px;
}
.map-overlay p {
  font-size: 0.9rem;
  color: var(--grey-500);
}

/* ===== SALES TEAM CTA ===== */
.sales-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  position: relative;
  overflow: hidden;
}
.sales-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,178,54,0.08);
}
.sales-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.sales-cta-text h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.sales-cta-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}
.sales-cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ===== RFQ BANNER ===== */
.rfq-banner {
  padding: 80px 0;
  background: var(--white);
}
.rfq-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--grey-200);
}
.rfq-banner-text h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.rfq-banner-text p {
  font-size: 1rem;
  color: var(--grey-500);
  max-width: 480px;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch { display: flex; align-items: center; gap: 8px; margin-left: 16px; flex-shrink: 0; white-space: nowrap; }
.lang-switch a { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: #888; text-decoration: none; transition: color 0.3s; letter-spacing: 0.5px; }
.lang-switch a.active { color: #1A1A1A; font-weight: 700; }
.lang-switch a:hover { color: #CD2122; }
.lang-flag { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; border: 1px solid rgba(0,0,0,0.1); vertical-align: middle; flex-shrink: 0; }
.lang-divider { color: #ccc; font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .lang-switch { gap: 4px; font-size: 10px; margin-left: 8px; }
  .lang-switch a { font-size: 10px; gap: 3px; }
  .lang-flag { width: 16px; height: 11px; }
  .lang-divider { display: none; }
  .page-hero {
    margin-top: 64px;
    padding: 48px 0 44px;
  }
  .page-hero-title {
    font-size: 2rem;
  }
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: -60px auto 0;
  }
  .contact-info {
    padding: 60px 0 0;
  }
  .contact-form-section {
    padding: 48px 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px;
  }
  .map-placeholder {
    height: 260px;
  }
  .sales-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .sales-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .sales-cta-actions .btn {
    justify-content: center;
  }
  .rfq-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .page-hero-title {
    font-size: 1.6rem;
  }
}