.inner-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.inner-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 760px;
}

.inner-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 760px;
}

@media (max-width: 992px) {
  .inner-hero {
    padding: 120px 0 70px;
  }

  .inner-title {
    font-size: clamp(34px, 6vw, 52px);
  }

  .inner-text {
    font-size: 17px;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 105px 0 60px;
  }

  .inner-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .inner-text {
    font-size: 16px;
  }
}

.contact-elevated-section {
  padding: 100px 0 60px;
  background:
    radial-gradient(
      circle at top right,
      rgba(217, 171, 52, 0.06),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.contact-elevated-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.contact-left-panel,
.contact-right-panel {
  min-width: 0;
}

.contact-panel-head {
  margin-bottom: 28px;
}

.contact-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.contact-panel-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 14px;
}

.contact-panel-head p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #e8ebf2;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(15, 23, 40, 0.05);
  transition: 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 40, 0.08);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(15, 23, 40, 0.12);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-info-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.contact-whatsapp-wide {
  margin-top: 28px;
  background: linear-gradient(135deg, #081a3a, #0e244f);
  border-radius: 30px;
  padding: 34px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(15, 23, 40, 0.14);
}

.contact-whatsapp-wide::before,
.contact-whatsapp-wide::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(217, 171, 52, 0.1);
}

.contact-whatsapp-wide::before {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -60px;
}

.contact-whatsapp-wide::after {
  width: 150px;
  height: 150px;
  bottom: -55px;
  left: -40px;
}

.contact-whatsapp-wide-content,
.contact-whatsapp-wide-action {
  position: relative;
  z-index: 1;
}

.contact-whatsapp-wide-content {
  max-width: 700px;
}

.contact-whatsapp-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f0c655;
  margin-bottom: 12px;
}

.contact-whatsapp-wide-content h3 {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.contact-whatsapp-wide-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 16px;
}

.contact-whatsapp-wide-action {
  flex-shrink: 0;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 220px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0c655);
  color: #111111;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(217, 171, 52, 0.26);
  transition: 0.3s ease;
}

.contact-whatsapp-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-whatsapp-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-whatsapp-wide-action {
    width: 100%;
  }

  .contact-whatsapp-btn {
    width: 100%;
    min-width: 0;
  }
}

.contact-form-shell {
  background: #ffffff;
  border: 1px solid #e8ebf2;
  border-radius: 30px;
  padding: 34px 30px;
  box-shadow: 0 18px 36px rgba(15, 23, 40, 0.06);
}

.contact-form-head {
  margin-bottom: 24px;
}

.form-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.contact-form-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 12px;
}

.contact-form-head p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid #dbe0ea;
  background: #ffffff;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
}

.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 171, 52, 0.1);
}

.contact-form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-submit-btn {
  min-height: 58px;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0c655);
  color: #111111;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(217, 171, 52, 0.28);
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .contact-elevated-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-elevated-section {
    padding: 80px 0 50px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-shell {
    padding: 28px 22px;
  }

  .contact-whatsapp-card {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .contact-whatsapp-btn,
  .contact-submit-btn {
    width: 100%;
  }
}

.contact-map-section {
  margin-top: 40px;
  background: #ffffff;
  border: 1px solid #e8ebf2;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(15, 23, 40, 0.06);
}

.contact-map-content {
  margin-bottom: 20px;
}

.map-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.contact-map-content h3 {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-map-content p {
  color: var(--muted);
}

.contact-map-box {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #dfe4ec;
}

.contact-map-box iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .contact-map-section {
    padding: 20px;
  }

  .contact-map-content h3 {
    font-size: 24px;
  }

  .contact-map-box iframe {
    height: 280px;
  }
}

@media (max-width: 1100px) {
  .contact-layout,
  .contact-premium-grid,
  .contact-elevated-grid,
  .home-contact-grid,
  .contact-map-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-shell,
  .contact-form-panel,
  .contact-map-banner,
  .contact-map-section,
  .contact-form {
    padding: 26px 20px;
  }

  .contact-map-box iframe {
    height: 260px;
  }

  .contact-whatsapp-wide,
  .services-cta-banner,
  .products-cta-banner,
  .process-summary-box,
  .product-note-box,
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-whatsapp-wide-action,
  .services-cta-action,
  .products-cta-action,
  .process-summary-action,
  .product-note-action {
    width: 100%;
  }

  .contact-whatsapp-btn,
  .services-cta-btn,
  .products-cta-btn,
  .process-summary-btn,
  .product-note-btn {
    width: 100%;
    min-width: 0;
  }
}

.enquiry-form {
  position: relative;
}

.enquiry-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 171, 52, 0.12);
}

.enquiry-form textarea {
  min-height: 150px;
}

.enquiry-form .contact-submit-btn {
  width: 100%;
}
