.page-section {
  padding: 60px 0;
}

.page-media-section {
  padding: 60px 16px;
}

.page-media-wrap {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.page-media-wrap > * + * {
  margin-top: 20px;
}

.page-media-wrap img {
  max-width: 100%;
  height: auto;
}

.page-media-wrap p {
  margin-left: auto;
  margin-right: auto;
}

.hero-bg--emi,
.hero-bg--contact,
.hero-bg--blog {
  background-image: url("../images/banner-image.jpg");
}

.enquiry-section {
  padding: 60px 18px;
  color: #0b0b0b;
}

.enquiry-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.enquiry-left {
  padding: 54px 48px;
}

.mini-title {
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 700;
}

.big-title {
  margin: 0;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}

.big-title span {
  color: var(--gold);
}

.gold-line {
  width: 54px;
  height: 4px;
  background: var(--gold);
  margin: 18px 0 22px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: #0b0b0b;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #0b0b0b;
}

.contact-list i {
  color: #0b0b0b;
  margin-top: 3px;
  width: 18px;
}

.contact-list a {
  color: #0b0b0b;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.enquiry-right {
  padding: 44px 48px 54px;
  position: relative;
}

.top-gold {
  height: 4px;
  width: 92%;
  background: var(--gold);
  margin: 6px 0 28px auto;
}

.form-title {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}

.enquiry-form {
  display: grid;
  gap: 14px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  background: var(--field);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 2px;
  color: #0b0b0b;
  outline: none;
  font-size: 14.5px;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #9f9f9f;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
}

.btn-send {
  margin-top: 14px;
  width: 100%;
  background: #3a7d3e;
  border: none;
  padding: 16px 18px;
  border-radius: 2px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-send:hover {
  filter: brightness(1.05);
}

h2,
h3 {
  color: #33b249;
}

.custom-footer {
  background: linear-gradient(90deg, #1e1e1e, #2b2b2b);
  padding: 18px 0;
  border-top: 1px solid #333333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.custom-footer p {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.custom-footer a {
  color: #00bfff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.custom-footer a:hover {
  color: #1e90ff;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 28, 0.62);
}

.contact-modal__dialog {
  position: relative;
  width: min(100%, 420px);
  padding: 28px 24px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  box-shadow: 0 30px 80px rgba(11, 18, 32, 0.28);
  border: 1px solid rgba(17, 24, 39, 0.08);
  z-index: 1;
}

.contact-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.08);
  color: #0d1b2a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1aa6ff;
}

.contact-modal__title {
  margin: 0 0 10px;
  color: #0d1b2a;
  font-size: 30px;
  line-height: 1.1;
}

.contact-modal__text {
  margin: 0 0 18px;
  color: #4c5a70;
  font-size: 15px;
  line-height: 1.7;
}

.contact-modal__form {
  display: grid;
  gap: 12px;
}

.contact-modal__form input,
.contact-modal__form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  background: #ffffff;
  color: #0b0b0b;
  font-size: 14px;
  outline: none;
  font: inherit;
}

.contact-modal__form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-modal__form input:focus,
.contact-modal__form textarea:focus {
  border-color: #1aa6ff;
}

.contact-modal__form button {
  border: 0;
  border-radius: 999px;
  padding: 14px 16px;
  background: linear-gradient(90deg, #33b249 0%, #1f8fdd 100%);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.contact-modal__actions a {
  color: #1f8fdd;
  font-weight: 700;
  text-decoration: none;
}

.contact-modal__actions a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .enquiry-wrap {
    grid-template-columns: 1fr;
  }

  .enquiry-left,
  .enquiry-right {
    padding: 34px 22px;
  }

  .big-title {
    font-size: 42px;
  }
}

@media (max-width: 560px) {
  .page-media-section {
    padding: 44px 12px;
  }

  .page-media-wrap {
    text-align: left;
  }

  .page-media-wrap img {
    border-radius: 14px;
  }

  .contact-modal__dialog {
    padding: 24px 18px 20px;
  }

  .contact-modal__title {
    font-size: 24px;
  }

  .contact-modal__actions {
    flex-direction: column;
    gap: 10px;
  }
}
