:root {
  --primary: #761984;
  --primary-dark: #e80e8a;
  --navy: #1b2456;
  --text: #5b627c;
  --muted: #7f88a2;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(24, 37, 68, 0.14);
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  white-space: normal;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Poppins", sans-serif;
  color: var(--navy);
  margin: 0 0 12px;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.6rem, 3.6vw, 3.6rem);
  line-height: 1.4;
}
h2 {
  font-size: clamp(1.3rem, 2.3vw, 2.0rem);
  line-height: 1.4;
}


p {
  margin: 0 0 16px;
  overflow-wrap: break-word;
}

section {
  position: relative;
}

.section {
  padding: 90px 0;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #e34c92;
  font-weight: 700;
  font-size: 0.75rem;
  margin: 0 0 12px;
  text-align: center;
}

.eyebrow.left {
  text-align: left;
}

.lead {
  color: var(--muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.btn {
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(176, 1, 86, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.btn span {
  font-size: 1.1rem;
}

.btn.primary {
  background: linear-gradient(135deg, #d31180 0%, #b00156 60%, #6b0fb6 100%);
  color: #fff;
}

.btn.inquire {
  background: linear-gradient(135deg, #f05aa6, #b00156);
  color: #fff;
  padding: 12px 24px;
  box-shadow: 0 16px 24px rgba(176, 1, 86, 0.18);
}

.btn.ghost {
  background: #fff;
  color: var(--primary);
  border: 2px solid #f2b0d0;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  color: #fff;
  padding: 60px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(123, 41, 118, 0.78) 0%, rgba(165, 78, 158, 0.56) 46%, rgba(255, 255, 255, 0.08) 75%);
  z-index: 1;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #1d0f25;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slider .slide.is-active {
  opacity: 1;
}

.hero-slider .slider-dots {
  position: absolute;
  right: 6vw;
  bottom: 40px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
}

.dot.is-active {
  background: #fff;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 36px;
}

.hero-content > *,
.why-grid > *,
.benefit-card > *,
.journey > *,
.row > *,
.steps-grid > *,
.faq-grid > * {
  min-width: 0;
}

.hero-left {
  margin-top: 40px;
}
.hero-left h1 {
  color: #fff;
}

.hero-left .accent {
  color: #ffd3e8;
}

.brand-logo {
  width: 140px;
  height: auto;
  margin-bottom: 0;
}

.hero-header {
  position: relative;
  z-index: 3;
}

.hero-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-divider {
  position: relative;
  z-index: 2;
  height: 1px;
  width: 100vw;
  margin: 40px 0 40px;
  background: rgb(255 255 255 / 12%);
  left: 50%;
  transform: translateX(-50%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.stat-card {
  transform-style: preserve-3d;
  transform: perspective(1000px);
  text-align: center;
  min-width: 0;
  height: auto;
  padding: 16px 12px;
  margin: 0;
  background: #fff;
  border-radius: 5px 21px;
  box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, 0.059),
    0 8.2px 8.9px -30px rgba(0, 0, 0, 0.071),
    0 25px 40px -30px rgba(0, 0, 0, 0.2);
  border: 3px solid #f3c5e0;
}

.stat-card strong {
  font-size: 2.5rem;
  color: #111;
}

.stat-card span {
  display: block;
  color: var(--muted);
}

.stat-card.pink {
  border-color: #f04a9b;
}

.stat-card.purple {
  border-color: #6f2b8c;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.call {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 600;
}

.call span {
  display: block;
}

.call strong {
  font-size: 1.1rem;
}

.whatsapp-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.whatsapp-icon .fa-comment {
  color: #2dbd5f;
  font-size: 2.5rem;
}

.whatsapp-icon .fa-phone {
  position: absolute;
  color: #fff;
  font-size: 1.3rem;
  top: 44%;
  left: 44%;
  transform: translate(-50%, -50%);
}

.benefits {
  background: linear-gradient(180deg, #eaf6ff 0%, #fff5e6 100%);
  text-align: center;
}

.benefits h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e6eef9;
  padding: 24px 22px;
  text-align: left;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  box-shadow: 0 18px 30px rgba(24, 37, 68, 0.08);
}

.benefit-card h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.benefit-card p {
  margin: 0;
  color: #7a83a2;
  font-size: 0.95rem;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.journey {
  /* margin-top: 46px; */
  padding: 35px 50px 0px 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.journey h3 {
  margin: 0;
  text-align: center;
  font-size: 2rem;
}

.google-card {
  background: transparent;
  border: 1px solid #e3d1d1;
  border-radius: 12px;
  padding: 20px 25px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 20px rgba(24, 37, 68, 0.08);
}

.google-card img {
  width: 70px;
  height: 70px;
}

.google-meta img{
  width: 100px;
  height: auto;
}

.google-meta {
  display: grid;
  gap: 4px;
  padding-left: 20px;
}

.stars-img {
  width: 110px;
  height: auto;
}

.google-score {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--navy);
  font-weight: 600;
}
.google-score strong {
  font-size: 1.8rem;
  color: var(--muted);
}
.google-score span {
  font-size: 0.5rem;
  color: var(--muted);
  font-weight: 600;
}

.why-choos-lg {
  position: relative;
}

.why-choos-lg::before {
  content: "";
  background: url(../images/shape/dot_bg.png);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.pad-tb {
  padding-top: 100px;
  padding-bottom: 100px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}

.col-lg-6 {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-lg-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.common-heading {
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.common-heading h2 {
  margin-bottom: 60px;
  color: var(--primary);
}

.common-heading > span {
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #e60072;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 15px;
  display: block;
  line-height: 26px;
}

.common-heading.text-l > p {
  margin-top: 10px;
}

.text-l {
  text-align: left !important;
}

.v-center {
  align-self: center;
  align-items: center;
}

.mb20 {
  margin-bottom: 20px;
}

.img-design {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.imgac {
  position: relative;
}

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

.ag-dg1 {
  min-width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 8px 8px 8px 100px;
  top: 0;
  left: 30px;
}

.ag-dg2 {
  min-width: 100%;
  position: relative;
  z-index: 0;
  border-radius: 8px 8px 100px;
  bottom: 0;
  right: 30px;
}

.shpdzz {
  position: absolute;
}

.shpdez1 {
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 100px 100px 00px;
  left: 0;
  bottom: 0;
}

.shpdez2 {
  width: 140px;
  height: 140px;
  background: #00BCD4;
  border-radius: 00px 100px 100px;
  left: 0;
  top: 0;
  z-index: 5;
}

.shpdez3 {
  width: 40px;
  height: 40px;
  background: #4caf50;
  border-radius: 100px 0 100px 100px;
  left: 160px;
  top: 0;
}

.shpdez4 {
  width: 140px;
  height: 80px;
  background: var(--primary-dark);
  left: 130px;
  bottom: 0;
  z-index: 5;
  border-radius: 100px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.itm-media-object h4 {
  text-align: left;
  margin-bottom: 10px;
}

.media {
  display: flex;
}

.media div:first-child {
  flex-shrink: 0;
}

.media + .media {
  margin-top: 20px;
}

.itm-media-object .media .img-ab- {
  background: #f5f5f5;
  border-radius: 8px;
  width: 65px;
  padding: 10px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itm-media-object .media img {
  width: 100%;
}

.itm-media-object .media-body {
  margin-left: 30px;
}

.media-body h4 {
  margin: 0 0 6px;
  color: #1b2456;
}

.media-body p {
  margin: 0;
  color: #7a83a2;
}

.niwax-company-awards-cover {
  background: #f0f7ff;
  padding: 20px 0;
}

.niwax-company-awards-cover .row {
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
}

.niwax-company-awards-cover .col-lg-3 {
  flex: 0 0 240px;
  max-width: 240px;
}

.niwax-company-awards-cover .col-lg-9 {
  flex: 1 1 auto;
  max-width: none;
  min-width: 0;
}

.companytime {
  background: var(--primary);
  padding: 14px;
  border-radius: 10px 50px;
  text-align: center;
}

.companytime p {
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  margin: 0;
}

.companytime p span {
  font-weight: 500;
  display: block;
  font-size: 20px;
  line-height: 26px;
  border-top: 1px solid #d9d9d9;
  padding: 14px 0 0;
  margin: 14px 0 0;
}

.companyawards {
  overflow: hidden;
}

.niwax-logo-slider {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.owl-item {
  flex: 0 0 auto;
}

.industry-workfors {
  text-align: center;
}

.industry-workfors img {
  height: 45px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: 0.85;
}

.industry-workfors h6 { display: none; }

.testimonials-new {
  text-align: center;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial-slider .slide.is-active {
  opacity: 1;
  position: relative;
}

.testimonial-card {
  max-width: 100%;
  min-height: 300px;
  margin: 40px auto 12px;
  background: linear-gradient(135deg, #d43a8f 0%, #7b2a8c 100%);
  color: #fff;
  padding: 36px 48px 30px;
  border-radius: 12px;
  box-shadow: 0 24px 40px rgba(123, 42, 140, 0.2);
  text-align: left;
}

.quote-mark {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.9;
}

.testimonial-card p {
  margin: 0 0 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.testimonial-footer .avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-meta {
  display: grid;
  gap: 2px;
}

.author-meta strong {
  color: #fff;
}

.author-meta span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.author-meta .stars-img {
  width: 90px;
  height: auto;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #d94b9c;
  opacity: 0.6;
  background: transparent;
  cursor: pointer;
}

.testimonial-dots .dot.is-active {
  background: #d94b9c;
  opacity: 1;
}

.steps-new {
  background: linear-gradient(180deg, #eaf6ff 0%, #fff5e6 100%);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
  justify-items: center;
  justify-content: center;
}

.steps-grid .step-pill:nth-child(1) { grid-column: 1 / span 2; }
.steps-grid .step-pill:nth-child(2) { grid-column: 3 / span 2; }
.steps-grid .step-pill:nth-child(3) { grid-column: 5 / span 2; }
.steps-grid .step-pill:nth-child(4) { grid-column: 2 / span 2; }
.steps-grid .step-pill:nth-child(5) { grid-column: 4 / span 2; }

.faq-new {
  text-align: center;
}

.faq-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.faq-new details {
  background: #f8fbff;
  border: 2px solid #e7c5e2;
  border-radius: 10px;
  padding: 16px 18px;
  text-align: left;
  box-shadow: 0 10px 20px rgba(24, 37, 68, 0.05);
}

.faq-new details[open] {
  border-color: #d98ecb;
}

.faq-new summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: #1b2456;
}

.faq-new summary::-webkit-details-marker { display: none; }

.faq-arrow {
  color: #761984;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.faq-new details[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-new details[open] .q-text{
  color: var(--primary-dark);
}

.faq-new .q {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d43a8f;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
}

.faq-new .q-text {
  color: #1b2456;
}

.faq-new details p {
  margin: 12px 0 0;
  color: #7a83a2;
  line-height: 1.6;
}

.licensed-strip {
  background: #eef6ff;
  padding: 22px 0;
}

.licensed-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.licensed-title {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #111;
  font-weight: 800;
  text-align: center;
}

.licensed-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.licensed-logos div {
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  font-size: 0.75rem;
  color: #7a83a2;
}

.licensed-logos img {
  height: 42px;
  width: auto;
  /* filter: grayscale(1); */
  opacity: 0.85;
}

.footer {
  background: #1b1b1b;
  color: #9fa4ad;
  padding: 40px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-socials {
  display: flex;
  gap: 18px;
  color: #b7b7b7;
  font-size: 1rem;
}

.footer-text {
  color: #9fa4ad;
}

.step-pill {
  background: #fff;
  border-radius: 999px;
  padding: 18px 28px 18px 52px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: 0 18px 30px rgba(24, 37, 68, 0.08);
  border: 1px solid #d9e7ff;
  max-width: 420px;
  min-height: 115px;
  width: 100%;
  text-align: left;
  position: relative;
  overflow: visible;
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.step-icon-img {
  width: 36px;
  height: 36px;
}

.step-pill strong {
  color: #1b2456;
}

.start-quote {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.start-quote p {
  font-size: 1.7rem;
  margin: 0;
  color: #1b2456;
}

.start-quote p span {
  color: #1b2456;
  font-weight: 700;
}


.hero-left p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
}

.hero-highlight {
  color: #ffd5ef;
  font-weight: 600;
  font-size: 1.05rem;
}

.fine-print {
  font-size: 0.7rem;
  opacity: 0.7;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow);
  color: var(--navy);
  position: relative;
  border: 1px solid #eef0f8;
  backdrop-filter: blur(6px);
  max-width: 470px;
  min-height: 470px;
  margin-left: auto;
}

.hero-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.action-call {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #d31180, #7a1ac0);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 16px 24px rgba(26, 36, 74, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-chat {
  height: 48px;
  border-radius: 999px;
  border: 1px solid #1b2456;
  background: #fff;
  color: #1b2456;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 16px 24px rgba(26, 36, 74, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-chat i {
  font-size: 1.2rem;
}

.action-call:hover,
.action-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(26, 36, 74, 0.18);
}

.quote-form input:not([type="submit"]) {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e4e6f2;
  padding: 20px 0px;
  margin-bottom: 15px;
  font-family: inherit;
  background: transparent;
}

.quote-form input:not([type="submit"]):focus {
  outline: none;
  border-bottom-color: var(--primary);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9aa3b8;
}

.quote-form p {
  margin: 0;
}

.quote-form .wpcf7-form-control-wrap {
  display: block;
}

.quote-form input:not([type="submit"]),
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e4e6f2;
  padding: 20px 0;
  margin-bottom: 15px;
  font-family: inherit;
  background: transparent;
  color: var(--navy);
}

.quote-form select {
  color: #9aa3b8;
}

.quote-form textarea {
  min-height: 90px;
  resize: vertical;
}

.quote-form input:not([type="submit"]):focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
}

.quote-form .wpcf7-submit {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d31180 0%, #b00156 60%, #6b0fb6 100%);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  min-width: 140px;
  padding: 12px 24px;
  box-shadow: 0 16px 30px rgba(176, 1, 86, 0.25);
  display: block;
  margin: 8px auto 0;
}

.quote-form .wpcf7-spinner {
  margin: 0 0 0 10px;
}

.quote-form .wpcf7-not-valid-tip {
  color: #b00156;
  font-size: 0.82rem;
  margin-top: -10px;
  margin-bottom: 10px;
}

.quote-form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.9rem;
}

.cf7-missing {
  color: var(--navy);
  font-weight: 600;
}

.quote-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  align-items: center;
  justify-content: center;
}

.hero-card .btn {
  padding: 12px 24px;
  min-width: 140px;
  justify-content: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-card {
    width: 100%;
    margin: 0 auto;
  }
  .quote-form .grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    margin-top: 24px;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journey {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .journey h3 {
    text-align: center;
  }
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-lg-3,
  .col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid .step-pill {
    grid-column: auto !important;
    padding-left: 64px;
  }
  .step-num {
    left: 18px;
    transform: translateY(-50%);
  }
  .niwax-company-awards-cover .row {
    flex-wrap: wrap;
  }
  .niwax-company-awards-cover .col-lg-3,
  .niwax-company-awards-cover .col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .companytime {
    width: 100%;
  }
  .niwax-logo-slider {
    justify-content: center;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 28px 0 56px;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(89, 20, 99, 0.86) 0%, rgba(133, 47, 128, 0.74) 58%, rgba(89, 20, 99, 0.58) 100%);
  }
  .hero-slider .slide {
    background-position: 58% top;
  }
  .hero-content {
    margin-top: 0;
  }
  .hero-left {
    margin-top: 0;
  }
  .hero-left h1 {
    font-size: 2.1rem;
    line-height: 1.22;
  }
  .hero-left p {
    max-width: none;
  }
  .hero-card {
    position: relative;
    justify-self: stretch;
    max-width: 100%;
    padding: 24px 20px;
    min-height: 0;
    border-radius: 18px;
  }
  .hero-actions {
    position: static;
    justify-content: center;
    margin: 0 auto 0;
  }
  .section {
    padding: 70px 0;
  }
  .container {
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
  .hero-header-inner {
    flex-direction: column;
    gap: 14px;
  }
  .brand-logo {
    width: 124px;
  }
  .hero-divider {
    margin: 18px 0 28px;
  }
  h2,
  .benefits h2 {
    font-size: 1.75rem;
  }
  .btn {
    justify-content: center;
    max-width: 100%;
    padding: 13px 20px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 20px 18px;
  }
  .benefit-icon {
    width: 46px;
    height: 46px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat-card strong {
    font-size: 2rem;
  }
  .journey {
    padding: 28px 0 0;
    gap: 18px;
  }
  .journey h3 {
    font-size: 1.6rem;
  }
  .google-card {
    width: 100%;
    padding: 16px;
  }
  .pad-tb {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .img-design {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
  .ag-dg1,
  .ag-dg2 {
    left: auto;
    right: auto;
    min-width: 0;
  }
  .shpdzz {
    display: none;
  }
  .media {
    gap: 16px;
  }
  .itm-media-object .media-body {
    margin-left: 0;
  }
  .niwax-logo-slider {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .owl-item {
    min-width: 0;
  }
  .industry-workfors img {
    height: 38px;
    max-width: 130px;
  }
  .testimonial-card {
    padding: 28px 22px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .steps-grid .step-pill {
    grid-column: auto !important;
    border-radius: 18px;
    min-height: 0;
    padding: 18px 18px 18px 64px;
  }
  .step-icon-img {
    width: 32px;
    height: 32px;
  }
  .start-quote p {
    font-size: 1.35rem;
    text-align: center;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-new summary {
    grid-template-columns: auto 1fr;
  }
  .faq-arrow {
    display: none;
  }
  .licensed-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }
  .licensed-title {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.35;
    letter-spacing: 0.06em;
  }
  .licensed-logos {
    width: 100%;
    max-width: 340px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    flex: none;
  }
  .licensed-logos div {
    min-height: 68px;
    padding: 12px;
    background: #fff;
    border: 1px solid #dce9f7;
    border-radius: 8px;
  }
  .licensed-logos img {
    height: 34px;
    max-width: 100%;
    object-fit: contain;
  }
  .footer-row {
    justify-content: center;
    text-align: center;
  }
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-card .btn {
    width: 100%;
    min-width: 0;
  }
  .quote-form .wpcf7-submit {
    width: 100%;
    min-width: 0;
  }
}

/* Thank You Page Styles */
.thank-you-page {
    background-color: var(--bg-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.thank-you-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
	margin: 0px auto;
    box-shadow: var(--shadow-md);
}

.success-icon {
    color: var(--primary);
    margin-bottom: 24px;
    animation: scale-up 0.5s ease-out;
}

.thank-you-card h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.thank-you-card p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.thank-you-actions {
    margin-bottom: 40px;
}
.thank-you-btn {
	background-color: var(--primary);
    text-decoration: none;
    color: white;
}
.thank-you-contact {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.thank-you-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

@keyframes scale-up {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .thank-you-card {
        padding: 40px 24px;
    }
    
    .thank-you-card h1 {
        font-size: 32px;
    }
}