/* ==================================================
   BTS ACCESS CONTROL SERVICE PAGE
   Uses the same BTS palette as the home page
================================================== */

:root {
  --bts-blue: #4A74E8;
  --bts-blue-dark: #3763D8;
  --bts-soft: #F0F3FA;
  --bts-soft-2: #F5F7FB;
  --bts-text: #626262;
  --bts-muted: #7A7A7A;
  --bts-dark: #222A35;
}

/* ==================================================
   ACCESS HERO
================================================== */

.service-hero {

  position: relative;
  min-height: 600px;
  width: 100%;
  overflow: hidden;

  color: #ffffff;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

}

.service-hero {

    background-image: url("../assets/Access control BTS.png");

    background-size: cover;

    background-position: 75% center;

    background-repeat: no-repeat;

}




/* ==================================================
   HERO LAYOUT
================================================== */

.service-hero-shell {

  position: relative;
  z-index: 3;

  height: 600px;

  display: flex;
  align-items: center;

  width: calc(100% - 180px);
  max-width: 1120px;

  margin: 0 auto;

}


.service-hero-copy {

  max-width: 720px;

}


/* ==================================================
   HERO HEADING
================================================== */

.service-hero-copy h1 {

  margin: 0 0 24px;

  max-width: 720px;

  color: #ffffff;

  font-size: clamp(42px, 4vw, 60px);

  line-height: 1.06;

  font-weight: 400;

  letter-spacing: -0.04em;

}


/* ==================================================
   HERO COPY
================================================== */

.service-hero-copy p {

  max-width: 650px;

  margin: 0;

  color: rgba(255,255,255,0.94);

  font-size: 18px;

  line-height: 1.7;

}


/* ==================================================
   HERO ACTIONS
================================================== */

.service-hero-actions {

  margin-top: 26px;

  display: flex;

  align-items: center;

  gap: 26px;

}


/* ==================================================
   TEXT LINK
================================================== */

.service-text-link {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #ffffff;

  font-size: 15px;

  font-weight: 600;

  text-decoration: none;

  transition: gap 0.25s ease;

}


.service-text-link:hover {

  gap: 14px;

}


/* ==================================================
   PRODUCT VISUAL PANEL
================================================== */

.service-hero-visual {
  position: relative;

  width: 100%;
  max-width: 455px;

  min-height: 420px;

  justify-self: end;

  border-radius: 34px;

  background: rgba(255, 255, 255, 0.95);

  border: 1px solid rgba(255, 255, 255, 0.98);

  box-shadow:
    0 22px 52px rgba(55, 70, 105, 0.11);

  overflow: hidden;
}


/* Soft BTS glow behind products */

.service-hero-visual::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(74, 116, 232, 0.09),
      transparent 44%
    );
}


/* ==================================================
   DEVICES
================================================== */

.service-device {
  position: absolute;

  display: flex;

  align-items: center;

  justify-content: center;

  transition:
    transform 0.55s cubic-bezier(.22,.61,.36,1);
}


.service-device img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 18px 20px rgba(45, 55, 80, 0.12)
    );
}


/* ==================================================
   LEFT DEVICE
================================================== */

.service-device-one {
  width: 190px;

  height: 340px;

  left: 8%;

  bottom: 34px;

  transform: rotate(-4deg);
}


/* ==================================================
   CENTRE DEVICE
================================================== */

.service-device-two {
  width: 210px;

  height: 385px;

  left: 35%;

  bottom: 44px;

  z-index: 3;
}


/* ==================================================
   RIGHT DEVICE
================================================== */

.service-device-three {
  width: 180px;

  height: 320px;

  right: 7%;

  bottom: 45px;

  transform: rotate(4deg);
}


/* ==================================================
   PRODUCT HOVER
================================================== */

.service-hero-visual:hover .service-device-one {
  transform:
    translateY(-10px)
    rotate(-6deg);
}


.service-hero-visual:hover .service-device-two {
  transform:
    translateY(-14px)
    scale(1.03);
}


.service-hero-visual:hover .service-device-three {
  transform:
    translateY(-9px)
    rotate(6deg);
}




/* ==================================================
   SHARED INNER PAGE SHELLS
================================================== */

.service-shell {
  width: calc(100% - 180px);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.service-line {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--bts-blue);
}

.service-section-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.service-section-heading .service-line {
  margin-left: auto;
  margin-right: auto;
}

.service-section-heading h2,
.service-intro-heading h2,
.support-strip-inner h2 {
  color: var(--bts-text);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-section-heading h2 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1.08;
}

.service-section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--bts-muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-section-heading.compact {
  margin-bottom: 45px;
}

/* ==================================================
   INTRO
================================================== */

.service-intro {
  padding: 110px 0;
  background: #fff;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.service-intro-heading h2 {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.08;
}

.service-intro-copy {
  padding-top: 14px;
}

.service-intro-copy p {
  margin: 0 0 25px;
  color: var(--bts-muted);
  font-size: 16px;
  line-height: 1.8;
}

.service-intro-copy .service-lead {
  color: var(--bts-text);
  font-size: 21px;
  line-height: 1.65;
}

/* ==================================================
   BENEFITS
================================================== */

/* ==================================================
   BENEFITS
================================================== */

.service-benefits {
  padding: 100px 0 110px;

  background: var(--bts-soft);
}


/* ==================================================
   BENEFIT GRID
================================================== */

.benefit-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 24px;
}


/* ==================================================
   BENEFIT CARD
================================================== */

.benefit-card {
  position: relative;

  min-height: 285px;

  padding: 36px 32px 34px;

  background: #ffffff;

  border:
    1px solid rgba(74, 116, 232, 0.08);

  border-radius: 24px;

  box-shadow:
    0 14px 35px rgba(35, 45, 70, 0.06);

  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


/* Small BTS blue line appears on hover */

.benefit-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  transform: translateX(-50%);

  background: #4A74E8;

  border-radius: 0 0 8px 8px;

  transition:
    width 0.45s cubic-bezier(.22,.61,.36,1);
}


.benefit-card:hover::before {
  width: 70px;
}


/* Card hover */

.benefit-card:hover {
  transform: translateY(-8px);

  border-color:
    rgba(74, 116, 232, 0.20);

  box-shadow:
    0 24px 46px rgba(35, 45, 70, 0.11);
}


/* ==================================================
   ICON
================================================== */

.benefit-icon {
  width: 58px;
  height: 58px;

  margin-bottom: 26px;

  display: grid;

  place-items: center;

  color: #4A74E8;

  background: #EEF3FF;

  border-radius: 18px;

  font-size: 21px;

  transition:
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    background 0.3s ease;
}


.benefit-card:hover .benefit-icon {
  transform:
    translateY(-4px)
    scale(1.05);

  background: #E8EEFF;
}


/* ==================================================
   CARD TITLE
================================================== */

.benefit-card h3 {
  margin: 0 0 13px;

  color: #626262;

  font-size: 20px;

  line-height: 1.3;

  font-weight: 500;

  transition:
    color 0.3s ease;
}


.benefit-card:hover h3 {
  color: #4A74E8;
}


/* ==================================================
   CARD COPY
================================================== */

.benefit-card p {
  margin: 0;

  color: #707070;

  font-size: 15px;

  line-height: 1.65;

  font-weight: 400;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {

  .benefit-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

}




/* ==================================================
   PROCESS
================================================== */

.service-process {
  padding: 105px 0;
  background: #ffffff;
}


/* ==================================================
   PROCESS GRID
================================================== */

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


/* ==================================================
   PROCESS CARD
================================================== */

.process-step {
  position: relative;

  min-height: 220px;

  padding: 42px 38px 38px;

  background: #ffffff;

  border: 1px solid #E8ECF4;
  border-radius: 24px;

  box-shadow:
    0 10px 26px rgba(35, 45, 70, 0.025);

  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


/* ==================================================
   BLUE LINE
================================================== */

.process-step::before {
  content: "";

  position: absolute;

  top: 0;
  left: 38px;

  width: 0;
  height: 4px;

  background: #4A74E8;

  border-radius: 0 0 6px 6px;

  transition:
    width 0.5s cubic-bezier(.22,.61,.36,1);
}


/* ==================================================
   CARD HOVER
================================================== */

.process-step:hover {
  transform: translateY(-5px);

  border-color:
    rgba(74, 116, 232, 0.18);

  box-shadow:
    0 18px 38px rgba(35, 45, 70, 0.08);
}


.process-step:hover::before {
  width: 72px;
}


/* ==================================================
   STEP NUMBER
================================================== */

.process-number {
  display: inline-block;

  margin-bottom: 28px;

  color: #4A74E8;

  font-size: 13px;
  line-height: 1;

  font-weight: 700;

  letter-spacing: 0.12em;

  transition:
    transform 0.3s ease;
}


.process-step:hover .process-number {
  transform: translateY(-2px);
}


/* ==================================================
   TITLE
================================================== */

.process-step h3 {
  margin: 0 0 12px;

  color: #626262;

  font-size: 22px;
  line-height: 1.3;

  font-weight: 500;

  transition:
    color 0.3s ease;
}


.process-step:hover h3 {
  color: #4A74E8;
}


/* ==================================================
   COPY
================================================== */

.process-step p {
  margin: 0;

  max-width: 340px;

  color: #707070;

  font-size: 15px;
  line-height: 1.7;

  font-weight: 400;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 800px) {

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }

}

/* ==================================================
   PRODUCT RANGE
================================================== */

.facial-range {
  padding: 110px 0 120px;
  background: var(--bts-soft-2);
}

.range-filters {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 52px;
  padding: 6px;
  display: flex;
  gap: 6px;
  background: #fff;
  border: 1px solid #E9EDF5;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(35, 45, 70, 0.05);
}

.range-filter {
  border: 0;
  padding: 12px 20px;
  border-radius: 13px;
  background: transparent;
  color: var(--bts-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.range-filter:hover,
.range-filter.active {
  color: #fff;
  background: var(--bts-blue);
  box-shadow: 0 8px 18px rgba(74, 116, 232, 0.22);
}

.facial-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.facial-product-card {
  display: flex;
  flex-direction: column;
  min-height: 610px;
}

.facial-product-card[hidden] {
  display: none !important;
}

.facial-product-image {
  position: relative;

  width: 100%;

  height: 335px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 22px;

  border-radius: 24px;

  background: #EEF1F7;

  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.4s ease,
    background 0.4s ease;
}


.facial-product-image img {
  max-width: 92%;

  max-height: 295px;

  width: auto;

  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(0 14px 20px rgba(30,40,60,0.11));

  transition:
    transform 0.45s cubic-bezier(.22,.61,.36,1);
}

.facial-product-card:hover .facial-product-image {
  transform: translateY(-7px);
  background: #E9EEF8;
  box-shadow: 0 24px 42px rgba(35,45,70,0.10);
}

.facial-product-card:hover .facial-product-image img {
  transform: translateY(-4px) scale(1.035);
}

.facial-product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 10px 0;
}

.product-type {
  margin-bottom: 10px;
  color: var(--bts-blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.facial-product-content h3 {
  margin: 0 0 17px;
  color: var(--bts-text);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 500;
}

.facial-product-content ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.facial-product-content li {
  position: relative;
  margin: 0 0 9px;
  padding-left: 20px;
  color: var(--bts-muted);
  font-size: 13px;
  line-height: 1.5;
}

.facial-product-content li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bts-blue);
}

.product-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 16px;
  background: var(--bts-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(74,116,232,0.18);
  transition: gap 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-read-more:hover {
  gap: 12px;
  transform: translateY(-2px);
  background: var(--bts-blue-dark);
  box-shadow: 0 12px 24px rgba(74,116,232,0.25);
}


/* ==================================================
   SUPPORT STRIP
================================================== */


.service-support-strip {
  padding: 74px 0;
  background: #fff;
}

.support-strip-inner {
  padding: 48px 54px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 45px;

  border-radius: 28px;

  background: linear-gradient(
    135deg,
    #4A74E8 0%,
    #5B73E8 55%,
    #6F86E8 100%
  );
}

.support-strip-inner .service-kicker {
  color: #fff;
}

.support-strip-inner h2 {
  max-width: 760px;
  margin: 10px 0 0;

  color: #fff;

  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
}

.support-strip-button {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  min-height: 52px;

  padding: 13px 24px;

  border-radius: 18px;

  background: rgba(255,255,255,0.14);
  color: #fff;

  border: 1px solid rgba(255,255,255,0.35);

  font-size: 14px;
  font-weight: 600;

  box-shadow: none;

  transition:
    gap 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.support-strip-button:hover {
  gap: 13px;

  transform: translateY(-2px);

  background: #fff;
  color: var(--bts-blue);
}


/* ==================================================
   RESPONSIVE
================================================== */


/* ==================================================
   TABLET / SMALL DESKTOP
================================================== */

@media (max-width: 1100px) {

  .service-hero-shell {
    width: calc(100% - 60px);

    grid-template-columns: 1fr;

    gap: 55px;

    padding-top: 70px;
  }


  .service-hero-copy {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
  }


  .service-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }


  .service-hero-actions {
    justify-content: center;
  }


  .service-hero-visual {
    width: min(760px, 100%);

    margin: 0 auto;
  }


  .service-intro-grid {
    gap: 60px;
  }


  .benefit-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .facial-product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}



/* ==================================================
   TABLET
================================================== */

@media (max-width: 800px) {

  .service-shell,
  .service-hero-shell {
    width: calc(100% - 36px);
  }


  .service-hero {
    min-height: auto;
  }


  .service-hero-copy h1 {
    font-size: 46px;
  }


  .service-hero-visual {
    min-height: 390px;
  }


  .service-device-one {
    width: 145px;
    height: 270px;
  }


  .service-device-two {
    width: 160px;
    height: 305px;
  }


  .service-device-three {
    width: 135px;
    height: 250px;
  }


  .service-intro-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }


  .service-intro-grid {
    gap: 40px;
  }


  .range-filters {
    width: 100%;

    overflow-x: auto;

    justify-content: flex-start;
  }


  .range-filter {
    white-space: nowrap;
  }


  .support-strip-inner {
    padding: 38px 32px;

    flex-direction: column;

    align-items: flex-start;
  }

}



/* ==================================================
   MOBILE
================================================== */

@media (max-width: 620px) {

  .service-hero-shell {
    padding: 55px 0 65px;
  }

  background-size: cover;
background-position: right center;


  .service-hero-copy h1 {
    font-size: 38px;
  }


  .service-hero-copy p {
    font-size: 16px;
  }


  .service-hero-actions {
    flex-direction: column;

    gap: 18px;
  }


  .service-hero-visual {
    min-height: 310px;

    border-radius: 24px;
  }


  .service-device-one {
    width: 105px;
    height: 205px;

    left: 4%;
  }


  .service-device-two {
    width: 120px;
    height: 230px;

    left: 34%;
  }


  .service-device-three {
    width: 100px;
    height: 190px;

    right: 4%;
  }


  .service-intro,
  .service-benefits,
  .service-process,
  .facial-range {
    padding: 78px 0;
  }


  .benefit-grid,
  .facial-product-grid {
    grid-template-columns: 1fr;
  }


  .facial-product-card {
    min-height: 0;
  }


  .facial-product-image {
    height: 300px;
  }


  .support-strip-inner h2 {
    font-size: 32px;
  }

}

/* ==================================================
   SCROLL REVEAL ANIMATION
================================================== */

.bts-scroll-reveal {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.22,.61,.36,1);

  transition-delay:
    var(--reveal-delay, 0ms);

  will-change:
    opacity,
    transform;
}


.bts-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Slightly softer movement for larger sections */

.service-intro-heading.bts-scroll-reveal,
.service-intro-copy.bts-scroll-reveal,
.service-section-heading.bts-scroll-reveal {
  transform: translateY(22px);
}


.service-intro-heading.bts-scroll-reveal.is-visible,
.service-intro-copy.bts-scroll-reveal.is-visible,
.service-section-heading.bts-scroll-reveal.is-visible {
  transform: translateY(0);
}


/* Keep accessibility settings respected */

@media (prefers-reduced-motion: reduce) {

  .bts-scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}





/* ==================================================
   REFINED QUOTE SECTION
================================================== */

.quote-section,
.quote-section * {
  box-sizing: border-box;
}

.quote-section {
  width: calc(100% - 80px);
  max-width: 1500px;
  min-height: 720px;
  margin: 100px auto;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(560px, 1.12fr);
  overflow: hidden;
  border: 1px solid rgba(74, 116, 232, 0.10);
  border-radius: 32px;
  background: #F4F6FB;
  box-shadow:
    0 32px 80px rgba(35, 49, 83, 0.10),
    0 8px 24px rgba(35, 49, 83, 0.05);
}

.quote-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background-size: cover;
  background-position: 47% center;
  background-repeat: no-repeat;
}

.quote-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(37, 50, 78, 0.02) 45%,
      rgba(37, 50, 78, 0.15) 100%
    );
}

.quote-panel {
  display: flex;
  align-items: center;
  padding: 58px 62px;
  background:
    linear-gradient(
      145deg,
      #F7F9FD 0%,
      #EEF2FA 100%
    );
}

.quote-inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.quote-kicker {
  display: block;
  margin-bottom: 16px;
  color: #5572E5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.quote-inner h2 {
  max-width: 650px;
  margin: 0 0 18px;
  color: #292E39;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.quote-intro {
  max-width: 630px;
  margin: 0 0 32px;
  color: #657084;
  font-size: 17px;
  line-height: 1.65;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(57, 72, 104, 0.16);
  border-radius: 14px;
  outline: none;
  color: #343B49;
  background: rgba(255, 255, 255, 0.96);
  font-family: inherit;
  font-size: 15px;
  box-shadow: 0 3px 10px rgba(35, 49, 83, 0.025);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.quote-form input,
.quote-form select {
  height: 58px;
  padding: 0 20px;
}

.quote-form select {
  cursor: pointer;
}

.quote-form textarea {
  min-height: 138px;
  padding: 17px 20px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #929AAA;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #5A76E8;
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(90, 118, 232, 0.11),
    0 8px 22px rgba(42, 61, 109, 0.07);
}

.quote-submit-row {
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.submit-button {
  min-width: 235px;
  min-height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #5572E5 0%, #6683ED 100%);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(74, 105, 215, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #4666DB 0%, #5A78E7 100%);
  box-shadow: 0 19px 35px rgba(74, 105, 215, 0.29);
}

.submit-button i {
  transition: transform 0.3s ease;
}

.submit-button:hover i {
  transform: translateX(5px);
}

.quote-small-print {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7D8798;
  font-size: 13px;
  line-height: 1.5;
}

.quote-small-print::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #5572E5;
  background: rgba(85, 114, 229, 0.10);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .quote-section {
    width: calc(100% - 50px);
    grid-template-columns: minmax(330px, 0.8fr) minmax(450px, 1.2fr);
  }

  .quote-panel {
    padding: 54px 42px;
  }
}

@media (max-width: 820px) {
  .quote-section {
    width: calc(100% - 30px);
    min-height: 0;
    margin: 70px auto;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
  }

  .quote-image {
    min-height: 420px;
    background-position: center center;
  }

  .quote-panel {
    padding: 50px 30px;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .quote-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .quote-image {
    min-height: 330px;
  }

  .quote-panel {
    padding: 42px 22px;
  }

  .quote-inner h2 {
    font-size: 38px;
  }
}


/* ==================================================
   CONSISTENT TEXT COLOURS
================================================== */

h1,
h2,
h3,
h4 {
  color: #666666 !important;
}

p {
  color: #7A7A7A !important;
}

/* Keep hero heading and copy white */
.service-hero-copy h1,
.service-hero-copy p,
.service-hero .service-hero-copy h1,
.service-hero .service-hero-copy p {
  color: #FFFFFF !important;
}

/* Keep text white over blue backgrounds */
.support-strip-inner h1,
.support-strip-inner h2,
.support-strip-inner h3,
.support-strip-inner h4,
.support-strip-inner p,
.contact-strip h1,
.contact-strip h2,
.contact-strip h3,
.contact-strip h4,
.contact-strip p {
  color: #FFFFFF !important;
}

/* ==================================================
   BTS WHATSAPP BUTTON
================================================== */


/* Floating WhatsApp Button */

.whatsapp-button {

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#25D366;

    border:none;

    border-radius:50%;

    color:#ffffff;

    font-size:30px;

    cursor:pointer;

    z-index:9999;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

    transition:
        transform .3s ease,
        background .3s ease;

}


.whatsapp-button:hover {

    background:#20bd5a;

    transform:translateY(-5px);

}



/* ==================================================
   WHATSAPP POPUP
================================================== */


.whatsapp-popup {

    position:fixed;

    right:30px;

    bottom:105px;

    width:320px;

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 25px 70px rgba(0,0,0,.20);

    z-index:9998;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:

        opacity .35s ease,

        transform .35s ease,

        visibility .35s ease;

}



/* Popup active state */

.whatsapp-popup.active {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}



/* Small pointer */

.whatsapp-popup::after {

    content:"";

    position:absolute;

    right:48px;

    bottom:-10px;

    width:22px;

    height:22px;

    background:#ffffff;

    transform:rotate(45deg);

}



/* ==================================================
   POPUP HEADER
================================================== */


.whatsapp-popup-header {

    position:relative;

    padding:25px 28px;

    background:#6675D9;

    color:#ffffff;

}



.whatsapp-popup-header h3 {

    margin:0;

    font-size:22px;

    line-height:1.35;

    font-weight:500;

}



/* Close button */

.whatsapp-close {

    position:absolute;

    top:15px;

    right:18px;

    background:none;

    border:none;

    color:#ffffff;

    font-size:28px;

    cursor:pointer;

    line-height:1;

}



.whatsapp-close:hover {

    opacity:.7;

}



/* ==================================================
   POPUP BODY
================================================== */


.whatsapp-popup-body {

    padding:28px;

    color:#46505f;

    font-size:16px;

    line-height:1.65;

}



.whatsapp-popup-body h4 {

    margin:0 0 12px;

    font-size:20px;

    color:#111111;

    font-weight:700;

}



.whatsapp-popup-body p {

    margin:0 0 20px;

}



/* ==================================================
   WHATSAPP ACTION BUTTON
================================================== */


.whatsapp-popup-link {

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:100%;

    padding:14px 20px;

    border-radius:50px;

    background:#25D366;

    color:#ffffff;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.3s ease;

}



.whatsapp-popup-link:hover {

    background:#20bd5a;

    color:#ffffff;

    transform:translateY(-3px);

}



.whatsapp-popup-link i {

    font-size:25px;

}



/* ==================================================
   BACK TO TOP BUTTON
================================================== */


.back-to-top {

    position:fixed;

    left:30px;

    bottom:30px;

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#586FE5;

    color:#ffffff;

    border:none;

    border-radius:50%;

    font-size:18px;

    cursor:pointer;

    z-index:9999;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.3s ease;

    box-shadow:

        0 12px 30px rgba(0,0,0,.15);

}



.back-to-top:hover {

    background:#4359d2;

    transform:translateY(-5px);

}



/* Visible state */

.back-to-top.show {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}



/* ==================================================
   MOBILE RESPONSIVE
================================================== */


@media(max-width:600px){


    .whatsapp-button {

        width:55px;

        height:55px;

        right:20px;

        bottom:20px;

        font-size:28px;

    }



    .whatsapp-popup {

        width:calc(100% - 40px);

        right:20px;

        bottom:90px;

    }



    .whatsapp-popup-header {

        padding:22px;

    }



    .whatsapp-popup-header h3 {

        font-size:20px;

    }



    .whatsapp-popup-body {

        padding:24px;

    }



    .back-to-top {

        width:48px;

        height:48px;

        left:20px;

        bottom:20px;

    }


}

/* ==================================================
   WHATSAPP POPUP HEADER TITLE
================================================== */

.whatsapp-popup-header h3 {
    color: #ffffff !important;
}


/* ==================================================
   BACK TO TOP BUTTON
================================================== */


.back-to-top {

    position:fixed;

    left:30px;

    bottom:30px;


    width:52px;

    height:52px;


    display:flex;

    align-items:center;

    justify-content:center;


    background:#586FE5;


    color:#ffffff;


    border:none;


    border-radius:50%;


    font-size:18px;


    cursor:pointer;


    z-index:9999;


    opacity:0;

    visibility:hidden;


    transform:translateY(20px);


    transition:.3s ease;


    box-shadow:
        0 12px 30px rgba(0,0,0,.15);

}



.back-to-top:hover {


    background:#4359d2;


    transform:translateY(-5px);

}



/* Show button */

.back-to-top.show {


    opacity:1;


    visibility:visible;


    transform:translateY(0);

}




@media(max-width:600px){


    .back-to-top {


        width:48px;

        height:48px;


        left:20px;


        bottom:20px;

    }

}