/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

/* Container */
.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #123b3f;
  transition: box-shadow 0.3s ease;
  /* background: #123b3f;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15); */
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

section {
  scroll-margin-top: 90px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

/* Logo */
.logo img {
  height: 44px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active::after {
  width: 100%;
}

.nav a.active {
  font-weight: 600;
}

/* Dropdown arrow */
.has-dropdown i {
  margin-left: 4px;
  font-size: 12px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
.menu-toggle i {
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 78px;
    left: -100%;
    flex-direction: column;
    width: 100%;
    background: #123b3f;
    transition: left 0.3s ease;
    padding: 20px 0;
    z-index: 999;
  }

  .nav.show {
    left: 0;
  }

  .nav a {
    padding: 10px 20px;
    width: 100%;
    text-align: left;
  }

  .menu-toggle {
    display: block;
  }
}

/* ================= HERO SECTION ================= */

.hero {
  width: 100%;
  background: #fff;
}

.hero-wrapper {
  display: flex;
  height: calc(100vh - 150px); /* full screen minus header */
}

/* IMAGE SIDE */
.hero-image {
  flex: 0 0 74%;
  height: 100%;
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image img {
  object-fit: cover;
}

/* FORM SIDE */
.hero-form {
  flex: 0 0 26%;
  /* background: #a1acb2; */
  /* background: linear-gradient(135deg, #0f2f32, #123b3f); */
  background: #e9f1f1;
  color: #fff;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-form h2 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #424040;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form input {
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.3s ease;
}

.hero-form input:focus {
  border-color: #123b3f;
  box-shadow: 0 0 0 2px rgba(18, 59, 63, 0.15);
}

/* .hero-form input {
  padding: 12px 14px;
  border: none;
  font-size: 14px;
} */

.hero-form button {
  margin-top: 10px;
  background: linear-gradient(135deg, #123b3f, #0e2e31);
  color: #fff;
  border: none;
  padding: 16px;
  width: 100%;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
}

/* ✨ PREMIUM HOVER */
.hero-form button:hover {
  background: linear-gradient(135deg, #164a4f, #123b3f);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(18, 59, 63, 0.45);
}

/* 👆 PRESS EFFECT */
.hero-form button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(18, 59, 63, 0.35);
}

@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    height: auto;
  }

  .hero-image,
  .hero-form {
    flex: 100%;
    width: 100%;
  }

  .hero-image img {
    height: auto;
  }
}

.project-overview {
  padding: 70px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.title-line {
  width: 80px;
  height: 3px;
  background: #123b3f;
  margin: 12px auto 40px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.overview-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 14px;
}

.overview-content h3,
.overview-content h4 {
  margin: 24px 0 10px;
  color: #123b3f;
}

.feature-list {
  padding-left: 18px;
}

.feature-list li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* DETAILS CARD */
.project-details {
  background: #f6f7f9;
  padding: 24px;
  border-radius: 10px;
}

.project-details h3 {
  margin-bottom: 16px;
  color: #123b3f;
}

.details-list {
  list-style: none;
}

.details-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.details-list span {
  color: #666;
}

.details-list strong {
  text-align: right;
}

/* CTA */
.cta-btn {
  display: block;
  margin-top: 20px;
  background: #123b3f;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }
}

/* ================= PREMIUM SHOWCASE ================= */

.premium-showcase {
  padding: 80px 0;
  background: #ffffff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.showcase-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* DARK OVERLAY */
.showcase-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.7)
  );
  transition: opacity 0.4s ease;
}

/* CONTENT */
.card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.card-content h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* BUTTON */
.card-btn {
  padding: 10px 28px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: #ffffff;
  color: #000;
}

/* HOVER EFFECTS */
.showcase-card:hover img {
  transform: scale(1.08);
}

.showcase-card:hover .overlay {
  opacity: 0.85;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    height: 260px;
  }

  .card-content h3 {
    font-size: 22px;
  }
}

/* PREMIUM AMENITIES SECTION */
.amenities-premium {
  padding: 90px 0;
  background: #f7f8fb;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #123b3f;
  text-transform: uppercase;
}

.section-head .divider {
  width: 80px;
  height: 3px;
  background: #123b3f;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* GRID */
.amenities-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* CONTENT */
.amenities-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.amenities-content h4 {
  margin: 30px 0 20px;
  font-size: 20px;
  color: #123b3f;
}

/* LIST */
.amenities-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.amenities-list li {
  font-size: 15px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 12px;
}

.amenities-list i {
  color: #123b3f;
  font-size: 18px;
}

/* IMAGE */
.amenities-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 28px;
  }
}

.floorplan-luxury {
  padding: 90px 0;
  background: #faf7f2;
}

.floorplan-text {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: left;
}

.floorplan-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

.floorplan-text .highlight {
  font-weight: 600;
  color: #123b3f;
}

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.floorplan-card {
  background: #fff;
  border-radius: 22px;
  padding: 25px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.floorplan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.floorplan-card img {
  width: 100%;
  border-radius: 16px;
}

.floor-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #123b3f;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 50px;
}

.floorplan-cta {
  margin-top: 60px;
  text-align: center;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #123b3f;
  color: #fff;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 35px #123b3f9e;
}

.btn-download:hover {
  background: #123b3f;
}

@media (max-width: 992px) {
  .floorplan-grid {
    grid-template-columns: 1fr;
  }
}

.retail-price-luxury {
  padding: 90px 0;
  background: #ffffff;
}

.retail-price-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGES */
.retail-images {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-card {
  background: #fff;
  padding: 14px;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* CONTENT */
.retail-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.85;
  margin-bottom: 18px;
}

.highlight-text {
  color: #1a237e;
  font-weight: 600;
}

/* CTA */
.retail-cta {
  margin-top: 35px;
}

/* .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f57c00;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(245, 124, 0, 0.35);
  transition: all 0.3s ease;
}

.btn-download:hover {
  background: #e06f00;
  transform: translateY(-2px); */
/* } */

/* RESPONSIVE */
@media (max-width: 992px) {
  .retail-price-grid {
    grid-template-columns: 1fr;
  }

  .retail-images {
    order: -1;
  }
}

.location-advantages {
  background: url("/images/MIGSUN-LUCKNOW-CENTRAL-banner.png") center/cover
    no-repeat;
  position: relative;
  padding: 100px 0;
}

/* Soft overlay */
.location-overlay {
  background: rgba(255, 255, 255, 0.88);
  padding: 80px 0;
}

.location-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.location-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #2f2f2f;
  margin-bottom: 22px;
}

/* Subheading */
.location-content h4 {
  margin: 40px 0 25px;
  font-size: 20px;
  font-weight: 600;
  color: #123b3f;
}

/* LIST */
.location-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
  text-align: left;
}

.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #222;
  line-height: 1.6;
}

.location-list i {
  color: #123b3f;
  font-size: 18px;
  margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .location-list {
    grid-template-columns: 1fr;
  }

  .location-content {
    text-align: left;
  }
}

.about-developer-luxury {
  padding: 90px 0 0;
  background: #ffffff;
}

.about-text {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

/* ENQUIRY WRAPPER */
.enquiry-wrapper {
  background: #123b3f;
  padding: 90px 0;
}

/* GRID */
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* FORM */
.enquiry-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.enquiry-form h3 {
  font-size: 36px;
  margin-bottom: 35px;
  color: #123b3f;
}

/* INPUTS */
.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #123b3f;
  box-shadow: 0 0 0 2px rgba(18, 59, 63, 0.15);
}

/* BUTTON */
.btn-submit {
  background: #123b3f;
  color: #fff;
  border: none;
  padding: 16px;
  width: 100%;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #0e2f33;
  transform: translateY(-2px);
}

/* IMAGE */
.enquiry-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    padding: 40px;
  }

  .enquiry-form h3 {
    font-size: 30px;
  }
}

.faq-luxury {
  padding: 90px 0;
  background: #ffffff;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-left-color: #123b3f;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
}

.faq-question .icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background: #123b3f;
  transition: all 0.3s ease;
}

.faq-question .icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.faq-question .icon::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}

.faq-item.active .icon::after {
  transform: scaleY(0);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 14.5px;
  color: #444;
  line-height: 1.8;
  transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.footer-skyline {
  background: #ffffff;
  padding: 0;
  margin: 0;
}

.footer-skyline img {
  width: 100%;
  display: block;
}

.premium-footer {
  background: #123b3f;
  color: #e6f0ef;
  padding: 80px 0 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 60px;
  align-items: flex-start;
}

/* QR */
.footer-qr img {
  width: 180px;
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
}

/* DISCLAIMER */
.footer-disclaimer p {
  line-height: 1.9;
  margin-bottom: 18px;
  color: #dfeeed;
}

.footer-disclaimer a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

/* CONTACT */
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-contact p {
  line-height: 2;
  font-size: 15px;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 60px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: #cfe3e1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-qr img {
    margin: 0 auto;
  }
}

/* =========================
   CONTACT WIDGET (SCOPED)
   ========================= */

.contact-widget .floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Floating buttons */
.contact-widget .fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.contact-widget .fab:hover {
  transform: scale(1.08);
}

/* Call button */
.contact-widget .call-btn {
  background: #1faa00;
  text-decoration: none;
}

/* WhatsApp button */
.contact-widget .whatsapp-btn {
  background: #25d366;
}

/* WhatsApp popup */
.contact-widget .whatsapp-popup {
  position: fixed;
  bottom: 160px;
  right: 20px;
  width: 330px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 9999;
  overflow: hidden;
}

/* Popup header */
.contact-widget .popup-header {
  background: #25d366;
  color: #fff;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-widget .popup-header h3 {
  margin: 0;
  font-size: 18px;
}

.contact-widget .popup-header p {
  margin: 4px 0 0;
  font-size: 14px;
}

/* Popup body */
.contact-widget .popup-body {
  padding: 16px;
}

.contact-widget .popup-body p {
  font-size: 14px;
  margin-bottom: 16px;
}

/* Chat button */
.contact-widget .chat-btn {
  width: 100%;
  border: none;
  background: #f2f2f2;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .contact-widget .whatsapp-popup {
    width: 90%;
    right: 5%;
  }

  .contact-widget .fab {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

.contact-widget .fab-icon,
.contact-widget .wa-icon img,
.contact-widget .chat-btn img {
  filter: brightness(0) invert(1);
}

/* SVG ICONS */
.contact-widget img {
  width: 26px;
  height: 26px;
}

/* Floating FAB icon */
.contact-widget .fab-icon {
  width: 28px;
  height: 28px;
}

/* Popup header icon */
.contact-widget .wa-icon img {
  width: 32px;
  height: 32px;
}

/* Chat button icon */
.contact-widget .chat-btn img {
  width: 22px;
  height: 22px;
}

.contact-widget .fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; /* SVG inherits this */
}

.contact-widget .fab-icon {
  width: 26px;
  height: 26px;
}

/* Call */
.contact-widget .call-btn {
  background: #1faa00;
}

/* WhatsApp */
.contact-widget .whatsapp-btn {
  background: #25d366;
}

.contact-widget .fab i,
.contact-widget .wa-icon i,
.contact-widget .chat-btn i {
  color: #fff; /* White icons */
  /* display: inline-block; */
  vertical-align: middle;
}

/* Optional: adjust WhatsApp popup icon size */
.contact-widget .wa-icon i {
  font-size: 32px;
}

.contact-widget .chat-btn i {
  font-size: 22px;
  margin-right: 10px;
  background: #25d366;
}

.footer-bottom a.footer-credit {
  color: #ff6600; /* Oglitz brand color */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom a.footer-credit:hover {
  color: #d50000; /* brand accent on hover */
}

/* Mobile-friendly adjustments */
@media (max-width: 600px) {
  .footer-bottom a.footer-credit {
    display: block;
    margin-top: 4px;
  }
}

/* Hide Brevo internal heading */
.brevo-form-wrapper h1,
.brevo-form-wrapper h2,
.brevo-form-wrapper h3 {
  display: none !important;
}

.brevo-form-wrapper iframe {
  width: 100%;
  min-height: 460px;
  border: none;
  border-radius: 16px;
  background: transparent;
}

/* Mobile */
@media (max-width: 768px) {
  .brevo-form-wrapper iframe {
    min-height: 520px;
  }
}

.brevo-form-wrapper {
  display: flex;
  justify-content: center;
}


/* FORM CARD – tighter & premium */
.enquiry-form {
  background: #ffffff;
  padding: 42px 42px 32px; /* reduced bottom padding */
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
}

/* Heading */
.enquiry-form h3 {
  font-size: 34px;
  margin-bottom: 22px; /* tighter gap */
  color: #123b3f;
  font-weight: 600;
}

/* Brevo wrapper */
.brevo-form-wrapper {
  width: 100%;
  display: flex;
}

/* IFRAME – THIS FIXES WHITE SPACE */
.brevo-form-wrapper iframe {
  width: 100%;
  min-height: 330px;  /* reduced height */
  border: none;
  overflow: hidden;
  border-radius: 18px;
}

/* Desktop fine-tune */
@media (min-width: 1200px) {
  .brevo-form-wrapper iframe {
    min-height: 310px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .enquiry-form {
    padding: 32px 26px;
  }

  .enquiry-form h3 {
    font-size: 28px;
  }

  .brevo-form-wrapper iframe {
    min-height: 360px;
  }
}
