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

/* Page Banner (Can be shared if moved to base, but keeping here for now) */
.page-banner {
  background: linear-gradient(135deg, var(--color-primary, #0055FF) 0%, #0A1E3D 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.page-banner__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-banner__breadcrumb {
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-banner__breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-banner__breadcrumb a:hover {
  color: #fff;
}

.page-banner__breadcrumb .sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.5);
}

.page-banner__breadcrumb .current {
  color: #fff;
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  padding: var(--space-4xl, 5rem) 0;
  background-color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Contact Info (Left) */
.contact-info__badge span {
  display: inline-flex;
  align-items: center;
  background-color: #E8F0FE;
  color: var(--color-primary, #0055FF);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.25rem;
  border-radius: var(--border-radius-full, 9999px);
  margin-bottom: 1rem;
}

.contact-info__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0A1E3D;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-info__desc {
  font-size: 1.125rem;
  color: #556070;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #F8F9FC;
  border-radius: 12px;
  border: 1px solid rgba(0, 85, 255, 0.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-card:hover {
  background-color: #f0f4ff;
  transform: translateY(-3px);
}

.contact-card__icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0055FF;
  flex-shrink: 0;
}

.contact-card__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A1E3D;
  margin-bottom: 0.25rem;
}

.contact-card__content p {
  color: #556070;
  font-size: 1rem;
  margin: 0;
}

.contact-card__content a {
  color: #556070;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card__content a:hover {
  color: #0055FF;
}

/* Contact Form (Right) */
.contact-form-wrapper {
  background-color: #F8F9FC;
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 85, 255, 0.05);
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  border-radius: 8px;
  margin: 2em 0.5em 1em;
}

.contact-form-wrapper label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0A1E3D;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 1rem;
  color: #0A1E3D;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: #0055FF;
}

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

.contact-form-wrapper input[type="submit"],
.contact-form-wrapper .submit-btn {
  background-color: #0055FF;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper .submit-btn:hover {
  background-color: #0A1E3D;
}

/* Socials */
.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8F9FC;
  color: #0A1E3D;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.contact-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-socials a:hover {
  background-color: #0055FF;
  color: #fff;
  border-color: #0055FF;
}

/* Map Section */
.contact-map {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-4xl, 5rem);
}

.contact-map__inner {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  line-height: 0;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(10%) contrast(1.1);
  display: block;
}

/* Responsive */
@media (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .contact-map iframe {
    height: 350px;
  }
}
