/* ==========================================================================
   IQ2 — Sections (hero, generic)
   ========================================================================== */

.iq2-section {
  padding: 120px 0;
}
.iq2-section-warm {
  background: var(--iq2-bg-warm);
}
.iq2-section-dark {
  background: var(--iq2-navy);
  color: #fff;
}
.iq2-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.iq2-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--iq2-gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.iq2-section-eyebrow:before,
.iq2-section-eyebrow:after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--iq2-gold);
}
.iq2-section-title {
  font-size: 54px;
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 300;
}
.iq2-section-title em {
  font-style: italic;
  color: var(--iq2-gold);
}
.iq2-section-subtitle {
  font-size: 17px;
  color: var(--iq2-text-muted);
  font-weight: 300;
  line-height: 1.7;
}
.iq2-text-white {
  color: #fff !important;
}
.iq2-text-white-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ===== Search Widget ===== */
.iq2-search-widget-wrap {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: -90px auto 0;
  padding: 0 20px;
}
.iq2-search-widget {
  background: #fff;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  border-top: 3px solid var(--iq2-gold);
}
.iq2-search-widget-title {
  text-align: center;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--iq2-gold);
  margin-bottom: 25px;
  font-weight: 500;
}
.iq2-search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: end;
}
.iq2-search-field {
  position: relative;
}
.iq2-search-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--iq2-text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.iq2-search-field select,
.iq2-search-field input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--iq2-border-soft);
  font-family: inherit;
  font-size: 15px;
  color: var(--iq2-text);
  background: transparent;
  outline: none;
  appearance: none;
  font-weight: 400;
  transition: border-color 0.3s;
}
.iq2-search-field select:focus,
.iq2-search-field input:focus {
  border-color: var(--iq2-gold);
}
.iq2-search-field:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  bottom: 18px;
  color: var(--iq2-gold);
  font-size: 11px;
  pointer-events: none;
}
.iq2-btn-search {
  background: var(--iq2-navy);
  color: #fff;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--iq2-navy);
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: var(--iq2-transition);
}
.iq2-btn-search:hover {
  background: var(--iq2-gold);
  border-color: var(--iq2-gold);
}

/* ===== Specifications grid (dark section) ===== */
.iq2-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.iq2-spec-card {
  background: var(--iq2-navy);
  padding: 50px 35px;
  text-align: center;
  transition: var(--iq2-transition);
}
.iq2-spec-card:hover {
  background: var(--iq2-navy-light);
}
.iq2-spec-card i {
  font-size: 42px;
  color: var(--iq2-gold);
  margin-bottom: 25px;
  display: block;
}
.iq2-spec-card h4 {
  font-family: var(--iq2-font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 15px;
  color: #fff;
}
.iq2-spec-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

/* ===== Localisation ===== */
.iq2-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.iq2-location-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  line-height: 1.15;
  font-weight: 300;
}
.iq2-location-content h2 em {
  font-style: italic;
  color: var(--iq2-gold);
}
.iq2-location-content > p {
  font-size: 16px;
  color: var(--iq2-text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}
.iq2-location-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.iq2-loc-point {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border-left: 3px solid var(--iq2-gold);
}
.iq2-loc-point-name {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
}
.iq2-loc-point-name i {
  color: var(--iq2-gold);
}
.iq2-loc-point-dist {
  font-family: var(--iq2-font-serif);
  color: var(--iq2-gold);
  font-size: 22px;
  font-weight: 500;
}
.iq2-location-map {
  height: 550px;
  background: #fff;
  border: 1px solid var(--iq2-border-soft);
  position: relative;
  overflow: hidden;
}
.iq2-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.iq2-location-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--iq2-text-muted);
}
.iq2-location-map-placeholder i {
  font-size: 48px;
  color: var(--iq2-gold);
  margin-bottom: 20px;
}
.iq2-location-map-placeholder strong {
  display: block;
  font-size: 18px;
  color: var(--iq2-text);
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .iq2-section {
    padding: 80px 0;
  }
  .iq2-section-title {
    font-size: 42px;
  }
  .iq2-specs-grid,
  .iq2-search-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .iq2-location-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .iq2-location-content h2 {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .iq2-section {
    padding: 60px 0;
  }
  .iq2-section-title {
    font-size: 32px;
  }
  .iq2-specs-grid {
    grid-template-columns: 1fr;
  }
  .iq2-search-form {
    grid-template-columns: 1fr;
  }
}
