i/* ========================================
   STAY EZZI - HERO FADE + SIZING FIXES
   Working fade blending version (gradient + overlay)
   ======================================== */

:root {
  --hero-offwhite: #F5F5F3;
}

/* Layout: 30% left / 70% right */
.hero-left {
  flex: 0 0 30% !important;
  position: relative;
  z-index: 3;

  /* Center all hero content inside the white panel */
  text-align: center;
  align-items: center !important;

  /* Let heading use almost full 30% width */
  padding: 78px 0px 54px 36px !important;

  /* Fade inside the left panel (soft, not a harsh edge) */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(245, 245, 243, 1) 52%,
    rgba(245, 245, 243, 0.85) 66%,
    rgba(245, 245, 243, 0.45) 80%,
    rgba(245, 245, 243, 0) 100%
  ) !important;
}

/* Let the heading use almost the full 30% column width and center it */
.hero-content {
  width: 100% !important;
  max-width: 430px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 14px;
  transform: translateY(32px);
}

/* Bigger heading so it covers the white section almost fully */
 .hero-main-heading {
  font-family: 'Montserrat', 'Poppins', sans-serif !important;
  font-size: 2.75rem !important;
  letter-spacing: -0.35px !important;
  line-height: 1.5 !important;
  align-self: flex-start !important;
  text-align: left !important;
 }

.hero-main-heading .hero-line {
  white-space: nowrap;
}

.hero-line-black {
  color: #111111 !important;
}

.hero-subheading {
  margin: 0;
  color: #1E3557;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: justify;
  max-width: 390px;
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #183836;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-check-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0f5c5b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  font-size: 0.72rem;
}

.hero-location {
  align-self: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

/* Keep the address on a single line when possible */
.hero-location span {
  white-space: nowrap;
  display: inline-block;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  align-self: flex-start;
  margin-top: 6px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 12px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.28s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.hero-cta-btn-primary {
  background: #c99115;
  color: #ffffff;
  border-color: #c99115;
  box-shadow: 0 10px 22px rgba(201, 145, 21, 0.24);
}

.hero-cta-btn-primary:hover {
  background: #b57f10;
  border-color: #b57f10;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(201, 145, 21, 0.3);
}

.hero-cta-btn-secondary {
  background: transparent;
  color: #004341;
  border-color: #004341;
}

.hero-cta-btn-secondary:hover {
  background: #004341;
  color: #ffffff;
  border-color: #004341;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 67, 65, 0.18);
}

@media (max-width: 768px) {
  .hero-content {
    transform: translateY(20px);
    max-width: 360px !important;
  }

  .hero-cta-row {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-cta-btn {
    min-height: 42px;
    padding: 11px 18px;
    border-radius: 10px !important;
    font-size: 0.92rem;
  }

  .hero-main-heading {
    font-size: 2.2rem !important;
    line-height: 1.06 !important;
  }

  .hero-subheading {
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.55;
    max-width: 330px;
  }

  .hero-point-item {
    font-size: 0.92rem;
  }

  .hero-left {
    padding-top: 68px !important;
  }
}

@media (max-width: 480px) {
  .hero-subheading {
    text-align: left;
  }

  .hero-point-item {
    align-items: flex-start;
  }

  .hero-cta-row {
    width: 100%;
  }

  .hero-cta-btn {
    flex: 1 1 100%;
  }
}
/* Right side image region */
.hero-right {
  flex: 0 0 70% !important;
  position: relative !important;
  overflow: hidden;
  z-index: 1;
  background: #072e2d;
}

/*
  Overlay blend on top of the image edge.
  This is the part that prevents the boundary from looking fake/flat.
*/
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

  background: linear-gradient(
    90deg,
    rgba(245, 245, 243, 1) 0%,
    rgba(245, 245, 243, 0.92) 6%,
    rgba(245, 245, 243, 0.72) 16%,
    rgba(245, 245, 243, 0.32) 30%,
    rgba(245, 245, 243, 0) 46%
  );
}

/* Keep image above base background but below the overlay */
.hero-image {
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .hero {
    height: auto !important;
    min-height: 0 !important;
  }

  .hero-wrapper {
    overflow: hidden;
  }

  .hero-left {
    flex: 0 0 40% !important;
    padding: 24px 14px 20px !important;
  }

  .hero-right {
    flex: 0 0 60% !important;
    min-width: 0;
  }

  .hero-right::before {
    background: linear-gradient(
      90deg,
      rgba(245, 245, 243, 1) 0%,
      rgba(245, 245, 243, 0.96) 14%,
      rgba(245, 245, 243, 0.72) 30%,
      rgba(245, 245, 243, 0.28) 48%,
      rgba(245, 245, 243, 0) 62%
    );
  }

  .hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
  }

  .hero-content {
    max-width: 220px !important;
    transform: translateY(0) !important;
    gap: 10px;
    padding-bottom: 28px;
  }

  .hero-main-heading {
    font-size: 1.5rem !important;
    line-height: 1.06 !important;
  }

  .hero-main-heading .hero-line {
    margin: 2px 0;
  }

  .hero-subheading {
    font-size: 0.82rem;
    line-height: 1.35;
    max-width: 100%;
    margin-top: 2px;
  }

  .hero-points {
    gap: 6px;
  }

  .hero-point-item {
    font-size: 0.76rem;
    gap: 7px;
  }

  .hero-check-bullet {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    font-size: 0.62rem;
  }

  .hero-cta-row {
    gap: 8px;
    margin-top: 2px;
  }

  .hero-cta-btn {
    min-height: 36px;
    padding: 9px 10px;
    font-size: 0.78rem;
    border-radius: 9px !important;
  }
}

/* ========================================
   WHO ARE YOU SECTION
   ======================================== */

.who-are-you {
  background: #0F5C5B;
  padding: 40px 0;
  position: relative;
}

.who-header {
  text-align: center;
  margin-bottom: 40px;
}

.who-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.who-line {
  height: 3px;
  width: 60px;
  background: #E0B44A;
}

.who-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.5px;
}

.who-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #D4E4E3;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.who-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px 20px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
}

.who-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(224, 180, 74, 0.4);
  transform: translateY(-8px);
}

.who-card-icon {
  width: 55px;
  height: 55px;
  background: #004341;
  border: 3px solid #E0B44A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 2px;
  font-size: 26px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.who-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  justify-content: space-between;
}

.who-card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.who-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px 0;
}

.who-card-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #D4E4E3;
  margin: 0;
  line-height: 1.4;
  max-width: 190px;
}

.who-card:nth-child(3) .who-card-desc {
  max-width: 190px;
}

.who-card-btn {
  background: #FFFFFF;
  color: #0F5C5B;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  align-self: flex-start;
}

.who-card-btn:hover {
  background: #E0B44A;
  color: #0F5C5B;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .who-are-you {
    padding: 30px 0;
  }

  .who-title {
    font-size: 2rem;
  }

  .who-subtitle {
    font-size: 0.95rem;
  }

  .who-cards {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .who-card {
    padding: 16px 16px;
  }

  .who-card-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .who-card-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .who-are-you {
    padding: 25px 0;
  }

  .who-title-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .who-line {
    width: 35px;
  }

  .who-title {
    font-size: 1.6rem;
  }

  .who-subtitle {
    font-size: 0.85rem;
  }

  .who-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .who-card {
    padding: 14px 12px;
  }

  .who-card-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .who-card-title {
    font-size: 0.95rem;
  }

  .who-card-desc {
    font-size: 0.78rem;
  }

  .who-card-btn {
    padding: 6px 16px;
    font-size: 0.75rem;
  }
}

/* ========================================
   OUR SERVICES SECTION
   ======================================== */

.our-services-section {
  background: #f5f5f3;
  padding: 78px 0 86px;
}

.our-services-header {
  margin-bottom: 34px;
}

.our-services-kicker {
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c99115;
}

.our-services-title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.08;
  color: #0f5c5b;
}

.our-services-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.our-service-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 92, 91, 0.12);
  box-shadow:
    0 18px 42px rgba(9, 53, 52, 0.08),
    0 8px 18px rgba(15, 92, 91, 0.06);
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #0f5c5b;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.our-service-card::after {
  content: '';
  position: absolute;
  inset: auto 14px -12px 14px;
  height: 18px;
  border-radius: 50%;
  background: rgba(9, 53, 52, 0.18);
  filter: blur(16px);
  z-index: -1;
  opacity: 0.75;
  pointer-events: none;
}

.our-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(15, 92, 91, 0.24);
  box-shadow:
    0 26px 56px rgba(9, 53, 52, 0.13),
    0 12px 24px rgba(15, 92, 91, 0.1);
}

.our-service-card:hover .our-service-link i {
  transform: translateX(6px);
}

.our-service-image-slot {
  margin-bottom: 18px;
  text-align: center;
}

.our-service-image {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.our-service-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.our-service-heading {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.12;
  color: #1e3557;
}

.our-service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 92, 91, 0.14);
  color: #0f5c5b;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.our-service-subheading {
  margin: 0 0 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: #1e3557;
}

.our-service-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.our-service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #1e3557;
}

.our-service-features li > i {
  margin-top: 2px;
  color: #0f5c5b;
}

.our-service-features .fa-star {
  color: #c99115;
  font-size: 0.84em;
  margin: 0 2px;
}

.our-service-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e3557;
  border-top: 1px solid rgba(30, 53, 87, 0.15);
  padding-top: 16px;
}

.our-service-link i {
  color: #0f5c5b;
  transition: transform 0.24s ease;
}

.our-service-link:hover {
  color: #0b6a68;
}

.our-service-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .our-services-section {
    padding: 62px 0 68px;
  }

  .our-services-title {
    font-size: 1.9rem;
  }

  .our-services-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-service-card {
    padding: 20px 18px 20px;
  }

  .our-service-image {
    max-width: 300px;
    height: auto;
    object-fit: contain;
  }

  .our-service-heading {
    font-size: 1.46rem;
  }
}

@media (max-width: 480px) {
  .our-services-section {
    padding: 52px 0 58px;
  }

  .our-services-kicker {
    font-size: 0.86rem;
  }

  .our-services-title {
    font-size: 1.6rem;
  }

  .our-services-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .our-service-image {
    max-width: 260px;
    height: auto;
    object-fit: contain;
  }

  .our-service-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .our-service-heading {
    font-size: 1.25rem;
  }

  .our-service-badge {
    min-height: 32px;
    font-size: 0.74rem;
  }

  .our-service-subheading {
    font-size: 0.92rem;
  }

  .our-service-features li {
    font-size: 0.88rem;
  }
}

/* ========================================
   CONTACT CTA SECTION
   ======================================== */

.contact-cta-section {
  background: #f2f1ec;
  padding: 54px 0 58px;
}

.contact-cta-section .container {
  width: 100%;
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}

.contact-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.contact-cta-intro {
  max-width: 100%;
  margin: 0;
  padding: 8px 6px 8px 0;
  align-self: center;
}

.contact-cta-title {
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #1e3557;
}

.contact-cta-subtitle {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #455765;
  max-width: 520px;
}

.contact-cta-band {
  background: transparent;
  padding: 0;
  display: flex;
  align-items: stretch;
}

.contact-cta-panel {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(9, 53, 52, 0.08);
  border: 1px solid rgba(15, 92, 91, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
}

.contact-cta-item {
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  min-width: 0;
}

.contact-cta-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e0b44a 0%, #c99115 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  box-shadow: 0 10px 22px rgba(201, 145, 21, 0.2);
  margin: 0 0 8px 0;
}

.contact-cta-icon i {
  font-size: 1.15rem;
}

.contact-cta-copy h3 {
  margin: 0 0 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1e3557;
}

.contact-cta-copy p {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #5d6d78;
}

.contact-cta-copy p a {
  color: inherit;
  text-decoration: none;
}

.contact-cta-copy p a:hover,
.contact-cta-copy p a:focus-visible {
  color: #0f5c5b;
  text-decoration: underline;
}

.contact-cta-divider {
  width: 1px;
  background: linear-gradient(180deg, rgba(15, 92, 91, 0.08) 0%, rgba(15, 92, 91, 0.18) 50%, rgba(15, 92, 91, 0.08) 100%);
}

.whatsapp-cta-card {
  margin-top: 0;
  background: #f8f8f5;
  border: 2px solid #c99115;
  border-radius: 24px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  box-shadow: 0 18px 42px rgba(201, 145, 21, 0.08);
  overflow: hidden;
}

.whatsapp-cta-content h3 {
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1e3557;
}

.whatsapp-cta-content p {
  margin: 0 0 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #455765;
}

.whatsapp-cta-number {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f5c5b;
}

.whatsapp-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f5c5b;
  text-decoration: none;
}

.whatsapp-cta-phone:hover,
.whatsapp-cta-phone:focus-visible {
  color: #1e3557;
  text-decoration: none;
}

.whatsapp-cta-phone i {
  font-size: 1.15rem;
}

.whatsapp-cta-qr {
  display: flex;
  justify-content: flex-end;
}

.whatsapp-cta-qr-image {
  width: 150px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 10px 22px rgba(9, 53, 52, 0.12);
}

@media (max-width: 1200px) {
  .contact-cta-layout {
    gap: 16px;
  }

/* Service modal styles */
.service-modal-content {
  border-radius: 8px;
  overflow: hidden;
}
.service-modal .modal-header {
  position: relative;
  padding: 12px 24px 8px;
}
.service-modal .modal-header .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 12;
  opacity: 0.8;
}
.service-modal-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
  justify-items: start;
}

.service-modal-image {
  width: 100%;
  max-width: 420px;
  max-height: 260px;
  overflow: hidden;
  border-radius: 14px;
  display: block;
  background: #F5F5F3;
  border: 1px solid rgba(15, 92, 91, 0.10);
  box-shadow: 0 12px 24px rgba(9, 53, 52, 0.08);
}

.service-modal-image img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  display: block;
  object-fit: contain;
}

.service-modal-copy h2 {
  margin-top: 0;
  font-size: 1.55rem;
  line-height: 1.2;
}
.service-modal-copy .badge {
  background: #f0b429;
  color: #000;
  font-weight: 700;
  margin-left: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}
.service-features {
  list-style: disc;
  margin-left: 1rem;
}
.modal-cta-row { margin-top: 16px; }

/* Professional styling for service modals */
.service-modal-content {
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(9,53,52,0.16);
  border: 1px solid rgba(15,92,91,0.06);
}
.service-modal .modal-header {
  padding: 18px 24px 6px;
  background: linear-gradient(135deg, rgba(15,92,91,0.03), rgba(224,180,74,0.02));
}
.service-modal .btn-close {
  border-radius: 6px;
}
.service-modal-copy {
  padding: 18px 28px 28px;
  color: #1e3557;
}
.service-modal-copy h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f5c5b;
  margin-bottom: 8px;
}
.service-modal-copy p {
  color: #334155;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.service-modal-copy hr {
  border: none;
  border-top: 1px solid rgba(15,92,91,0.06);
  margin: 12px 0 16px;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.service-features li {
  position: relative;
  padding-left: 22px;
  color: #23454f;
  font-weight: 600;
}
.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-gold);
  font-size: 0.85rem;
}
.modal-cta-row { margin-top: 20px; }
.modal-cta-row .btn-primary {
  background: linear-gradient(135deg, #0f5c5b 0%, #1e3557 100%);
  border: none;
  padding: 10px 18px;
  font-weight: 800;
  border-radius: 10px;
}
.modal-cta-row .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,92,91,0.14);
}

@media (max-width: 768px) {
  .service-features { grid-template-columns: 1fr; }
  .service-modal-copy { padding: 14px 18px 20px; }
}

@media (max-width: 768px) {
  .service-modal-grid { grid-template-columns: 1fr; }
  .service-modal-image {
    max-height: 200px;
  }
}

/* Center and contain service modal logo */
/* service modal logos removed - no styles needed */
}

@media (max-width: 992px) {
  .whatsapp-cta-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 16px;
  }

  .whatsapp-cta-qr {
    justify-content: center;
    width: 100%;
  }

  .whatsapp-cta-qr-image {
    width: min(100%, 170px);
    height: auto;
    max-width: 170px;
    margin: 0 auto;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .contact-cta-section {
    padding: 34px 0 38px;
  }

  .contact-cta-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-cta-intro {
    padding: 0;
    text-align: left;
  }

  .contact-cta-title {
    font-size: 1.7rem;
  }

  .contact-cta-subtitle {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .contact-cta-band {
    width: 100%;
  }

  .contact-cta-panel {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .contact-cta-divider {
    width: 100%;
    height: 1px;
  }

  .contact-cta-item {
    padding: 10px 14px;
  }

  .whatsapp-cta-card {
    width: 100%;
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 14px;
  }

  .whatsapp-cta-content {
    text-align: left;
  }

  .whatsapp-cta-qr {
    justify-content: center;
  }

}

/* ===== Global overrides for service modals (ensure not scoped inside media queries) ===== */
.service-modal .modal-content,
.service-modal-content {
  background: #ffffff !important;
  box-shadow: 0 22px 60px rgba(9,53,52,0.15) !important;
  border: 1px solid rgba(15,92,91,0.06) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}
.service-modal .modal-header {
  position: relative !important;
  padding: 18px 20px 8px !important;
  background: linear-gradient(135deg, rgba(15,92,91,0.03), rgba(224,180,74,0.02)) !important;
  border-bottom: none !important;
}
.service-modal .btn-close {
  position: absolute !important;
  right: 12px !important;
  top: 12px !important;
  z-index: 20 !important;
  opacity: 0.9 !important;
}
.service-modal .modal-body {
  padding: 18px 24px 24px !important;
}
.service-modal-copy h2 {
  color: var(--primary-teal) !important;
  font-size: 1.6rem !important;
  margin-bottom: 8px !important;
}
.service-modal-copy p {
  color: #334155 !important;
  margin-bottom: 12px !important;
}
.service-features { list-style: none; padding: 0; margin: 0 0 18px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.service-features li { padding-left: 22px; position: relative; font-weight: 600; color: #23454f; }
.service-features li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--accent-gold); font-size: 0.85rem; }
.modal-cta-row { margin-top: 18px; }
.modal-cta-row .btn-primary { background: linear-gradient(135deg, #0f5c5b 0%, #1e3557 100%); border: none; padding: 10px 18px; font-weight: 800; border-radius: 10px; }

@media (max-width: 768px) {
  .service-features { grid-template-columns: 1fr; }
  .service-modal .modal-body { padding: 14px 16px 18px !important; }
}

@media (max-width: 480px) {
  .contact-cta-section {
    padding: 34px 0 38px;
  }

  .contact-cta-title {
    font-size: 1.5rem;
  }

  .contact-cta-subtitle {
    font-size: 0.88rem;
  }

  .contact-cta-item {
    gap: 10px;
    padding: 9px 10px;
  }

  .contact-cta-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .contact-cta-copy h3 {
    font-size: 0.92rem;
  }

  .contact-cta-copy p,
  .whatsapp-cta-content p {
    font-size: 0.84rem;
  }

  .whatsapp-cta-card {
    padding: 14px 12px 16px;
    border-radius: 20px;
  }

  .whatsapp-cta-content h3 {
    font-size: 1.15rem;
  }

  .whatsapp-cta-qr-placeholder {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }

  .whatsapp-cta-qr {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .whatsapp-cta-qr-image {
    width: min(100%, 150px);
    max-width: 150px;
    height: auto;
    object-fit: contain;
  }

  .whatsapp-cta-content,
  .whatsapp-cta-qr {
    justify-self: center;
  }
}

/* ========================================
   SITE FOOTER
   ======================================== */
.site-footer {
  background: var(--hero-offwhite);
  padding: 48px 0 56px;
  color: #1e3557;
}
.site-footer .container {
  width: 100%;
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr 1.1fr;
  gap: 22px;
  align-items: start;
}
.footer-col-brand .footer-logo {
  max-width: 216px;
  display: block;
  margin-bottom: 12px;
}
.footer-brand-sub {
  margin: 0;
  color: #1e3557;
  font-family: 'Roboto', sans-serif;
  line-height: 1.45;
}
.footer-heading {
  margin: 0 0 12px 0;
  color: #1e3557;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
  color: #1e3557;
}

.footer-links-static li {
  cursor: default;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links-static li:hover {
  color: #0f5c5b;
  transform: translateX(2px);
}
.footer-links li a {
  color: #0f5c5b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.22s ease, text-decoration-color 0.22s ease;
}

.footer-links li a:hover,
.footer-links li a:focus-visible {
  color: #1e3557 !important;
  text-decoration: underline;
  text-decoration-color: rgba(30,53,87,0.45);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  color: #1e3557;
}
.contact-list li {
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-row {
  display: flex;
  gap: 8px;
}
.social-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #ffffff;
  color: #0f5c5b;
  text-decoration: none;
  border: 1px solid rgba(15,92,91,0.06);
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  background: #0f5c5b;
  color: #ffffff !important;
  border-color: #0f5c5b;
  transform: translateY(-1px);
}
.footer-col-trust .trust-box {
  border: 1px solid rgba(0,0,0,0.06);
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.footer-col-trust .trust-box:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 92, 91, 0.18);
  box-shadow: 0 16px 34px rgba(9, 53, 52, 0.14), 0 8px 16px rgba(15, 92, 91, 0.1);
}
.trust-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trust-shield {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 72px;
  margin-top: 0;
}

.trust-badge-image {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}

/* Slightly increase trust title width for the trust layout */
.trust-title {
  max-width: 280px;
}
.trust-icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--secondary-navy);
  border: 2px solid var(--secondary-navy);
  font-size: 1.25rem;
}

.trust-icon svg {
  width: 36px;
  height: 36px;
  display: block;
  stroke: currentColor;
  color: var(--secondary-navy);
}

.trust-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.18;
  max-width: 220px;
}

.trust-sub {
  margin: 6px 0 0 0;
  color: #455765;
  font-size: 0.92rem;
  line-height: 1.18;
  max-width: 220px;
}
.trust-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1e3557;
}
.trust-sub {
  margin: 6px 0 0 0;
  color: #455765;
  font-size: 0.92rem;
}
.trust-stats {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  margin: 14px auto 0;
  padding-top: 10px;
  border-top: 1px solid rgba(30,53,87,0.2);
  width: fit-content;
}
.trust-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 12px;
}
.trust-stars i {
  color: #e0b44a;
  margin-right: 4px;
}
.trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 12px;
  border-left: 1px solid rgba(30,53,87,0.35);
}
.trust-note .teal {
  color: #0f5c5b;
  font-weight: 700;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .footer-col-trust {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ========================================
   FOOTER BOTTOM BAR
   ======================================== */
.footer-bottom-bar {
  background: #0f5c5b;
  padding: 14px 0;
}

.footer-bottom-bar .container {
  width: 100%;
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}

.footer-bottom-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.footer-bottom-cta,
.footer-bottom-tagline {
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.footer-bottom-cta {
  justify-self: start;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: #0f5c5b;
  background: #ffffff;
  border-color: rgba(255,255,255,0.9);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ========================================
   ABOUT US MODAL
   ======================================== */
.about-us-modal .modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(9, 53, 52, 0.22);
}

.about-us-modal-content {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f3 100%);
}

.about-us-modal-header {
  padding: 26px 28px 12px;
  background: linear-gradient(135deg, rgba(15, 92, 91, 0.08), rgba(201, 145, 21, 0.08));
  position: relative;
}

.about-us-modal-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
}

.about-us-modal-logo {
  width: 216px;
  height: auto;
  flex: 0 0 216px;
}

.about-us-modal-kicker {
  margin: 0 0 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f5c5b;
}

.about-us-modal-header .modal-title {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #1e3557;
  line-height: 1.18;
  max-width: 720px;
}

.about-us-modal-body {
  padding: 18px 28px 30px;
}

.about-us-modal-lead {
  margin: 0 auto 22px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #1e3557;
  text-align: center;
  max-width: 760px;
}

.about-us-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-us-modal-card {
  background: #ffffff;
  border: 1px solid rgba(15, 92, 91, 0.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(9, 53, 52, 0.06);
  text-align: center;
}

.about-us-modal-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0f5c5b 0%, #1e3557 100%);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.about-us-modal-card h3 {
  margin: 0 0 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #1e3557;
}

.about-us-modal-card p {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #1e3557;
}

.about-us-modal-footer-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 92, 91, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: #1e3557;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.about-us-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.about-us-modal-footer-note a {
  color: #0f5c5b;
  text-decoration: none;
}

.about-us-modal-footer-note a:hover,
.about-us-modal-footer-note a:focus-visible {
  color: #1e3557;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .about-us-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-us-modal-header,
  .about-us-modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-us-modal-logo {
    width: 180px;
    flex-basis: 180px;
  }

  .about-us-modal-header .modal-title {
    font-size: 1.3rem;
  }

  .about-us-modal-lead {
    font-size: 0.95rem;
  }

  .about-us-modal-close {
    top: 14px;
    right: 14px;
  }
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: #0f5c5b;
  text-decoration: underline;
}

.footer-bottom-tagline {
  justify-self: end;
  text-align: right;
}

.tagline-gold {
  color: #e0b44a;
  font-weight: 800;
  margin-left: 6px;
}

@media (max-width: 768px) {
  .footer-bottom-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom-cta,
  .footer-bottom-tagline {
    justify-self: center;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .tagline-gold {
    margin-left: 4px;
  }
}

/* ========================================
   GLOBAL TYPOGRAPHY OVERRIDE
   ======================================== */
:root {
  --font-professional: 'Manrope', 'Segoe UI', sans-serif;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-professional);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-nav .nav-link,
.navbar-cta-btn,
.footer-heading,
.trust-title,
.contact-cta-title,
.our-services-title {
  font-family: var(--font-professional) !important;
}

/* ========================================
   FORM MODALS STYLING
   ======================================== */
.form-modal .modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

.form-modal-content {
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-modal-header {
  background: linear-gradient(135deg, #F5F5F3 0%, #ffffff 100%);
  padding: 36px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.form-modal-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  width: 100%;
}

.form-modal-logo {
  width: 100px;
  height: auto;
  margin-bottom: 14px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.form-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.form-modal-close:hover {
  opacity: 1;
}

.form-modal-body {
  padding: 32px 28px;
  max-height: 80vh;
  overflow-y: auto;
}

.form-modal-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e3557;
  margin: 0 0 8px;
  text-align: center;
}

.form-modal-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
  margin: 0 0 24px;
}

.form-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f5c5b;
  margin: 16px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8e8e8;
}

.form-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e3557;
  margin: 0;
}

.form-input {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 10px 12px;
  color: #333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: #0f5c5b;
  box-shadow: 0 0 0 3px rgba(15, 92, 91, 0.1);
  outline: none;
}

.address-autocomplete-input {
  width: 100%;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Roboto', sans-serif;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}

.form-check-input {
  margin-top: 4px;
  cursor: pointer;
  accent-color: #0f5c5b;
}

.form-check-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  line-height: 1.4;
  margin: 0;
}

.form-check-label a {
  color: #0f5c5b;
  text-decoration: none;
  font-weight: 600;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.form-optional {
  font-size: 0.85rem;
  color: #999;
  font-weight: 400;
}

.form-required {
  color: #c0392b;
  font-weight: 700;
}

.postcode-lookup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.postcode-lookup-row .form-input {
  width: 100%;
  min-width: 0;
}

.postcode-lookup-btn {
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #0f5c5b 0%, #1e3557 100%);
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.postcode-lookup-btn:hover,
.postcode-lookup-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 92, 91, 0.18);
  opacity: 0.98;
}

.postcode-lookup-help {
  display: block;
  margin-top: 6px;
  color: #6d6d6d;
  font-size: 0.84rem;
  line-height: 1.4;
}

.pac-container {
  z-index: 99999 !important;
}

.postcode-lookup-row .postcode-lookup-btn {
  min-height: 44px;
}

.form-submit-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #0f5c5b 0%, #1e3557 100%);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 8px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 92, 91, 0.3);
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-modal-body {
    padding: 24px 20px;
  }

  .form-modal-title {
    font-size: 1.3rem;
  }

  .form-modal-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .form-input {
    font-size: 0.9rem;
    padding: 10px;
  }

  .postcode-lookup-row {
    grid-template-columns: 1fr;
  }

  .postcode-lookup-btn {
    width: 100%;
  }

  .form-modal-logo {
    width: 80px;
  }
}

@media (max-width: 576px) {
  .form-modal-header {
    padding: 24px 16px 16px;
  }

  .form-modal-body {
    padding: 20px 16px;
  }

  .form-modal-title {
    font-size: 1.2rem;
  }

  .form-modal-subtitle {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .form-modal-logo {
    width: 70px;
    margin-bottom: 12px;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .form-input {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .postcode-lookup-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .postcode-lookup-btn {
    width: 100%;
    padding: 10px 14px;
  }

  .form-check-label {
    font-size: 0.8rem;
  }

  .form-submit-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}
