.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero {
  background-image: url("/images/contact\ us\ bg\ cover.png"); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 25, 0.65); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.breadcrumb span {
  margin: 0 6px;
  opacity: 0.8;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin: 0;
}
.contact-map {
  padding: 120px 0;
  background: #ffffff;
}

.map-wrapper {
  width: 85%;
  max-width: 1200px;
  height: 480px;
  margin: 0 auto;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
    .contact-info {
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.info-grid {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.info-item .label {
  display: block;
  font-size: 14px;
  color: #e1a56b;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.info-item .value {
  font-size: 22px;
  color: #1f1f1f;
}
.contact-form-section {
  background: url(../images/Contact\ us\ BG.png);
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
}

.contact-form-wrapper {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

/* LEFT */
.form-left h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  background: #fbf7f3;
  border: none;
  font-size: 15px;
  outline: none;
}

.contact-form select {
  appearance: none;
  cursor: pointer;
}

.contact-form textarea {
  height: 180px;
  resize: none;
  margin-bottom: 40px;
}

.contact-form button {
  padding: 16px 40px;
  border: 2px solid #e1a56b;
  background: transparent;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #e1a56b;
  color: #fff;
}

/* RIGHT */
.form-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #7a7a8c;
  margin-bottom: 50px;
}

.expert-card {
  text-align: center;
}

.expert-card img {
  width: 220px;
  margin-bottom: 20px;
}

.expert-card h4 {
  font-size: 22px;
  margin-bottom: 6px;
}

.expert-card span {
  font-size: 15px;
  color: #7a7a8c;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ===== FORM LOADER ===== */
.form-loader {
  display: none;               /* JS se toggle hoga */
  margin-top: 15px;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
}

/* Spinner */
.loader-ring {
  width: 26px;
  height: 26px;
  border: 3px solid #ddd;
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Disable button while loading */
.contact-form button.loading {
  opacity: 0.6;
  pointer-events: none;
}
