/* ==========================================================
   Manuia Support Services — Custom Stylesheet
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.cdnfonts.com/css/proxima-nova-2');
@import url('https://fonts.cdnfonts.com/css/brittany-signature');

/* ---------- Design Tokens ---------- */
:root {
  --footer-bg: #172541;
  --accent-coral: #FE6F57;
  --text-muted-footer: #c4cbd9;
  --heading-font: 'Young Serif', Georgia, serif;
  --body-font: 'Proxima Nova', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --signature-font: 'Brittany Signature', cursive;
  --btn-green: #7ca18d;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--body-font);
  margin: 0;
  padding: 0;
  color: #333333;
  /* background: linear-gradient(180deg, rgba(242, 109, 93, 0) 0%, rgba(242, 109, 93, 0.1) 53.37%, rgba(242, 109, 93, 0) 99.04%); */
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================
   Top Bar
   ========================================================== */
.site-topbar {
  background-color: var(--footer-bg);
  color: #ffffff;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item i {
  color: var(--accent-coral);
  font-size: 14px;
}

.topbar-contacts {
  gap: 16px;
}

.topbar-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.topbar-link i {
  color: var(--accent-coral);
}

.topbar-link:hover {
  color: var(--accent-coral);
}

.topbar-sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================
   Site Header & Navbar
   ========================================================== */
.site-header {
  background-color: #ffffff;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Frosted glass floating sticky header activated on scroll */
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(23, 37, 65, 0.08);
  animation: headerSlideDown 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-header.is-unsticking {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(23, 37, 65, 0.08);
  animation: headerSlideUp 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-header.is-sticky .navbar,
.site-header.is-unsticking .navbar {
  padding: 6px 0;
}

/* Scoped specifically to desktop so mobile logo position is never distorted */
@media (min-width: 992px) {

  .site-header.is-sticky .header-logo-card,
  .site-header.is-unsticking .header-logo-card {
    top: -6px;
    padding: 10px 18px 12px 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .site-header.is-sticky .header-logo-img,
  .site-header.is-unsticking .header-logo-img {
    max-height: 54px;
  }
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes headerSlideUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

.header-spacer {
  display: none;
  width: 100%;
}

.header-spacer.is-active {
  display: block;
}

.site-header .navbar {
  padding: 12px 0;
}

/* Brand Logo card hanging downward */
.header-logo-card {
  position: absolute;
  top: -10px;
  left: 12px;
  background: #ffffff;
  padding: 14px 22px 16px 22px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 110;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.header-logo-card:hover {
  transform: translateY(2px);
}

.header-logo-img {
  max-height: 72px;
  width: auto;
  display: block;
}

/* Nav Links */
.navbar-nav .nav-link {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  color: #172541;
  padding: 8px 18px !important;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-coral);
}

/* Header Button */
.btn-get-in-touch {
  background-color: var(--btn-green);
  color: #ffffff;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 11px 26px;
  border-radius: 6px;
  border: none !important;
  outline: none !important;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease;
  line-height: normal;
}

.btn-get-in-touch:hover {
  background-color: #6c917d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(124, 161, 141, 0.4);
}

/* ==========================================================
   Hero Banner Section
   ========================================================== */
.hero-banner-section {
  position: relative;
  min-height: 1050px;
  min-height: 115vh;
  min-height: 115dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: transparent;
}

.hero-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -3px;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-container {
  z-index: 10;
  padding-top: 140px;
  padding-bottom: 340px;
}

.hero-content {
  color: #ffffff;
}

.hero-subtitle-script {
  font-family: var(--signature-font);
  color: #ffffff;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 52px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 22px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  max-width: 720px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 34px;
  max-width: 620px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.btn-hero-cta {
  position: relative;
  z-index: 5;
  background-color: var(--btn-green);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  padding: 13px 34px;
  border-radius: 6px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}

.btn-hero-cta:hover {
  background-color: #6c917d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 161, 141, 0.5);
}

/* ==========================================================
   Banner Emblem Flower Badge (Positioned on the bottom curve)
   ========================================================== */
.banner-emblem-badge {
  position: absolute;
  bottom: 97px;
  /* easily raise or lower the whole badge unit */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.3s ease;
}

/* Outer translucent halo ring matching screenshot */
.banner-emblem-outer-ring {
  width: 96px;
  height: 96px;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1), background-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.banner-emblem-outer-ring:hover {
  transform: scale(1.06);
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 36px rgba(254, 111, 87, 0.22);
}

/* Solid white inner circle */
.banner-emblem-circle {
  width: 76px;
  height: 76px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1);
}

.banner-emblem-outer-ring:hover .banner-emblem-circle {
  transform: rotate(15deg);
}

/* Flower SVG icon inside circle */
.banner-emblem-svg {
  width: 44px;
  height: 43px;
  object-fit: contain;
  display: block;
}

/* ==========================================================
   Who We Are Section
   ========================================================== */
.who-we-are-section {
  padding: 50px 0 0px 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, rgba(242, 109, 93, 0.05) 50%, #ffffff 100%);
}

.who-we-are-img-col {
  position: relative;
  text-align: left;
}

.who-we-are-img-wrapper {
  display: inline-block;
  max-width: 530px;
  width: 100%;
}

.who-we-are-img {
  width: 100%;
  height: auto;
  display: block;
}

.who-we-are-content {
  padding-left: 45px;
}

.who-we-are-script {
  font-family: var(--signature-font);
  color: var(--accent-coral);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 6px;
}

.who-we-are-title {
  font-family: var(--heading-font);
  font-size: 52px;
  color: #172541;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 22px;
}

.who-we-are-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 28px 0;
  width: 170px;
}

.who-we-are-divider::before,
.who-we-are-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1.5px solid #f9cdb8;
}

.who-we-are-divider-icon {
  padding: 0 10px;
  color: var(--accent-coral);
  font-size: 14px;
  line-height: 1;
}

.who-we-are-text-body {
  margin-bottom: 32px;
}

.who-we-are-text-body p {
  font-size: 13.5px;
  line-height: 1.68;
  color: #444c5c;
  margin-bottom: 16px;
  max-width: 520px;
}

.who-we-are-text-body p:last-child {
  margin-bottom: 0;
}

.btn-who-we-are {
  background-color: var(--btn-green);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  padding: 13px 34px;
  border-radius: 6px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-who-we-are:hover {
  background-color: #6c917d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 161, 141, 0.4);
}

/* ==========================================================
   Our Core Values Section
   ========================================================== */
.core-values-section {
  padding: 0px 0 70px 0;
  position: relative;
  background: white;
}

.page-id-11 .core-values-section {
  padding: 70px 0 70px 0;
}


.values-subtitle-script {
  font-family: var(--signature-font);
  color: var(--accent-coral);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 6px;
}

.values-title {
  font-family: var(--heading-font);
  font-size: 52px;
  color: #172541;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}

.values-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 55px auto;
  width: 170px;
}

.values-divider::before,
.values-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1.5px solid #f9cdb8;
}

.values-divider-icon {
  padding: 0 10px;
  color: var(--accent-coral);
  font-size: 14px;
  line-height: 1;
}

/* 4-column layout with vertical dividers */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.value-col {
  padding: 10px 24px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Thin vertical borders between columns */
.value-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 25px;
  right: 0;
  width: 1px;
  background-color: #e5e9ea;
}

/* Green circular icon holder */
.value-icon-circle {
  width: 68px;
  height: 68px;
  background-color: var(--btn-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-col:hover .value-icon-circle {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 20px rgba(124, 161, 141, 0.35);
}

.value-icon-img {
  max-width: 34px;
  max-height: 34px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Value Item Title */
.value-item-title {
  font-family: var(--heading-font);
  font-size: 26px;
  color: #172541;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
}

/* Value Item Description */
.value-item-desc {
  font-family: var(--body-font);
  font-size: 13.5px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
  max-width: 250px;
}

/* Subtle bottom separator line matching image */
.values-bottom-border {
  margin-top: 45px;
  width: 100%;
  border-bottom: 1px solid #e5e9ea;
}

/* Values Swiper Slider */
.values-swiper-container {
  position: relative;
  padding: 10px 0 25px 0;
}

.valuesSwiper {
  overflow: hidden;
  padding-bottom: 25px;
}

.valuesSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.valuesSwiper .value-col {
  width: 100%;
  height: 100%;
  padding: 15px 20px 20px 20px;
  transition: transform 0.35s ease;
}

.valuesSwiper .value-col:hover {
  transform: translateY(-4px);
}

.valuesSwiper .value-col::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 25px;
  right: -12px;
  width: 1px;
  background-color: #e5e9ea;
}

.values-swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.values-swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #d1d5db;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.values-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-coral);
  width: 26px;
  border-radius: 6px;
}

/* ==========================================================
   Why Choose Us Section
   ========================================================== */
.why-choose-us-section {
  padding: 100px 0 60px 0;
  position: relative;
}

.why-choose-content {
  padding-right: 30px;
}

.why-choose-script {
  font-family: var(--signature-font);
  color: var(--accent-coral);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 2px;
}

.why-choose-title {
  font-family: var(--heading-font);
  font-size: 48px;
  color: #172541;
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 18px;
}

.why-choose-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 35px 0;
  width: 170px;
}

.why-choose-divider::before,
.why-choose-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1.5px solid #f9cdb8;
}

.why-choose-divider-icon {
  padding: 0 10px;
  color: var(--accent-coral);
  font-size: 14px;
  line-height: 1;
}

/* Feature list */
.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 700;
  color: #172541;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.feature-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #5d6778;
  margin: 0;
  max-width: 480px;
}

/* Button */
.btn-why-choose {
  background-color: var(--btn-green);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  padding: 13px 34px;
  border-radius: 6px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-why-choose:hover {
  background-color: #6c917d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 161, 141, 0.4);
}

/* Image wrapper */
.why-choose-img-col {
  position: relative;
}

.why-choose-img-wrapper {
  display: inline-block;
  max-width: 530px;
  width: 100%;
}

.why-choose-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================
   Our Services Section
   Uses service-bg.webp as background with curved top and bottom
   ========================================================== */
.our-services-section {
  position: relative;
  background-image: url('../images/service-bg.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 140px;
  padding-bottom: 140px;
  margin-top: 40px;
  margin-bottom: 20px;
  overflow: hidden;
}

.services-container {
  position: relative;
  z-index: 2;
}

.services-subtitle-script {
  font-family: var(--signature-font);
  color: #ffffff;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 8px;
}

.services-title {
  font-family: var(--heading-font);
  font-size: 46px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.22;
  margin-bottom: 50px;
}

/* Service cards */
.services-cards-row {
  align-items: stretch;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 38px 24px 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* Coral icon circle */
.service-icon-circle {
  width: 72px;
  height: 72px;
  background-color: var(--accent-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Card title */
.service-card-title {
  font-family: var(--heading-font);
  font-size: 20px;
  color: #1F2D4A;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  min-height: 78px;
}

/* Card description */
.service-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #5d6778;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* Read more link */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #172541;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
  margin-top: auto;
}

.service-card-link:hover {
  color: var(--accent-coral);
}

.link-arrow-circle {
  width: 22px;
  height: 22px;
  background-color: var(--btn-green);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.service-card-link:hover .link-arrow-circle {
  transform: translate(2px, -2px);
  background-color: var(--accent-coral);
}

/* ==========================================================
   Testimonials Section
   ========================================================== */
.testimonials-section {
  padding: 80px 0 90px 0;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background: linear-gradient(180deg, #ffffff 0%, rgba(242, 109, 93, 0.05) 50%, #ffffff 100%);
}

.section-subtitle-script {
  font-family: var(--signature-font);
  color: var(--accent-coral);
  font-size: 50px;
  line-height: 1;
  margin-bottom: 5px;
}

.testimonials-title {
  font-family: var(--heading-font);
  font-size: 48px;
  color: #172541;
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px auto;
  width: 200px;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1.5px solid #f9cdb8;
}

.section-divider-icon {
  padding: 0 12px;
  color: var(--accent-coral);
  font-size: 15px;
  line-height: 1;
}

/* Testimonial Swiper Slider — edge-to-edge infinite slider */
.testimonials-swiper-container {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 20px 0 35px 0;
  overflow: hidden;
}

.testimonialsSwiper {
  width: 100%;
  overflow: visible !important;
  /* lets cards touch the border of the screen */
  padding: 15px 0;
}

.testimonialsSwiper .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual card as swiper slide */
.testimonialsSwiper .swiper-slide.testimonial-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
  padding: 34px 28px 28px 28px;
  width: 320px;
  height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.35s ease;
  user-select: none;
  flex-shrink: 0;
}

.testimonialsSwiper .swiper-slide.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #f58220;
  font-size: 16px;
  margin-bottom: 18px;
}

.testimonial-heading {
  font-family: var(--body-font);
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
  line-height: 1.3;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.65;
  color: #555e6d;
  margin-bottom: 26px;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #f1f3f7;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: none;
}

.user-name {
  font-size: 14px;
  font-weight: 700;
  color: #172541;
  margin: 0;
  letter-spacing: 0.5px;
}

.user-role {
  font-size: 12px;
  color: #8892a4;
  display: none;
}

.testimonial-google-badge {
  display: flex;
  align-items: center;
}

.google-icon {
  width: 22px;
  height: 22px;
}

/* Trust rating bottom badge */
.trust-badge-container {
/*   display: inline-flex; */
 display: none;
  align-items: center;
  background: transparent;
  padding: 6px 12px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.stacked-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}

.avatar-group .stacked-avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  background-color: var(--accent-coral);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-divider {
  color: #d1d5db;
  margin: 0 4px;
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-rating .bi-star-fill {
  color: #f58220;
  font-size: 15px;
}

/* ==========================================================
   Home Gallery Section (Replaces Testimonials on Front Page)
   ========================================================== */
.home-gallery-section {
  padding: 85px 0 95px 0;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background: linear-gradient(180deg, #ffffff 0%, rgba(242, 109, 93, 0.04) 50%, #ffffff 100%);
}

.home-gallery-desc {
  font-size: 16.5px;
  line-height: 1.75;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto;
}

.home-gallery-swiper-container {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 30px 0 25px 0;
  overflow: hidden;
}

.homeGallerySwiper {
  width: 100%;
  overflow: visible !important;
  padding: 15px 0;
}

.homeGallerySwiper .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.home-gallery-slide {
  height: auto;
  user-select: none;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.4s ease;
}

.home-gallery-slide .gallery-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  aspect-ratio: 16 / 11;
  background: #f0f2f5;
  box-shadow: 0 10px 30px rgba(23, 37, 65, 0.07), 0 2px 8px rgba(23, 37, 65, 0.03);
  border: 1px solid rgba(23, 37, 65, 0.06);
}

.home-gallery-slide .gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-gallery-slide .gallery-item-overlay {
  background: rgba(23, 37, 65, 0.22);
}

.home-gallery-slide .gallery-item-overlay-content {
  display: none !important;
}

.home-gallery-slide:hover .gallery-item-inner img {
  transform: scale(1.08);
}

.home-gallery-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(254, 111, 87, 0.16), 0 8px 24px rgba(23, 37, 65, 0.08);
}

/* Home Gallery Navigation & Pagination Controls */
.home-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.home-gallery-prev,
.home-gallery-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(23, 37, 65, 0.12);
  background: #ffffff;
  color: #172541;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(23, 37, 65, 0.06);
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.home-gallery-prev:hover,
.home-gallery-next:hover {
  background: var(--accent-coral);
  border-color: var(--accent-coral);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(254, 111, 87, 0.32);
}

.home-gallery-pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto !important;
  position: static !important;
}

.home-gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(23, 37, 65, 0.18);
  opacity: 1;
  border-radius: 20px;
  transition: all 0.35s ease;
  margin: 0 !important;
}

.home-gallery-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--accent-coral);
  box-shadow: 0 2px 8px rgba(254, 111, 87, 0.4);
}

/* ==========================================================
   CTA Section  –  Full background image + white gradient top
   ========================================================== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FFFFFF 28%, rgba(255, 255, 255, 0) 48.55%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 380px;
  text-align: center;
}

.cta-header-title {
  font-family: var(--heading-font);
  font-size: 56px;
  font-weight: 400;
  color: #172541;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-signature {
  font-family: var(--signature-font);
  color: var(--accent-coral);
  font-size: 85px;
  font-weight: normal;
  display: inline;
  margin-right: 10px;
  line-height: 0.8;
  vertical-align: baseline;
  position: relative;
  top: 6px;
}

.cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  width: 260px;
}

.cta-divider::before,
.cta-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ffd4cb;
}

.cta-divider-icon {
  padding: 0 10px;
  color: var(--accent-coral);
  font-size: 14px;
  line-height: 1;
}

.cta-description {
  font-size: 15px;
  color: #000000;
  max-width: 620px;
  margin: 0 auto 30px auto;
  line-height: 1.65;
}

.btn-cta {
  background-color: var(--btn-green);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  padding: 14px 36px;
  border-radius: 6px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-cta:hover {
  background-color: #6c917d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 161, 141, 0.4);
}

/* ==========================================================
   Main Footer — background image has curve + flower built in
   ========================================================== */
.site-footer {
  background-image: url('../images/footer-bg-with-curve.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  color: #ffffff;
  position: relative;
  margin-top: -116px;
  padding-top: 180px;
  padding-bottom: 30px;
}

.footer-main {
  position: relative;
  z-index: 2;
}

.footer-col-about {
  padding-right: 35px;
}

.footer-logo {
  max-width: 210px;
  height: auto;
  margin-bottom: 22px;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted-footer);
  margin-bottom: 0;
}

.footer-widget-title {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 26px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14.5px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: baseline;
  line-height: 1.45;
}

.footer-links li .bullet-icon {
  color: var(--accent-coral);
  margin-right: 10px;
  font-size: 12px;
  flex-shrink: 0;
}

.footer-links li a:hover {
  color: var(--accent-coral);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  margin-right: 14px;
  margin-top: 2px;
  font-size: 15px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.footer-contact-item:hover .contact-icon-box {
  border-color: var(--accent-coral);
  color: var(--accent-coral);
}

.contact-content {
  font-size: 13.5px;
}

.contact-label {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 2px;
}

.contact-value {
  color: #ffffff;
  text-decoration: none;
  line-height: 1.45;
  display: inline-block;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-value.multiline {
  line-height: 1.55;
}

a.contact-value:hover {
  color: var(--accent-coral);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer-copyright a {
  color: #48cfad;
  text-decoration: none;
  font-weight: 500;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

/* ==========================================================
   Responsive Adaptations (Targeted Breakpoints Only)
   Preserves 100% of the desktop view for screens >= 1200px
   ========================================================== */

/* ---------- Medium Laptops (1200px to 1340px) ---------- */

/* ---------- Small Laptops / Tablets Landscape (992px to 1199.98px) ---------- */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header-logo-card {
    left: 12px;
    padding: 10px 16px 12px 16px;
  }

  .header-logo-img {
    max-height: 56px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 8px 12px !important;
  }

  .btn-get-in-touch {
    padding: 9px 18px;
    font-size: 12px;
  }

  .hero-banner-section {
    min-height: 900px;
  }

  .hero-container {
    padding-top: 110px;
    padding-bottom: 260px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle-script {
    font-size: 40px;
  }

  .service-card-title {
    min-height: auto;
  }
}

/* ---------- Tablets Portrait & Down (max-width: 991.98px) ---------- */
@media (max-width: 991.98px) {
  .site-topbar {
    font-size: 12px;
  }

  .site-topbar .d-flex {
    justify-content: center !important;
    gap: 8px;
    text-align: center;
  }

  .header-logo-card {
    position: static;
    top: auto;
    left: auto;
    padding: 6px 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .header-logo-card:hover {
    transform: none;
  }

  .header-logo-img {
    max-height: 50px;
  }

  .site-header .navbar-toggler {
    border: 1px solid rgba(23, 37, 65, 0.2);
    padding: 6px 10px;
    border-radius: 6px;
  }

  .site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(124, 161, 141, 0.35);
  }

  .site-header .navbar-collapse {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 12px;
  }

  .site-header .navbar-nav {
    padding-top: 5px;
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 10px 16px !important;
    border-bottom: 1px solid #f3f4f6;
    font-size: 15px;
  }

  .btn-get-in-touch {
    display: inline-block;
    margin-top: 12px;
    padding: 11px 28px;
  }

  .hero-banner-section {
    min-height: 840px;
    min-height: 95vh;
  }

  .hero-container {
    padding-top: 90px;
    padding-bottom: 220px;
    text-align: center;
  }

  .hero-subtitle-script {
    font-size: 38px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-banner-bg {
    background-position: 72% bottom;
  }

  .banner-emblem-badge {
    bottom: -2px;
  }

  .banner-emblem-outer-ring {
    width: 82px;
    height: 82px;
  }

  .banner-emblem-circle {
    width: 66px;
    height: 66px;
  }

  .banner-emblem-svg {
    width: 38px;
    height: 37px;
  }

  .who-we-are-section {
    padding: 60px 0 60px 0;
  }

  .who-we-are-img-col {
    text-align: center !important;
    margin-bottom: 40px;
  }

  .who-we-are-img-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .who-we-are-content {
    padding-left: 0;
    text-align: center;
  }

  .who-we-are-divider {
    margin: 0 auto 25px auto;
  }

  .who-we-are-text-body p {
    margin-left: auto;
    margin-right: auto;
  }

  .who-we-are-title {
    font-size: 40px;
  }

  .who-we-are-script {
    font-size: 36px;
  }

  .core-values-section {
    padding: 60px 0 45px 0;
  }

  .values-title {
    font-size: 40px;
  }

  .values-subtitle-script {
    font-size: 36px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
    column-gap: 20px;
  }

  .value-col:nth-child(2n)::after {
    display: none;
  }

  .why-choose-us-section {
    padding: 60px 0 40px 0;
  }

  .why-choose-content {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }

  .why-choose-divider {
    margin: 0 auto 30px auto;
  }

  .why-choose-features {
    text-align: left;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-choose-title {
    font-size: 38px;
  }

  .why-choose-script {
    font-size: 36px;
  }

  .why-choose-img-col {
    text-align: center !important;
  }

  .why-choose-img-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .our-services-section {
    background-color: #739274;
    background-size: cover;
    background-position: center top;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .services-title {
    font-size: 38px;
  }

  .services-subtitle-script {
    font-size: 38px;
  }

  .service-card-title {
    min-height: auto;
  }

  .testimonials-section {
    padding: 65px 0;
  }

  .testimonials-title {
    font-size: 38px;
  }

  .section-subtitle-script {
    font-size: 42px;
  }

  .cta-header-title {
    font-size: 42px;
  }

  .cta-signature {
    font-size: 65px;
  }

  .cta-content {
    padding-bottom: 200px;
  }

  .site-footer {
    padding-top: 140px;
    margin-top: -70px;
    background-color: var(--footer-bg);
    background-size: cover;
  }

  .footer-col-about {
    margin-bottom: 35px;
    padding-right: 0;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Mobile Phones (max-width: 767.98px) ---------- */
@media (max-width: 767.98px) {
  .topbar-time {
    display: none;
  }

  .site-topbar {
    padding: 6px 0;
  }

  .topbar-contacts {
    font-size: 11px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle-script {
    font-size: 32px;
  }

  .hero-banner-section {
    min-height: 640px;
  }

  .hero-container {
    padding-top: 60px;
    padding-bottom: 160px;
    text-align: center;
  }

  .hero-banner-bg {
    background-position: 78% bottom;
  }

  .banner-emblem-badge {
    bottom: -3px;
  }

  .banner-emblem-outer-ring {
    width: 70px;
    height: 70px;
  }

  .banner-emblem-circle {
    width: 56px;
    height: 56px;
  }

  .banner-emblem-svg {
    width: 32px;
    height: 31px;
  }

  .who-we-are-title {
    font-size: 32px;
  }

  .who-we-are-script {
    font-size: 32px;
  }

  .values-title {
    font-size: 32px;
  }

  .values-subtitle-script {
    font-size: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .value-col::after {
    display: none !important;
  }

  .our-services-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .services-title {
    font-size: 30px;
    margin-bottom: 35px;
  }

  .services-subtitle-script {
    font-size: 32px;
  }

  .service-card-title {
    min-height: auto;
  }

  .service-card-title br {
    display: inline;
  }

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

  .testimonials-title {
    font-size: 30px;
  }

  .section-subtitle-script {
    font-size: 36px;
  }

  .testimonialsSwiper .swiper-slide.testimonial-card {
    width: 290px;
    padding: 24px 20px 20px 20px;
  }

  .trust-badge-container {
    font-size: 13px;
    gap: 8px;
  }

  .cta-header-title {
    font-size: 32px;
  }

  .cta-signature {
    font-size: 50px;
    display: block;
    margin-right: 0;
    margin-bottom: 6px;
    line-height: 0.9;
  }

  .cta-content {
    padding-top: 50px;
    padding-bottom: 140px;
  }

  .site-footer {
    padding-top: 110px;
    margin-top: -50px;
    background-color: var(--footer-bg);
    background-size: cover;
  }

  .footer-widget {
    margin-bottom: 25px;
  }

  .footer-col-about {
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Small Mobile Phones (max-width: 575.98px) ---------- */
@media (max-width: 575.98px) {
  .site-topbar {
    padding: 5px 0;
  }

  .topbar-contacts {
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .topbar-sep {
    display: none;
  }

  .header-logo-img {
    max-height: 42px;
  }

  .hero-banner-section {
    min-height: 540px;
  }

  .hero-container {
    padding-top: 40px;
    padding-bottom: 130px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-banner-bg {
    background-position: 82% bottom;
  }

  .banner-emblem-badge {
    bottom: -4px;
  }

  .banner-emblem-outer-ring {
    width: 60px;
    height: 60px;
  }

  .banner-emblem-circle {
    width: 48px;
    height: 48px;
  }

  .banner-emblem-svg {
    width: 28px;
    height: 27px;
  }

  .hero-title {
    font-size: 29px;
  }

  .hero-subtitle-script {
    font-size: 26px;
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .btn-hero-cta {
    padding: 12px 28px;
    font-size: 12px;
  }

  .value-col {
    padding: 8px 10px 16px 10px;
  }

  .value-item-desc {
    font-size: 13px;
  }

  .testimonialsSwiper .swiper-slide.testimonial-card {
    width: min(310px, calc(100vw - 44px));
    padding: 22px 18px 18px 18px;
  }

  .trust-divider {
    display: none;
  }

  .trust-badge-container {
    flex-direction: column;
    gap: 6px;
  }

  .cta-content {
    padding-top: 40px;
    padding-bottom: 130px;
  }

  .site-footer {
    padding-top: 95px;
    margin-top: -45px;
  }

  .footer-links li a {
    font-size: 13px;
  }

  .contact-content {
    font-size: 12.5px;
  }

  .footer-copyright {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* ---------- Extra Small Screens (max-width: 380px) ---------- */
@media (max-width: 380px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle-script {
    font-size: 23px;
  }

  .btn-hero-cta,
  .btn-who-we-are,
  .btn-why-choose,
  .btn-cta {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .cta-signature {
    font-size: 40px;
  }

  .testimonialsSwiper .swiper-slide.testimonial-card {
    width: calc(100vw - 32px);
    padding: 20px 14px;
  }
}

/* ==========================================================
   Animations & Micro-interactions
   ========================================================== */
/* Floating Animation for Flower Badge (uses transform on inner circle without moving badge coordinates) */
@keyframes emblemGentleFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-4px) rotate(2deg);
  }
}

.banner-emblem-outer-ring {
  animation: emblemGentleFloat 4s ease-in-out infinite;
}

/* Service Cards Subtle Hover Lift & Magnetic Spotlight */
.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  --spotlight-opacity: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(400px circle at var(--spotlight-x) var(--spotlight-y), rgba(254, 111, 87, 0.08), transparent 70%);
  opacity: var(--spotlight-opacity);
  pointer-events: none;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  z-index: 0;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(23, 37, 65, 0.12);
}

.service-card:hover .link-arrow-circle {
  transform: translate(3px, -3px) scale(1.1);
  box-shadow: 0 4px 10px rgba(254, 111, 87, 0.4);
}

/* Value Columns Subtle Hover */
.value-col {
  transition: transform 0.3s ease;
}

.value-col:hover {
  transform: translateY(-3px);
}

/* ==========================================================
   Button Animations & Micro-interactions (Wavy Liquid Rise)
   ========================================================== */
/* Common button styling upgrades: isolated overflow & relative positioning */
.btn-get-in-touch,
.btn-hero-cta,
.btn-who-we-are,
.btn-why-choose,
.btn-cta {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s ease !important;
}

/* Wavy Liquid Layer 1: Rotating organic curved crest */
.btn-get-in-touch::before,
.btn-hero-cta::before,
.btn-who-we-are::before,
.btn-why-choose::before,
.btn-cta::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 250%;
  height: 250%;
  background-color: var(--accent-coral);
  border-radius: 40%;
  transform: translateX(-50%) translateY(0) rotate(0deg);
  z-index: -1;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.25, 1), top 0.65s cubic-bezier(0.2, 0.8, 0.25, 1);
  pointer-events: none;
}

/* Wavy Liquid Layer 2: Shimmering secondary wave layer */
.btn-get-in-touch::after,
.btn-hero-cta::after,
.btn-who-we-are::after,
.btn-why-choose::after,
.btn-cta::after {
  content: '';
  position: absolute;
  top: 110%;
  left: 45%;
  width: 240%;
  height: 240%;
  background-color: rgba(255, 147, 130, 0.45);
  border-radius: 42%;
  transform: translateX(-50%) translateY(0) rotate(0deg);
  z-index: -1;
  transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.25, 1), top 0.75s cubic-bezier(0.2, 0.8, 0.25, 1);
  pointer-events: none;
}

/* Hover State: Both fluid waves roll & swirl upward filling the button */
.btn-get-in-touch:hover::before,
.btn-hero-cta:hover::before,
.btn-who-we-are:hover::before,
.btn-why-choose:hover::before,
.btn-cta:hover::before {
  top: -70%;
  transform: translateX(-50%) translateY(0) rotate(220deg);
}

.btn-get-in-touch:hover::after,
.btn-hero-cta:hover::after,
.btn-who-we-are:hover::after,
.btn-why-choose:hover::after,
.btn-cta:hover::after {
  top: -65%;
  transform: translateX(-50%) translateY(0) rotate(140deg);
}

/* Spring Lift & Glowing Coral Shadow on Hover */
.btn-hero-cta:hover,
.btn-get-in-touch:hover,
.btn-who-we-are:hover,
.btn-why-choose:hover,
.btn-cta:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 28px rgba(254, 111, 87, 0.45) !important;
  color: #ffffff !important;
}

/* Tactile Active click feedback */
.btn-get-in-touch:active,
.btn-hero-cta:active,
.btn-who-we-are:active,
.btn-why-choose:active,
.btn-cta:active {
  transform: translateY(1px) scale(0.98) !important;
  box-shadow: 0 4px 12px rgba(254, 111, 87, 0.3) !important;
}

/* Ambient Gentle Breathing Glow on normal state (Hero & Header CTA) */
@keyframes ctaAmbientPulse {

  0%,
  100% {
    box-shadow: 0 4px 14px rgba(124, 161, 141, 0.25), 0 0 0 0 rgba(124, 161, 141, 0.3);
  }

  50% {
    box-shadow: 0 6px 20px rgba(124, 161, 141, 0.35), 0 0 0 6px rgba(124, 161, 141, 0);
  }
}

.btn-hero-cta {
  animation: ctaAmbientPulse 3.2s ease-in-out infinite;
}

.btn-get-in-touch {
  animation: ctaAmbientPulse 3.6s ease-in-out infinite 0.6s;
}

/* ==========================================================
   Accessibility Toolbar Widget (Australian NDIS Standard)
   ========================================================== */
.a11y-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
}

.a11y-toggle-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #172541;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(23, 37, 65, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, box-shadow 0.25s ease;
}

.a11y-toggle-btn:hover {
  transform: scale(1.1);
  background: var(--accent-coral);
  box-shadow: 0 10px 28px rgba(254, 111, 87, 0.38);
}

.a11y-menu {
  display: none;
  position: absolute;
  bottom: 58px;
  left: 0;
  width: 250px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid #e5e9ea;
  overflow: hidden;
  animation: a11yFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.a11y-menu.is-open {
  display: block;
}

@keyframes a11yFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.a11y-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #172541;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.a11y-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.a11y-close-btn:hover {
  opacity: 1;
}

.a11y-menu-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Stepper Row for Font Size (+ and -) */
.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #edf2f7;
}

.a11y-row-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #172541;
  display: flex;
  align-items: center;
  gap: 6px;
}

.a11y-stepper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.a11y-step-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #172541;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
}

.a11y-step-btn:hover {
  background: #172541;
  color: #ffffff;
  border-color: #172541;
}

.a11y-step-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-coral);
  min-width: 36px;
  text-align: center;
}

/* Feature Toggle Buttons */
.a11y-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  background: none;
  border: none;
  border-radius: 8px;
  color: #172541;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.a11y-btn span:first-of-type {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.a11y-btn:hover {
  background: #f4f6f8;
  color: var(--accent-coral);
}

.a11y-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  background: #e2e8f0;
  color: #64748b;
  transition: background 0.2s ease, color 0.2s ease;
}

.a11y-badge.is-active {
  background: #22c55e;
  color: #ffffff;
}

.a11y-btn-reset {
  margin-top: 4px;
  border-top: 1px solid #edf2f7;
  padding-top: 10px;
  color: #64748b;
  font-size: 12px;
}

.a11y-btn-reset:hover {
  color: #ef4444;
  background: #fef2f2;
}

/* ==========================================================
   Accessibility State Effects (Australian Standards)
   ========================================================== */
/* High Contrast Mode - clean styling without filter bugs */
body.a11y-contrast {
  background-color: #ffffff !important;
}

body.a11y-contrast p,
body.a11y-contrast .service-card-desc,
body.a11y-contrast .testimonial-text,
body.a11y-contrast .hero-description {
  color: #000000 !important;
  font-weight: 500 !important;
}

body.a11y-contrast h1,
body.a11y-contrast h2,
body.a11y-contrast h3,
body.a11y-contrast h4,
body.a11y-contrast h5 {
  color: #000000 !important;
}

body.a11y-contrast .service-card {
  border: 2px solid #000000 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}

body.a11y-contrast .testimonial-card {
  border: 2px solid #000000 !important;
}

/* Highlight Links Mode */
body.a11y-highlight-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
  color: #0d6efd !important;
  font-weight: 700 !important;
}

body.a11y-highlight-links .btn-hero-cta,
body.a11y-highlight-links .btn-get-in-touch,
body.a11y-highlight-links .btn-who-we-are,
body.a11y-highlight-links .btn-why-choose,
body.a11y-highlight-links .btn-cta {
  outline: 3px solid #ffff00 !important;
  outline-offset: 2px !important;
}

/* Dyslexia-Friendly Font Mode */
body.a11y-dyslexic,
body.a11y-dyslexic p,
body.a11y-dyslexic span,
body.a11y-dyslexic a,
body.a11y-dyslexic li,
body.a11y-dyslexic h1,
body.a11y-dyslexic h2,
body.a11y-dyslexic h3,
body.a11y-dyslexic h4 {
  font-family: 'Comic Sans MS', 'OpenDyslexic', Arial, sans-serif !important;
  letter-spacing: 0.05em !important;
  word-spacing: 0.1em !important;
  line-height: 1.8 !important;
}

/* Reading Guide Bar */
.a11y-reading-guide-line {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #FE6F57;
  box-shadow: 0 0 10px rgba(254, 111, 87, 0.8), 0 0 0 10000px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 9998;
}

.a11y-reading-guide-line.is-active {
  display: block;
}

/* Responsive adjustment for accessibility widget */
@media (max-width: 575.98px) {
  .a11y-widget {
    bottom: 18px;
    left: 18px;
  }

  .a11y-toggle-btn {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .a11y-menu {
    width: 230px;
    bottom: 52px;
  }
}

/* Editorial Smooth Mask Reveals (Award-winning text glide) */
.reveal-mask {
  overflow: hidden;
  display: block;
}

.reveal-mask-inner {
  display: block;
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

/* Respect reduce-motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================
   Inner Page Banner (About Us & Subpages)
   ========================================================== */
.page-banner-section {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--footer-bg);
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 1;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(23, 37, 65, 0.88) 0%, rgba(23, 37, 65, 0.7) 60%, rgba(254, 111, 87, 0.35) 100%);
  z-index: 2;
}

/* ==========================================================
   Page Banner Bottom Curve Image (banner-below-curve.webp)
   ========================================================== */
.page-banner-curve-wrapper {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}

.page-banner-curve-img {
  width: 100%;
  height: auto;
  min-height: 40px;
  max-height: 90px;
  object-fit: fill;
  display: block;
  pointer-events: none;
}

.page-banner-container {
  z-index: 10;
  padding-top: 60px;
  padding-bottom: 70px;
  color: #ffffff;
}

.page-banner-title {
  font-family: var(--heading-font);
  font-size: 56px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-banner-breadcrumb {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.page-banner-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.page-banner-breadcrumb a:hover {
  color: var(--accent-coral);
}

.page-banner-breadcrumb span {
  color: var(--accent-coral);
  font-weight: 600;
}

/* ==========================================================
   About Page: Authentic Values Grid (6 Values)
   ========================================================== */
.values-grid-about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
  position: relative;
}

.values-grid-about .value-col {
  padding: 16px 24px 24px 24px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-grid-about .value-col:hover {
  transform: translateY(-4px);
}

.values-grid-about .value-icon-circle {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, background-color 0.3s ease;
}

.values-grid-about .value-col:hover .value-icon-circle {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 24px rgba(124, 161, 141, 0.45);
  background-color: #6c917d;
}

.values-grid-about .value-col::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 25px;
  right: 0;
  width: 1px;
  background-color: #e5e9ea;
}

/* Remove vertical border on the 3rd column of each row in 3-col layout */
.values-grid-about .value-col:nth-child(3n)::after {
  display: none;
}

.values-grid-about .value-item-title {
  font-family: var(--heading-font);
  font-size: 26px;
  color: #172541;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
}

.values-grid-about .value-col:hover .value-item-title {
  color: var(--accent-coral);
}

.values-grid-about .value-item-desc {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
  max-width: 280px;
}

@media (max-width: 991.98px) {
  .values-grid-about {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .values-grid-about .value-col:nth-child(3n)::after {
    display: block;
  }

  .values-grid-about .value-col:nth-child(2n)::after {
    display: none;
  }

  .page-banner-title {
    font-size: 44px;
  }
}

@media (max-width: 575.98px) {
  .values-grid-about {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-grid-about .value-col::after {
    display: none !important;
  }

  .page-banner-section {
    min-height: 280px;
  }

  .page-banner-title {
    font-size: 34px;
  }
}

/* ==========================================================
   NDIS Services Page Unique Styling
   ========================================================== */
.ndis-intro-section {
  padding: 50px 0 50px 0;
  background: #ffffff;
}

.ndis-intro-title {
  font-family: var(--heading-font);
  font-size: 44px;
  color: #172541;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
}

.ndis-intro-description {
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
  max-width: 820px;
  margin: 0 auto;
}

/* NDIS Services Grid Section */
.ndis-services-grid-section {
  padding: 40px 0 90px 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, rgba(242, 109, 93, 0.04) 50%, #ffffff 100%);
}

.ndis-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.035;
  background-image: radial-gradient(#172541 1.2px, transparent 1.2px), radial-gradient(#FE6F57 1.2px, #ffffff 1.2px);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
  pointer-events: none;
}

/* Unique NDIS Service Card */
/* Unique NDIS Service Card (Taking reference UI layout with Manuia brand identity) */
.ndis-service-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23, 37, 65, 0.08);
  box-shadow: 0 10px 32px rgba(23, 37, 65, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  overflow: hidden;
}

.ndis-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(254, 111, 87, 0.3);
  box-shadow: 0 22px 50px rgba(23, 37, 65, 0.12), 0 8px 24px rgba(254, 111, 87, 0.1);
}

/* Card Visual Header with Rounded Media */
.ndis-card-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.ndis-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.ndis-service-card:hover .ndis-card-img {
  transform: scale(1.08);
}

.ndis-card-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(23, 37, 65, 0.02) 0%, rgba(23, 37, 65, 0.3) 100%);
  pointer-events: none;
}

/* Floating Circular Badge on Image Lower Edge with Manuia Brand Green */
.ndis-icon-badge {
  position: absolute;
  top: 206px;
  left: 28px;
  width: 64px;
  height: 64px;
  background: var(--btn-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(124, 161, 141, 0.45);
  border: 4px solid #ffffff;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.ndis-service-card:hover .ndis-icon-badge {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(254, 111, 87, 0.45);
  background-color: var(--accent-coral);
}

.ndis-icon-svg {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.ndis-service-card:hover .ndis-icon-badge .ndis-icon-svg {
  transform: scale(1.08);
}

/* Card Body Content */
.ndis-card-body {
  position: relative;
  padding: 38px 32px 34px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.ndis-card-title {
  font-family: var(--heading-font);
  font-size: 24px;
  color: #172541;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
  transition: color 0.25s ease;
}

.ndis-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.ndis-title-link:hover,
.ndis-service-card:hover .ndis-title-link,
.ndis-service-card:hover .ndis-card-title {
  color: var(--accent-coral);
}

.ndis-card-text {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: #556277;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* Card Action Footer */
.ndis-card-footer {
  margin-top: auto;
  padding-top: 4px;
}

/* Read More Button with Brand Green, Pattern Weave & Coral Glow */
.btn-ndis-readmore {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 30px;
  border-radius: 40px;
  background-color: var(--btn-green);
  /* Brand green base + elegant micro-pattern */
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.18) 1.2px, transparent 1.2px),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.14) 1.5px, transparent 1.5px),
    linear-gradient(135deg, #7ca18d 0%, #688e7a 100%);
  background-size: 14px 14px, 18px 18px, 100% 100%;
  color: #ffffff;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(124, 161, 141, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

/* Animated Pattern Sheen on Button */
.btn-ndis-readmore::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.28),
      transparent);
  transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

/* Decorative corner geometric accent in button */
.btn-ndis-readmore::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.4s ease;
}

.btn-ndis-readmore .btn-text {
  position: relative;
  z-index: 3;
}

.btn-ndis-readmore .btn-arrow {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ndis-readmore:hover {
  background-color: var(--accent-coral);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.22) 1.2px, transparent 1.2px),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px),
    linear-gradient(135deg, #ff7e68 0%, var(--accent-coral) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(254, 111, 87, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ndis-readmore:hover::before {
  left: 100%;
}

.btn-ndis-readmore:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-ndis-readmore:hover::after {
  transform: scale(1.6);
}

/* ==========================================================
   4-Step Process Section
   ========================================================== */
.ndis-process-section {
  padding: 15px 0 85px 0;
  background: #fbfcfd;
  border-top: 1px solid #f0f3f6;
  border-bottom: 1px solid #f0f3f6;
}

.ndis-process-title {
  font-family: var(--heading-font);
  font-size: 42px;
  color: #172541;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
}

.process-step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 24px 28px 24px;
  border: 1px solid rgba(23, 37, 65, 0.06);
  box-shadow: 0 6px 20px rgba(23, 37, 65, 0.03);
  position: relative;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(23, 37, 65, 0.08);
}

.process-step-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 32px;
  font-family: var(--heading-font);
  color: rgba(23, 37, 65, 0.12);
  line-height: 1;
}

.process-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(124, 161, 141, 0.14);
  color: var(--btn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.process-step-card:hover .process-step-icon {
  background-color: var(--accent-coral);
  color: #ffffff;
}

.process-step-title {
  font-family: var(--heading-font);
  font-size: 20px;
  color: #172541;
  margin-bottom: 10px;
  font-weight: 400;
}

.process-step-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #556277;
  margin: 0;
}

@media (max-width: 991.98px) {

  .ndis-intro-title,
  .ndis-process-title {
    font-size: 36px;
  }
}

/* ==========================================================
   Contact Page Unique Styling
   ========================================================== */
.contact-intro-section {
  padding: 55px 0 35px 0;
  background: #ffffff;
}

.contact-subtitle-script {
  font-family: var(--signature-font);
  font-size: 34px;
  color: var(--accent-coral);
  margin-bottom: 12px;
  line-height: 1.2;
  display: inline-block;
  letter-spacing: 0.5px;
}

.contact-intro-title {
  font-family: var(--heading-font);
  font-size: 42px;
  color: #172541;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
}

.contact-intro-description {
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
  max-width: 820px;
  margin: 0 auto;
}

/* 4 Quick Info Cards */
.contact-cards-section {
  padding: 10px 0 60px 0;
  background: #ffffff;
}

.contact-feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 26px;
  text-align: center;
  border: 1px solid rgba(23, 37, 65, 0.08);
  box-shadow: 0 10px 28px rgba(23, 37, 65, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.contact-feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(254, 111, 87, 0.35);
  box-shadow: 0 20px 40px rgba(23, 37, 65, 0.09), 0 6px 20px rgba(254, 111, 87, 0.08);
}

.contact-feature-card .feature-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 161, 141, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(124, 161, 141, 0.12);
  color: var(--btn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: transform 0.35s ease, background-color 0.3s ease, color 0.3s ease;
}

.contact-feature-card:hover .contact-feature-icon {
  transform: scale(1.1);
  background-color: var(--accent-coral);
  color: #ffffff;
}

.contact-feature-title {
  font-family: var(--heading-font);
  font-size: 20px;
  color: #172541;
  margin-bottom: 10px;
  font-weight: 400;
}

.contact-feature-text {
  font-size: 14px;
  line-height: 1.6;
  color: #556277;
  margin-bottom: 16px;
  flex-grow: 1;
}

.contact-feature-link {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--btn-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.contact-feature-link.email-link {
  color: var(--accent-coral);
}

.contact-feature-link:hover {
  color: var(--accent-coral);
  transform: translateX(3px);
}

.contact-feature-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--btn-green);
  background: rgba(124, 161, 141, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
}

/* Main Form Section */
.contact-main-section {
  padding: 80px 0 90px 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, rgba(124, 161, 141, 0.05) 50%, #ffffff 100%);
}

.contact-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.035;
  background-image: radial-gradient(#172541 1.2px, transparent 1.2px), radial-gradient(#FE6F57 1.2px, #ffffff 1.2px);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
  pointer-events: none;
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px 40px;
  border: 1px solid rgba(23, 37, 65, 0.08);
  box-shadow: 0 16px 45px rgba(23, 37, 65, 0.06);
}

.contact-form-header {
  margin-bottom: 30px;
}

.form-badge {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-coral);
  background: rgba(254, 111, 87, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.form-title {
  font-family: var(--heading-font);
  font-size: 32px;
  color: #172541;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

/* ==========================================================
   WPForms Pro Integration Styling (Exact Match with Manuia Theme)
   ========================================================== */
.contact-wpforms-wrapper .wpforms-container {
  margin: 0 !important;
  padding: 0 !important;
}

.contact-wpforms-wrapper .wpforms-form {
  margin: 0 !important;
}

/* Two-column layout on desktop for Name, Phone, Email, Service */
.contact-wpforms-wrapper .wpforms-field-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}

#wpforms-48-field_1-container {
  grid-column: 1 / 2;
  margin: 0 !important;
  padding: 0 !important;
}

#wpforms-48-field_2-container {
  grid-column: 2 / 3;
  margin: 0 !important;
  padding: 0 !important;
}

#wpforms-48-field_3-container {
  grid-column: 1 / 2;
  margin: 0 !important;
  padding: 0 !important;
}

#wpforms-48-field_4-container {
  grid-column: 2 / 3;
  margin: 0 !important;
  padding: 0 !important;
}

#wpforms-48-field_5-container {
  grid-column: 1 / -1;
  margin: 0 !important;
  padding: 0 !important;
}

#wpforms-48-field_6-container {
  grid-column: 1 / -1;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 767.98px) {
  .contact-wpforms-wrapper .wpforms-field-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #wpforms-48-field_1-container,
  #wpforms-48-field_2-container,
  #wpforms-48-field_3-container,
  #wpforms-48-field_4-container {
    grid-column: 1 / -1;
  }
}

/* Field Labels */
.contact-wpforms-wrapper .wpforms-field-label,
.contact-wpforms-wrapper legend.wpforms-field-label {
  font-family: var(--body-font) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #172541 !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.contact-wpforms-wrapper .wpforms-required-label {
  color: var(--accent-coral) !important;
  font-weight: bold !important;
  margin-left: 2px !important;
}

/* Form Controls (Inputs, Selects, Textareas) with Dedicated Icons */
.contact-wpforms-wrapper .wpforms-field input[type="text"],
.contact-wpforms-wrapper .wpforms-field input[type="tel"],
.contact-wpforms-wrapper .wpforms-field input[type="email"],
.contact-wpforms-wrapper .wpforms-field select,
.contact-wpforms-wrapper .wpforms-field textarea {
  width: 100% !important;
  padding: 12px 18px 12px 46px !important;
  border-radius: 14px !important;
  border: 1.5px solid #e2e8f0 !important;
  font-size: 14.5px !important;
  color: #1e293b !important;
  background-color: #f8fafc !important;
  font-family: var(--body-font) !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  background-repeat: no-repeat !important;
}

/* Field 1: Name Icon (bi-person-fill: #94a3b8) */
.contact-wpforms-wrapper #wpforms-48-field_1-container input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6'/%3E%3C/svg%3E") !important;
  background-position: 16px center !important;
}

.contact-wpforms-wrapper #wpforms-48-field_1-container input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237ca18d' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6'/%3E%3C/svg%3E") !important;
}

/* Field 2: Phone Icon (bi-telephone-fill: #94a3b8) */
.contact-wpforms-wrapper #wpforms-48-field_2-container input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z'/%3E%3C/svg%3E") !important;
  background-position: 16px center !important;
}

.contact-wpforms-wrapper #wpforms-48-field_2-container input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237ca18d' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z'/%3E%3C/svg%3E") !important;
}

/* Field 3: Email Icon (bi-envelope-fill: #94a3b8) */
.contact-wpforms-wrapper #wpforms-48-field_3-container input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z'/%3E%3C/svg%3E") !important;
  background-position: 16px center !important;
}

.contact-wpforms-wrapper #wpforms-48-field_3-container input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237ca18d' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z'/%3E%3C/svg%3E") !important;
}

/* Field 4: Service Icon (bi-heart-pulse-fill: #94a3b8) */
.contact-wpforms-wrapper #wpforms-48-field_4-container select {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='m8 2.748-.717-.737C5.6.281 2.514.878 1.4 3.053.918 3.995.78 5.293 1.07 6.467c.36 1.455 1.258 2.784 2.54 3.957L8 14.5l4.39-4.076c1.282-1.173 2.18-2.502 2.54-3.957.29-1.174.152-2.472-.33-3.414C13.486.878 10.4.28 8.717 2.01zM8 4.25a.75.75 0 0 1 .71.512l.628 2.042.85-1.134a.75.75 0 0 1 1.256.126l.75 1.5a.75.75 0 1 1-1.341.67l-.377-.755-.956 1.275a.75.75 0 0 1-1.254-.112l-.634-2.062-.843 1.518a.75.75 0 0 1-1.32-.046l-.75-1.5a.75.75 0 1 1 1.342-.67l.377.754z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23475569' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
  background-position: 16px center, calc(100% - 16px) center !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  padding-right: 36px !important;
}

.contact-wpforms-wrapper #wpforms-48-field_4-container select:focus {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237ca18d' viewBox='0 0 16 16'%3E%3Cpath d='m8 2.748-.717-.737C5.6.281 2.514.878 1.4 3.053.918 3.995.78 5.293 1.07 6.467c.36 1.455 1.258 2.784 2.54 3.957L8 14.5l4.39-4.076c1.282-1.173 2.18-2.502 2.54-3.957.29-1.174.152-2.472-.33-3.414C13.486.878 10.4.28 8.717 2.01zM8 4.25a.75.75 0 0 1 .71.512l.628 2.042.85-1.134a.75.75 0 0 1 1.256.126l.75 1.5a.75.75 0 1 1-1.341.67l-.377-.755-.956 1.275a.75.75 0 0 1-1.254-.112l-.634-2.062-.843 1.518a.75.75 0 0 1-1.32-.046l-.75-1.5a.75.75 0 1 1 1.342-.67l.377.754z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237ca18d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
}

/* Field 6: Message Icon (bi-chat-dots-fill: #94a3b8) */
.contact-wpforms-wrapper #wpforms-48-field_6-container textarea {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M16 8c0 3.866-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.584.296-1.925.864-4.181 1.234-.2.032-.352-.176-.273-.362.354-.836.674-1.95.77-2.966C.744 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7M5 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0'/%3E%3C/svg%3E") !important;
  background-position: 16px 16px !important;
  min-height: 110px !important;
  resize: vertical !important;
}

.contact-wpforms-wrapper #wpforms-48-field_6-container textarea:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237ca18d' viewBox='0 0 16 16'%3E%3Cpath d='M16 8c0 3.866-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.584.296-1.925.864-4.181 1.234-.2.032-.352-.176-.273-.362.354-.836.674-1.95.77-2.966C.744 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7M5 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0'/%3E%3C/svg%3E") !important;
}

.contact-wpforms-wrapper .wpforms-field input:focus,
.contact-wpforms-wrapper .wpforms-field select:focus,
.contact-wpforms-wrapper .wpforms-field textarea:focus {
  border-color: var(--btn-green) !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(124, 161, 141, 0.15) !important;
  outline: none !important;
}

/* Radio Choice Pills (NDIS Participant Question) */
.contact-wpforms-wrapper .wpforms-field-radio fieldset {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.contact-wpforms-wrapper .wpforms-field-radio ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.contact-wpforms-wrapper .wpforms-field-radio li {
  margin: 0 !important;
  padding: 0 !important;
}

.contact-wpforms-wrapper .wpforms-field-radio input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

.contact-wpforms-wrapper .wpforms-field-radio label.wpforms-field-label-inline {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 20px !important;
  border-radius: 30px !important;
  border: 1.5px solid #e2e8f0 !important;
  background: #f8fafc !important;
  color: #475569 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  margin: 0 !important;
  transition: all 0.25s ease !important;
  user-select: none !important;
}

/* Base icon styling for pills */
.contact-wpforms-wrapper .wpforms-field-radio label.wpforms-field-label-inline::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

/* Choice 1: "Yes, NDIS Participant" -> Checkmark Circle (bi-check-circle-fill) */
.contact-wpforms-wrapper .wpforms-field-radio li.choice-1 label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237ca18d' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
}

/* Choice 2: "Applying for NDIS" -> Clock/Hourglass In-Progress (bi-hourglass-split) */
.contact-wpforms-wrapper .wpforms-field-radio li.choice-2 label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FE6F57' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 15a.5.5 0 1 1 0-1h1v-1a4.5 4.5 0 0 1 2.557-4.06c.29-.139.443-.377.443-.59v-.7c0-.213-.154-.451-.443-.59A4.5 4.5 0 0 1 3.5 4V3h-1a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1h-1v1a4.5 4.5 0 0 1-2.557 4.06c-.29.139-.443.377-.443.59v.7c0 .213.154.451.443.59A4.5 4.5 0 0 1 12.5 13v1h1a.5.5 0 0 1 0 1zm2-13v1c0 .537.12 1.045.337 1.5h6.326c.216-.455.337-.963.337-1.5V2zm3 6.45c.602.32 1 .92 1 1.55v3.5h-2V10c0-.63.398-1.23 1-1.55'/%3E%3C/svg%3E");
}

/* Choice 3: "Not Sure / Other" -> Question Circle (bi-question-circle-fill) */
.contact-wpforms-wrapper .wpforms-field-radio li.choice-3 label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.496 6.033h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286a.237.237 0 0 0 .241.247m2.325 6.443c.61 0 1.029-.394 1.029-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94 0 .533.425.927 1.01.927'/%3E%3C/svg%3E");
}

/* When Selected: Background Turns Brand Green, White Text & Pure White Icons */
.contact-wpforms-wrapper .wpforms-field-radio input[type="radio"]:checked+label.wpforms-field-label-inline {
  border-color: var(--btn-green) !important;
  background: var(--btn-green) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(124, 161, 141, 0.35) !important;
  transform: translateY(-1px);
}

.contact-wpforms-wrapper .wpforms-field-radio input[type="radio"]:checked+label.wpforms-field-label-inline::before {
  filter: brightness(0) invert(1) !important;
}

/* Submit Container & Button */
.contact-wpforms-wrapper .wpforms-submit-container {
  padding-top: 18px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.contact-wpforms-wrapper button.wpforms-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 14px 36px !important;
  border-radius: 40px !important;
  background: var(--btn-green) !important;
  color: #ffffff !important;
  border: none !important;
  font-family: var(--body-font) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 8px 24px rgba(124, 161, 141, 0.35) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  outline: none !important;
}

.contact-wpforms-wrapper button.wpforms-submit::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 3.178 4.995.002.002.26.41a.5.5 0 0 0 .886-.083zm-1.833 1.89L6.637 10.07l-.215-.136L3.25 7.97l9.88-6.394z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.contact-wpforms-wrapper button.wpforms-submit:hover {
  background: var(--accent-coral) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(254, 111, 87, 0.4) !important;
}

.contact-wpforms-wrapper button.wpforms-submit:hover::after {
  transform: translateX(4px);
}

.contact-wpforms-wrapper .wpforms-submit-container::after {
  content: "Your information is kept strictly private & confidential.";
  display: inline-block;
  font-size: 13px;
  color: #64748b;
  padding-left: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%23198754' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.134a.47.47 0 0 0 .198.05c.07 0 .14-.017.198-.05q.112-.049.293-.134c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625c-.28.132-.581.24-.829.24s-.548-.108-.829-.24a7 7 0 0 1-1.048-.625 11.8 11.8 0 0 1-2.517-2.453C1.928 10.487.545 7.169 1.141 2.692A1.54 1.54 0 0 1 2.185 1.43 63 63 0 0 1 5.072.56'/%3E%3Cpath d='M10.854 5.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 7.793l2.646-2.647a.5.5 0 0 1 .708 0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
}

/* Confirmation message styling */
.contact-wpforms-wrapper .wpforms-confirmation-container-full {
  background: rgba(124, 161, 141, 0.12) !important;
  border: 1.5px solid var(--btn-green) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  color: #172541 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

/* Error Labels */
.contact-wpforms-wrapper label.wpforms-error {
  color: #dc2626 !important;
  font-size: 12.5px !important;
  margin-top: 5px !important;
  font-weight: 500 !important;
  display: block !important;
}

.form-secure-note {
  font-size: 13px;
  color: #64748b;
}

/* Right Column: Side Highlights Card */
.contact-side-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 36px;
  border: 1px solid rgba(23, 37, 65, 0.08);
  box-shadow: 0 16px 45px rgba(23, 37, 65, 0.06);
  overflow: hidden;
}

.side-card-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--btn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(124, 161, 141, 0.4);
}

.side-card-flower {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.side-card-title {
  font-family: var(--heading-font);
  font-size: 26px;
  color: #172541;
  line-height: 1.3;
  margin-bottom: 14px;
}

.side-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #556277;
  margin-bottom: 28px;
}

.side-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.side-highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(254, 111, 87, 0.12);
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.side-highlight-item strong {
  font-size: 15px;
  color: #172541;
  display: block;
  margin-bottom: 4px;
}

.side-highlight-item p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Direct Phone Emergency Callout */
.contact-emergency-callout {
  background: var(--footer-bg);
  border-radius: 22px;
  padding: 24px 30px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 12px 30px rgba(23, 37, 65, 0.15);
}

.callout-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-coral);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.callout-content {
  display: flex;
  flex-direction: column;
}

.callout-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.callout-number {
  font-family: var(--heading-font);
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.25s ease;
}

.callout-number:hover {
  color: var(--accent-coral);
}

.callout-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* Map Section */
.contact-map-section {
  position: relative;
  background: #f8fafc;
  line-height: 0;
}

.map-card-container {
  position: relative;
}

.map-responsive-frame iframe {
  display: block;
  width: 100%;
  height: 480px;
  filter: saturate(1.1) contrast(1.05);
}

.map-floating-box {
  position: absolute;
  top: 40px;
  left: 60px;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 28px;
  max-width: 360px;
  z-index: 10;
  box-shadow: 0 16px 45px rgba(23, 37, 65, 0.14);
  border: 1px solid rgba(23, 37, 65, 0.08);
  line-height: normal;
}

.map-box-tag {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--btn-green);
  background: rgba(124, 161, 141, 0.12);
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.map-box-title {
  font-family: var(--heading-font);
  font-size: 20px;
  color: #172541;
  margin-bottom: 8px;
}

.map-box-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #556277;
  margin-bottom: 18px;
}

.btn-map-directions {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 30px;
  background: var(--accent-coral);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-map-directions:hover {
  background: #e85841;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(254, 111, 87, 0.35);
}

@media (max-width: 767.98px) {
  .contact-intro-title {
    font-size: 30px;
  }

  .contact-form-card {
    padding: 30px 20px;
  }

  .contact-side-card {
    padding: 30px 20px;
  }

  .map-responsive-frame iframe {
    height: 360px;
  }
}

/* ==========================================================
   Get In Touch Quick Enquiry Popup Modal
   ========================================================== */
.get-in-touch-modal .modal-dialog {
  max-width: 820px;
  margin: 1.75rem auto;
}

.get-in-touch-modal-content {
  border-radius: 28px !important;
  border: 1px solid rgba(23, 37, 65, 0.12) !important;
  box-shadow: 0 25px 60px rgba(23, 37, 65, 0.25) !important;
  overflow: hidden !important;
  position: relative !important;
  background: #ffffff !important;
}

/* Close Button */
.btn-close-modal {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 15px;
  z-index: 20;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-close-modal:hover {
  background: var(--accent-coral);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Left Brand Column (Desktop) */
.modal-left-brand {
  background: linear-gradient(165deg, var(--footer-bg) 0%, #1c2e50 100%);
  padding: 40px 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.modal-left-brand::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 161, 141, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.modal-brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--btn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(124, 161, 141, 0.4);
}

.modal-brand-flower {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.modal-brand-subtitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-coral);
  display: block;
  margin-bottom: 6px;
}

.modal-brand-heading {
  font-family: var(--heading-font);
  font-size: 24px;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 14px;
  font-weight: 400;
}

.modal-brand-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.modal-brand-bottom {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-call-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 4px;
}

.modal-call-link {
  font-family: var(--heading-font);
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  transition: color 0.25s ease;
}

.modal-call-link:hover {
  color: var(--accent-coral);
}

/* Right Form Body */
.modal-form-col {
  padding: 40px 38px;
  background: #ffffff;
}

.modal-form-header {
  margin-bottom: 22px;
  padding-right: 30px;
}

.modal-tag {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--btn-green);
  background: rgba(124, 161, 141, 0.12);
  padding: 4px 12px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 8px;
}

.modal-title {
  font-family: var(--heading-font);
  font-size: 28px;
  color: #172541;
  margin-bottom: 6px;
  font-weight: 400;
}

.modal-subtitle {
  font-size: 13.5px;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* Modal WPForms Wrapper & Inputs */
.modal-wpforms-wrapper .wpforms-container {
  margin: 0 !important;
  padding: 0 !important;
}

.modal-wpforms-wrapper .wpforms-form {
  margin: 0 !important;
}

.modal-wpforms-wrapper .wpforms-field-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.modal-wpforms-wrapper .wpforms-field {
  margin: 0 !important;
  padding: 0 !important;
}

.modal-wpforms-wrapper .wpforms-field-label {
  font-family: var(--body-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #172541 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.modal-wpforms-wrapper .wpforms-required-label {
  color: var(--accent-coral) !important;
  font-weight: bold !important;
}

.modal-wpforms-wrapper .wpforms-field input,
.modal-wpforms-wrapper .wpforms-field select,
.modal-wpforms-wrapper .wpforms-field textarea {
  width: 100% !important;
  padding: 10px 16px 10px 42px !important;
  border-radius: 12px !important;
  border: 1.5px solid #e2e8f0 !important;
  font-size: 14px !important;
  color: #1e293b !important;
  background-color: #f8fafc !important;
  font-family: var(--body-font) !important;
  transition: all 0.25s ease !important;
  background-repeat: no-repeat !important;
  box-sizing: border-box !important;
}

/* Icons for Modal Form (ID 52) */
/* Name */
.modal-wpforms-wrapper #wpforms-52-field_1-container input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6'/%3E%3C/svg%3E") !important;
  background-position: 14px center !important;
}

.modal-wpforms-wrapper #wpforms-52-field_1-container input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%237ca18d' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6'/%3E%3C/svg%3E") !important;
}

/* Phone */
.modal-wpforms-wrapper #wpforms-52-field_2-container input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z'/%3E%3C/svg%3E") !important;
  background-position: 14px center !important;
}

.modal-wpforms-wrapper #wpforms-52-field_2-container input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%237ca18d' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z'/%3E%3C/svg%3E") !important;
}

/* Email */
.modal-wpforms-wrapper #wpforms-52-field_3-container input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z'/%3E%3C/svg%3E") !important;
  background-position: 14px center !important;
}

.modal-wpforms-wrapper #wpforms-52-field_3-container input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%237ca18d' viewBox='0 0 16 16'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z'/%3E%3C/svg%3E") !important;
}

/* Service */
.modal-wpforms-wrapper #wpforms-52-field_4-container select {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='m8 2.748-.717-.737C5.6.281 2.514.878 1.4 3.053.918 3.995.78 5.293 1.07 6.467c.36 1.455 1.258 2.784 2.54 3.957L8 14.5l4.39-4.076c1.282-1.173 2.18-2.502 2.54-3.957.29-1.174.152-2.472-.33-3.414C13.486.878 10.4.28 8.717 2.01zM8 4.25a.75.75 0 0 1 .71.512l.628 2.042.85-1.134a.75.75 0 0 1 1.256.126l.75 1.5a.75.75 0 1 1-1.341.67l-.377-.755-.956 1.275a.75.75 0 0 1-1.254-.112l-.634-2.062-.843 1.518a.75.75 0 0 1-1.32-.046l-.75-1.5a.75.75 0 1 1 1.342-.67l.377.754z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23475569' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
  background-position: 14px center, calc(100% - 14px) center !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  padding-right: 34px !important;
}

/* Message */
.modal-wpforms-wrapper #wpforms-52-field_5-container textarea {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M16 8c0 3.866-3.582 7-8 7a9 9 0 0 1-2.347-.306c-.584.296-1.925.864-4.181 1.234-.2.032-.352-.176-.273-.362.354-.836.674-1.95.77-2.966C.744 11.37 0 9.76 0 8c0-3.866 3.582-7 8-7s8 3.134 8 7M5 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0'/%3E%3C/svg%3E") !important;
  background-position: 14px 14px !important;
  min-height: 80px !important;
  resize: vertical !important;
}

.modal-wpforms-wrapper .wpforms-field input:focus,
.modal-wpforms-wrapper .wpforms-field select:focus,
.modal-wpforms-wrapper .wpforms-field textarea:focus {
  border-color: var(--btn-green) !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(124, 161, 141, 0.15) !important;
  outline: none !important;
}

/* Modal Submit Button */
.modal-wpforms-wrapper .wpforms-submit-container {
  padding-top: 8px !important;
  margin: 0 !important;
}

.modal-wpforms-wrapper button.wpforms-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 13px 28px !important;
  border-radius: 40px !important;
  background: var(--btn-green) !important;
  color: #ffffff !important;
  border: none !important;
  font-family: var(--body-font) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 8px 24px rgba(124, 161, 141, 0.35) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  outline: none !important;
}

.modal-wpforms-wrapper button.wpforms-submit::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M15.964.686a.5.5 0 0 0-.65-.65L.767 5.855H.766l-.452.18a.5.5 0 0 0-.082.887l.41.26.001.002 4.995 3.178 3.178 4.995.002.002.26.41a.5.5 0 0 0 .886-.083zm-1.833 1.89L6.637 10.07l-.215-.136L3.25 7.97l9.88-6.394z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.modal-wpforms-wrapper button.wpforms-submit:hover {
  background: var(--accent-coral) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(254, 111, 87, 0.4) !important;
}

.modal-wpforms-wrapper button.wpforms-submit:hover::after {
  transform: translateX(4px);
}

.modal-wpforms-wrapper .wpforms-confirmation-container-full {
  background: rgba(124, 161, 141, 0.12) !important;
  border: 1.5px solid var(--btn-green) !important;
  border-radius: 14px !important;
  padding: 18px !important;
  color: #172541 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

@media (max-width: 991.98px) {
  .modal-form-col {
    padding: 34px 24px;
  }
}

/* ==========================================================
   Resources Page Styles (Clean & Simple)
   ========================================================== */
.simple-resources-section {
  padding: 85px 0 95px;
  background-color: #ffffff;
}

.resources-subtitle-script {
  font-family: var(--signature-font);
  font-size: 34px;
  color: var(--accent-coral);
  margin-bottom: 12px;
  line-height: 1.2;
  display: inline-block;
  letter-spacing: 0.5px;
}

.resources-intro-title {
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 700;
  color: #172541;
  line-height: 1.25;
}

.resources-intro-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  max-width: 780px;
  margin: 0 auto;
}

/* Simple Resource Cards */
.simple-resource-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 30px;
  border: 1px solid rgba(23, 37, 65, 0.08);
  box-shadow: 0 10px 30px rgba(23, 37, 65, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  align-items: center;
}

.simple-resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(23, 37, 65, 0.09);
  border-color: rgba(124, 161, 141, 0.35);
}

.src-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(124, 161, 141, 0.12);
  color: var(--btn-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.simple-resource-card:hover .src-icon {
  background: var(--btn-green);
  color: #ffffff;
  transform: scale(1.06);
}

.src-title {
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 700;
  color: #172541;
  margin-bottom: 12px;
}

.src-desc {
  font-size: 14.5px;
  color: #666666;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.src-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--btn-green);
  text-decoration: none;
  transition: all 0.25s ease;
}

.src-link:hover {
  color: var(--accent-coral);
  transform: translateX(3px);
}

/* Simple Resources Banner */
.simple-resources-banner {
  background: linear-gradient(135deg, #fbfdfc 0%, #f1f6f3 100%);
  border: 1.5px dashed rgba(124, 161, 141, 0.4);
  border-radius: 20px;
  padding: 44px 32px;
}

.srb-title {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  color: #172541;
  margin-bottom: 10px;
}

.srb-desc {
  font-size: 15px;
  color: #666666;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.simple-phone-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #172541;
  text-decoration: none;
  padding: 11px 22px;
  border: 1.5px solid rgba(23, 37, 65, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.simple-phone-link:hover {
  border-color: #172541;
  background-color: #172541;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .simple-resources-section {
    padding: 60px 0 70px;
  }

  .simple-resources-banner {
    padding: 30px 20px;
  }
}

/* ==========================================================
   Signature Handwriting Stroke & Reveal Animation
   ========================================================== */
.sig-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px) scale(0.92);
  filter: blur(2px);
  will-change: transform, opacity, filter;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.sig-space {
  display: inline-block;
  width: 0.32em;
}

/* Fallback visible state */
.sig-animated .sig-char,
.no-js .sig-char {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ==========================================================
   Splitting.js Smooth Title Typography & Typing Reveal
   ========================================================== */
.split-title {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.split-title .word {
  display: inline-block;
  white-space: nowrap;
}

.split-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  filter: blur(3px);
  will-change: transform, opacity, filter;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

/* When Splitting is active or animated */
.split-title.is-revealed .char,
.no-js .split-title .char {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* --- Split Lead Text (e.g. approach-lead-text word reveal) --- */
.split-lead-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.split-lead-text .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(3px);
  will-change: transform, opacity, filter;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
  margin-right: 0.28em;
}

.split-lead-text.is-revealed .word,
.no-js .split-lead-text .word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Accessibility: instant reveal if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

  .sig-char,
  .split-title .char,
  .split-lead-text .word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ==========================================================
   Our Approach Page Styles
   ========================================================== */
.approach-intro-section {
  padding: 85px 0 70px;
  background-color: #ffffff;
}

.approach-intro-title,
.approach-section-title {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 700;
  color: #172541;
  line-height: 1.25;
}

.approach-lead-text {
  font-size: 16.5px;
  line-height: 1.8;
  color: #374151;
  font-weight: 500;
  margin-bottom: 20px;
}

.approach-body-text {
  font-size: 16px;
  line-height: 1.82;
  color: #4b5563;
  margin-bottom: 0;
}

.approach-quote-box {
  background: linear-gradient(135deg, rgba(124, 161, 141, 0.1) 0%, rgba(254, 111, 87, 0.08) 100%);
  border-left: 4px solid var(--accent-coral);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.aq-icon {
  font-size: 28px;
  color: var(--accent-coral);
  line-height: 1;
}

.aq-quote {
  font-size: 15px;
  font-weight: 600;
  color: #172541;
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.6;
}

.approach-img-wrapper {
  position: relative;
  display: inline-block;
  max-width: 480px;
}

.approach-img {
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(23, 37, 65, 0.12));
}

/* Approach Pillars Section */
.approach-pillars-section {
  padding: 80px 0 85px;
  background-color: #f7f9f8;
}

.approach-pillar-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 38px 28px;
  border: 1px solid rgba(23, 37, 65, 0.08);
  box-shadow: 0 10px 30px rgba(23, 37, 65, 0.04);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(23, 37, 65, 0.09);
  border-color: rgba(124, 161, 141, 0.35);
}

.pillar-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  color: rgba(23, 37, 65, 0.15);
}

.pillar-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.pillar-icon-emerald {
  background: rgba(124, 161, 141, 0.15);
  color: var(--btn-green);
}

.pillar-icon-coral {
  background: rgba(254, 111, 87, 0.12);
  color: var(--accent-coral);
}

.pillar-icon-navy {
  background: rgba(23, 37, 65, 0.1);
  color: #172541;
}

.pillar-title {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: #172541;
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 14.5px;
  line-height: 1.68;
  color: #666666;
  margin-bottom: 0;
}

/* Approach Journey Section */
.approach-journey-section {
  padding: 85px 0;
  background-color: #ffffff;
}

.approach-cta-section {
  padding: 20px 0 90px;
  background-color: #ffffff;
}

@media (max-width: 991.98px) {

  .approach-intro-title,
  .approach-section-title {
    font-size: 34px;
  }

  .approach-img {
    max-height: 400px;
    margin-top: 20px;
  }
}

/* About Us Page Mission & Vision Cards */
.about-intro-title {
  font-family: var(--heading-font);
  font-size: 38px;
  line-height: 1.22;
  color: #172541;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-intro-lead {
  font-family: var(--body-font);
  font-size: 16.5px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 18px;
}

.about-mv-section {
  padding: 30px 0 60px;
}

.about-mv-card {
  background: #ffffff;
  border: 1px solid rgba(23, 37, 65, 0.08);
  border-radius: 24px;
  padding: 42px 38px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(23, 37, 65, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.about-mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(23, 37, 65, 0.1);
  border-color: rgba(124, 161, 141, 0.35);
}

.about-mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-coral), #ff9785);
}

.about-mv-card.card-vision::before {
  background: linear-gradient(90deg, var(--btn-green), #9ec4b0);
}

.about-mv-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.about-mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(254, 111, 87, 0.14) 0%, rgba(254, 111, 87, 0.05) 100%);
  color: var(--accent-coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(254, 111, 87, 0.15);
  transition: transform 0.3s ease;
}

.about-mv-card:hover .about-mv-icon {
  transform: scale(1.08) rotate(3deg);
}

.about-mv-card.card-vision .about-mv-icon {
  background: linear-gradient(135deg, rgba(124, 161, 141, 0.2) 0%, rgba(124, 161, 141, 0.08) 100%);
  color: var(--btn-green);
  box-shadow: 0 4px 14px rgba(124, 161, 141, 0.15);
}

.about-mv-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-coral);
  margin-bottom: 4px;
  display: block;
}

.about-mv-card.card-vision .about-mv-tag {
  color: var(--btn-green);
}

.about-mv-title {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: #172541;
  margin-bottom: 0;
  line-height: 1.2;
}

.about-mv-text {
  font-family: var(--body-font);
  font-size: 15.5px;
  line-height: 1.85;
  color: #4b5563;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (max-width: 991.98px) {
  .about-intro-title {
    font-size: 30px;
  }

  .about-mv-card {
    padding: 30px 24px;
  }

  .about-mv-title {
    font-size: 24px;
  }
}

/* ==========================================================
   Single Service Post Styles & Accent Coral Headings
   ========================================================== */
.single-service-content {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.85;
  color: #4b5563;
}

/* Requirement: In single-service page in content every h2 will be --accent-coral: #FE6F57 */
.single-service-content h2,
.single-service-body h2,
.single-service-article h2 {
  font-family: var(--heading-font) !important;
  color: var(--accent-coral) !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
  margin-top: 36px !important;
  margin-bottom: 18px !important;
  letter-spacing: -0.2px !important;
}

.single-service-content h3,
.single-service-body h3 {
  font-family: var(--heading-font);
  color: #172541;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 32px;
  margin-bottom: 16px;
}

.single-service-content p {
  margin-bottom: 20px;
}

.single-service-content ul {
  margin-bottom: 26px;
  padding-left: 20px;
}

.single-service-content ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Service FAQ Repeater Accordion Section */
.single-service-faq-section {
  border-top: 1px solid rgba(23, 37, 65, 0.08);
}

.faq-sub-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-coral);
  display: inline-block;
  margin-bottom: 6px;
}

.service-faq-title {
  font-family: var(--heading-font) !important;
  font-size: 30px !important;
  color: #172541 !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  margin-bottom: 0 !important;
}

.accordion-service-custom .accordion-item {
  border: 1px solid rgba(23, 37, 65, 0.09);
  border-radius: 16px !important;
  margin-bottom: 16px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(23, 37, 65, 0.03);
  transition: all 0.3s ease;
}

.accordion-service-custom .accordion-item:hover {
  border-color: rgba(124, 161, 141, 0.4);
  box-shadow: 0 8px 24px rgba(23, 37, 65, 0.06);
}

.accordion-service-custom .accordion-button {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  color: #172541;
  padding: 22px 26px;
  background-color: #ffffff;
  gap: 16px;
  box-shadow: none !important;
  transition: all 0.25s ease;
}

.accordion-service-custom .accordion-button:not(.collapsed) {
  background-color: #fbfdfc;
  color: var(--btn-green);
}

.accordion-service-custom .faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(254, 111, 87, 0.12);
  color: var(--accent-coral);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.accordion-service-custom .accordion-button:not(.collapsed) .faq-number {
  background: var(--btn-green);
  color: #ffffff;
}

.accordion-service-custom .faq-q-text {
  flex-grow: 1;
}

.accordion-service-custom .accordion-body {
  padding: 4px 28px 26px 76px;
  font-family: var(--body-font);
  font-size: 15.5px;
  line-height: 1.8;
  color: #555555;
}

.accordion-service-custom .faq-answer-content p:last-child {
  margin-bottom: 0;
}

/* Service Detail In-Article CTA Card */
.service-cta-card {
  background: linear-gradient(135deg, rgba(124, 161, 141, 0.12) 0%, rgba(254, 111, 87, 0.08) 100%);
  border: 1.5px solid rgba(124, 161, 141, 0.3);
}

.service-cta-title {
  font-family: var(--heading-font);
  color: #172541;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-cta-desc {
  font-family: var(--body-font);
  color: #556277;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 767.98px) {

  .single-service-content h2,
  .single-service-body h2,
  .single-service-article h2 {
    font-size: 26px !important;
  }

  .accordion-service-custom .accordion-button {
    padding: 18px 18px;
    font-size: 16px;
  }

  .accordion-service-custom .accordion-body {
    padding: 4px 18px 20px 18px;
  }
}

/* ==========================================================
   Single Service Sticky Sidebar
   ========================================================== */
.single-service-main {
  overflow: visible !important;
}

.single-service-main .container,
.single-service-main .row {
  overflow: visible !important;
}

@media (min-width: 992px) {
  .single-service-main .row {
    display: flex !important;
    align-items: flex-start !important;
  }

  .single-service-sidebar-col {
    position: relative !important;
    overflow: visible !important;
    align-self: stretch !important;
  }

  .single-service-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 110px !important;
    z-index: 10 !important;
    align-self: flex-start !important;
    will-change: transform, top;
  }
}

.sidebar-widget {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(23, 37, 65, 0.08) !important;
}

/* ==========================================================
   Gallery Page
   ========================================================== */
.gallery-section {
  padding: 80px 0 90px;
  background: #ffffff;
}

/* --- Section Header --- */
.gallery-subtitle-script {
  font-family: var(--signature-font);
  font-size: 38px;
  color: var(--accent-coral);
  margin-bottom: 6px;
  line-height: 1.1;
}

.gallery-section-title {
  font-family: var(--heading-font);
  font-size: 38px;
  color: var(--footer-bg);
  margin-bottom: 8px;
  line-height: 1.22;
}

.gallery-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.gallery-divider::before,
.gallery-divider::after {
  content: '';
  width: 60px;
  height: 1.5px;
  background: var(--accent-coral);
  opacity: .45;
}

.gallery-divider-icon {
  color: var(--accent-coral);
  font-size: 13px;
}

.gallery-section-desc {
  font-family: var(--body-font);
  font-size: 16.5px;
  color: #5a6a7a;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* --- Filter Tabs --- */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  font-family: var(--body-font);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--accent-coral);
  background: transparent;
  color: var(--accent-coral);
  padding: 10px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--accent-coral);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(254, 111, 87, 0.3);
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
}

.gallery-item.hidden {
  display: none;
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

.gallery-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: #f0f2f5;
}

.gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item-inner:hover img {
  transform: scale(1.08);
}

/* --- Overlay --- */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 37, 65, 0) 30%, rgba(23, 37, 65, 0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item-inner:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay-content {
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.gallery-item-inner:hover .gallery-item-overlay-content {
  transform: translateY(0);
}

.gallery-item-category {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.gallery-item-caption {
  font-family: var(--heading-font);
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.gallery-lightbox-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-6px);
}

.gallery-item-inner:hover .gallery-lightbox-btn {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox-btn:hover {
  background: var(--accent-coral);
  border-color: var(--accent-coral);
}

/* --- Video Play Button --- */
.gallery-video-item .gallery-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(254, 111, 87, 0.9);
  color: #ffffff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.35s ease;
  box-shadow: 0 6px 24px rgba(254, 111, 87, 0.4);
  pointer-events: none;
}

.gallery-video-item:hover .gallery-video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 8px 32px rgba(254, 111, 87, 0.55);
}

/* --- Lightbox --- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  outline: none;
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-lightbox-close:hover {
  background: var(--accent-coral);
  border-color: var(--accent-coral);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-lightbox-prev {
  left: 24px;
}

.gallery-lightbox-next {
  right: 24px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: var(--accent-coral);
  border-color: var(--accent-coral);
}

/* --- Gallery Responsive --- */
@media (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-section {
    padding: 60px 0 70px;
  }

  .gallery-section-title {
    font-size: 32px;
  }

  .gallery-subtitle-script {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-section {
    padding: 45px 0 55px;
  }

  .gallery-section-title {
    font-size: 26px;
  }

  .gallery-subtitle-script {
    font-size: 28px;
  }

  .gallery-filter-btn {
    padding: 8px 20px;
    font-size: 13px;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .gallery-lightbox-prev {
    left: 12px;
  }

  .gallery-lightbox-next {
    right: 12px;
  }
}

/* ==========================================================
   Privacy & Security Disclaimer Page
   ========================================================== */
.privacy-section {
  padding: 80px 0 90px;
  background: #ffffff;
}

.privacy-content-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

/* Intro */
.privacy-intro {
  background: linear-gradient(135deg, rgba(254, 111, 87, 0.06) 0%, rgba(124, 161, 141, 0.06) 100%);
  border-left: 4px solid var(--accent-coral);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-bottom: 42px;
}

.privacy-intro p {
  font-family: var(--body-font);
  font-size: 17px;
  color: #3a4a5c;
  line-height: 1.8;
  margin: 0;
}

/* Content Blocks */
.privacy-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(23, 37, 65, 0.08);
}

.privacy-block:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.privacy-block-title {
  font-family: var(--heading-font);
  font-size: 24px;
  color: var(--footer-bg);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.3;
}

.privacy-block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(254, 111, 87, 0.1) 0%, rgba(254, 111, 87, 0.05) 100%);
  color: var(--accent-coral);
  font-size: 20px;
}

.privacy-block p {
  font-family: var(--body-font);
  font-size: 16px;
  color: #5a6a7a;
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

/* Last Updated */
.privacy-last-updated {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 2px solid rgba(254, 111, 87, 0.15);
}

.privacy-last-updated p {
  font-family: var(--body-font);
  font-size: 14.5px;
  color: #7a8a9a;
  margin: 0;
}

.privacy-last-updated strong {
  color: var(--footer-bg);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 767.98px) {
  .privacy-section {
    padding: 50px 0 60px;
  }

  .privacy-intro {
    padding: 22px 20px;
  }

  .privacy-block-title {
    font-size: 20px;
    gap: 10px;
  }

  .privacy-block-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 17px;
    border-radius: 10px;
  }
}



.contact-value-email {
  font-size: 14.5px !important;
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  letter-spacing: -0.2px;
}

/* ==========================================================
   PREMIUM ANIMATION ENGINE — CSS Support
   ========================================================== */

/* --- Scroll Progress Indicator --- */
.manuia-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-coral), #ff9b8a, var(--accent-coral));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 999999;
  pointer-events: none;
  will-change: transform;
}

/* --- Enhanced Card Hover Effects --- */
.ndis-service-card,
.approach-pillar-card,
.process-step-card,
.contact-info-card,
.about-mv-card {
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.ndis-service-card:hover {
  box-shadow: 0 20px 50px rgba(254, 111, 87, 0.15), 0 8px 24px rgba(23, 37, 65, 0.08);
}

.approach-pillar-card:hover {
  box-shadow: 0 18px 44px rgba(254, 111, 87, 0.12), 0 6px 20px rgba(23, 37, 65, 0.06);
}

.process-step-card:hover {
  box-shadow: 0 16px 40px rgba(254, 111, 87, 0.12), 0 6px 18px rgba(23, 37, 65, 0.06);
}

.contact-info-card:hover {
  box-shadow: 0 16px 40px rgba(254, 111, 87, 0.12), 0 6px 18px rgba(23, 37, 65, 0.06);
}

.about-mv-card:hover {
  box-shadow: 0 20px 48px rgba(254, 111, 87, 0.12), 0 8px 22px rgba(23, 37, 65, 0.06);
}

/* --- Image Shimmer/Shine on Hover --- */
.who-we-are-img-wrapper,
.why-choose-img-wrapper,
.approach-img-wrapper,
.ndis-card-media {
  position: relative;
  overflow: hidden;
}

.who-we-are-img-wrapper::after,
.why-choose-img-wrapper::after,
.approach-img-wrapper::after,
.ndis-card-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: none;
  z-index: 2;
}

.who-we-are-img-wrapper:hover::after,
.why-choose-img-wrapper:hover::after,
.approach-img-wrapper:hover::after,
.ndis-card-media:hover::after {
  animation: shimmerSlide 0.8s ease-out forwards;
}

@keyframes shimmerSlide {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* --- CTA Button Glow Pulse --- */
.btn-hero-cta,
.btn-cta {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero-cta::before,
.btn-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, rgba(254, 111, 87, 0.4), rgba(255, 155, 138, 0.4), rgba(254, 111, 87, 0.4));
  border-radius: inherit;
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.btn-hero-cta:hover::before,
.btn-cta:hover::before {
  opacity: 1;
}

.btn-hero-cta:hover,
.btn-cta:hover {
  box-shadow: 0 8px 30px rgba(254, 111, 87, 0.35);
}

/* --- Gallery Image Enhanced Zoom on Hover --- */
.gallery-item-inner {
  transition: box-shadow 0.4s ease;
}

.gallery-item-inner:hover {
  box-shadow: 0 14px 36px rgba(23, 37, 65, 0.14);
}

/* --- Inner Page Banner Enhanced --- */
.page-banner-bg {
  transition: transform 0.1s linear;
  will-change: transform;
}

.page-banner-title {
  will-change: transform, opacity, clip-path;
}

.page-banner-curve-img {
  will-change: transform, opacity;
}

/* --- Feature Item Hover Line --- */
.feature-item {
  position: relative;
  transition: transform 0.3s ease, padding-left 0.3s ease;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--accent-coral);
  border-radius: 3px;
  transform: translateY(-50%);
  transition: height 0.35s ease;
}

.feature-item:hover::before {
  height: 60%;
}

.feature-item:hover {
  padding-left: 8px;
}

/* --- Service Card Link Arrow Spin --- */
.service-card-link .link-arrow-circle {
  transition: transform 0.35s ease, background 0.35s ease;
}

.service-card-link:hover .link-arrow-circle {
  transform: rotate(45deg) scale(1.1);
  background: var(--accent-coral);
  color: #fff;
}

/* --- NDIS Read More Button Arrow Slide --- */
.btn-ndis-readmore .btn-arrow {
  transition: transform 0.3s ease;
}

.btn-ndis-readmore:hover .btn-arrow {
  transform: translateX(5px);
}

/* --- Testimonial Card Lift --- */
.testimonial-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(23, 37, 65, 0.1);
}

/* --- Footer Link Hover Shift --- */
.footer-links-list a {
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-links-list a:hover {
  transform: translateX(4px);
}

/* --- Privacy Block Hover Accent --- */
.privacy-block {
  transition: border-color 0.35s ease, padding-left 0.35s ease;
}

.privacy-block:hover {
  border-bottom-color: rgba(254, 111, 87, 0.2);
  padding-left: 6px;
}

/* --- Pillar/Process Number Glow --- */
.pillar-number,
.process-step-num {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.approach-pillar-card:hover .pillar-number,
.process-step-card:hover .process-step-num {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(254, 111, 87, 0.25);
}

/* --- Pillar/Process Icon Bounce --- */
.pillar-icon,
.process-step-icon {
  transition: transform 0.4s ease;
}

.approach-pillar-card:hover .pillar-icon,
.process-step-card:hover .process-step-icon {
  transform: translateY(-3px);
}

/* --- Value Card Hover Glow --- */
.value-col {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(254, 111, 87, 0.1);
}

/* --- Contact Info Card Icon Pulse --- */
.contact-info-card:hover .contact-card-icon {
  animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

/* --- Smooth Scroll Utility (already set) — reinforce --- */
html {
  scroll-behavior: smooth;
}

/* ==========================================================
   ENHANCED IMAGE EFFECTS — CSS Support
   ========================================================== */


/* --- CTA Background Zoom --- */
.cta-bg img {
  will-change: transform;
  transform-origin: center center;
}

/* --- Stacked Avatar Pop --- */
.stacked-avatar {
  will-change: transform;
}

/* --- NDIS Icon Badge Pop --- */
.ndis-icon-badge {
  will-change: transform;
}

/* --- Reduce motion support --- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .manuia-scroll-progress,
  .hero-floating-particle {
    display: none !important;
  }
}