/* ==================================================
   BTS CONTACT US PAGE
================================================== */

:root {
  --contact-blue: #5572E5;
  --contact-blue-dark: #365FC7;
  --contact-ink: #282E39;
  --contact-copy: #667085;
  --contact-soft: #F1F4FA;
  --contact-white: #FFFFFF;
}

.contact-page,
.contact-page * { box-sizing: border-box; }

.contact-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--contact-ink);
  background: #FFFFFF;
  font-family: "Poppins", sans-serif;
}

.contact-shell {
  width: calc(100% - 160px);
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}




/* ==================================================
   HERO — CARDS
================================================== */



.contact-orbit-one { width: 390px; height: 390px; }
.contact-orbit-two { width: 300px; height: 300px; }

.contact-main-card {
  position: relative;
  z-index: 2;
  width: min(365px, 80%);
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.64);
  border-radius: 28px;
  color: #606B7E;
  background: rgba(255,255,255,0.93);
  box-shadow: 0 34px 75px rgba(20,37,78,0.23);
  backdrop-filter: blur(18px);
}

.contact-main-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--contact-blue);
  background: rgba(85,114,229,0.11);
  font-size: 20px;
}

.contact-main-card > span,
.contact-main-card > strong { display: block; }
.contact-main-card > span { margin-bottom: 6px; color: #8992A1; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-main-card > strong { color: var(--contact-ink); font-size: 23px; font-weight: 500; }
.contact-main-card > p { margin: 13px 0 24px; color: #697487; font-size: 12px; line-height: 1.7; }

.contact-main-status {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid rgba(57,72,104,0.11);
}

.contact-main-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3F8A67;
  font-size: 10px;
  font-weight: 600;
}

.contact-main-status span i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #46B47B;
  box-shadow: 0 0 0 5px rgba(70,180,123,0.13);
}

.contact-main-status small { color: #8B94A2; font-size: 9px; }

.contact-float-card {
  position: absolute;
  z-index: 3;
  min-width: 218px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,0.64);
  border-radius: 15px;
  color: #6D7789;
  background: rgba(255,255,255,0.91);
  box-shadow: 0 18px 40px rgba(24,40,81,0.16);
  backdrop-filter: blur(12px);
}

.contact-float-card > span {
  width: 35px;
  height: 35px;
  display: inline-flex;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--contact-blue);
  background: rgba(85,114,229,0.11);
  font-size: 13px;
}

.contact-float-card small,
.contact-float-card strong { display: block; }
.contact-float-card small { margin-bottom: 2px; color: #929AA8; font-size: 9px; }
.contact-float-card strong { overflow-wrap: anywhere; color: #3C4554; font-size: 10px; font-weight: 600; }
.contact-float-email { top: 25px; right: -18px; }
.contact-float-regions { bottom: 15px; left: -28px; }


/* ==================================================
   SHARED HEADINGS
================================================== */

.contact-line {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 28px;
  border-radius: 20px;
  background: var(--contact-blue);
}

.contact-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--contact-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-section-heading h2,
.contact-form-copy h2 {
  margin: 0;
  color: var(--contact-ink);
  font-size: clamp(38px,4vw,56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.contact-section-heading.centred {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-section-heading.centred .contact-line { margin-right: auto; margin-left: auto; }
.contact-section-heading.centred p { max-width: 700px; margin: 23px auto 0; color: var(--contact-copy); font-size: 16px; line-height: 1.75; }


/* ==================================================
   QUICK OPTIONS
================================================== */

.contact-options {
  position: relative;
  z-index: 5;
  padding: 0 0 90px;
  background: linear-gradient(180deg, #F3F6FC 0%, #FAFBFE 58%, #FFFFFF 100%);
}

.contact-option-grid {
  transform: translateY(-38px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-option-card {
  position: relative;
  min-width: 0;
  min-height: 170px;
  padding: 32px 30px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 38px;
  gap: 20px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(85,114,229,0.14);
  border-radius: 28px;
  color: inherit;
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFF 100%);
  box-shadow: 0 22px 55px rgba(35,49,83,0.11);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 68px;
  height: 4px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(90deg, #5572E5, #7F96EE);
}

.contact-option-card > * {
  position: relative;
  z-index: 2;
}

a.contact-option-card:hover {
  transform: translateY(-8px);
  border-color: rgba(85,114,229,0.34);
  box-shadow: 0 30px 65px rgba(35,49,83,0.17);
}

.contact-option-card:not(a) {
  grid-template-columns: 62px minmax(0, 1fr);
}

.contact-option-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #5572E5 0%, #748CEF 100%);
  box-shadow: 0 14px 28px rgba(85,114,229,0.25);
  font-size: 19px;
}

.contact-option-card div > span,
.contact-option-card strong { display: block; }
.contact-option-card div > span {
  margin-bottom: 8px;
  color: #343C4C;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.contact-option-card strong {
  overflow-wrap: anywhere;
  color: #747E90;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-option-arrow {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: var(--contact-blue);
  background: transparent;
  font-size: 15px;
  box-shadow: none;
  transition: transform 0.3s ease;
}

a.contact-option-card:hover .contact-option-arrow {
  transform: translateX(6px);
}

.contact-option-card:nth-child(2) {
  transform: translateY(-10px);
  border-color: transparent;
  color: #FFFFFF;
  background: linear-gradient(135deg, #365FC7 0%, #5572E5 52%, #728BED 100%);
  box-shadow: 0 28px 65px rgba(54,95,199,0.28);
}

.contact-option-card:nth-child(2)::before {
  background: rgba(255,255,255,0.72);
}

.contact-option-card:nth-child(2) .contact-option-icon {
  color: #5572E5;
  background: #FFFFFF;
  box-shadow: 0 14px 30px rgba(24,49,112,0.20);
}

.contact-option-card:nth-child(2) div > span,
.contact-option-card:nth-child(2) strong {
  color: #FFFFFF;
}

.contact-option-card:nth-child(2) strong {
  color: rgba(255,255,255,0.84);
}

.contact-option-card:nth-child(2) .contact-option-arrow {
  color: #FFFFFF;
  background: transparent;
  box-shadow: none;
}

a.contact-option-card:nth-child(2):hover {
  transform: translateY(-18px);
  border-color: transparent;
  box-shadow: 0 36px 75px rgba(54,95,199,0.34);
}

a.contact-option-card:focus-visible {
  outline: 3px solid rgba(85,114,229,0.35);
  outline-offset: 4px;
}


/* ==================================================
   INTRODUCTION
================================================== */

.contact-intro { padding: 75px 0 120px; background: #FFFFFF; }

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0,0.92fr) minmax(0,1.08fr);
  gap: 90px;
  align-items: start;
}

.contact-intro-copy { max-width: 650px; padding-top: 35px; }
.contact-intro-copy p { margin: 0 0 22px; color: var(--contact-copy); font-size: 16px; line-height: 1.82; }
.contact-intro-copy .contact-lead { color: #3D4657; font-size: 20px; font-weight: 500; line-height: 1.65; }


/* ==================================================
   CONTACT ROUTES
================================================== */

.contact-routes { padding: 120px 0; background: var(--contact-soft); }

.contact-route-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 22px;
}

.contact-route-card {
  position: relative;
  min-height: 360px;
  padding: 42px 34px;
  overflow: hidden;
  border: 1px solid rgba(74,116,232,0.10);
  border-radius: 26px;
  background: #FFFFFF;
  box-shadow: 0 12px 34px rgba(40,53,83,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-route-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--contact-blue);
  transition: width 0.4s ease;
}

.contact-route-card:hover { transform: translateY(-9px); box-shadow: 0 25px 52px rgba(40,53,83,0.12); }
.contact-route-card:hover::before { width: 100%; }
.contact-route-number { position: absolute; top: 29px; right: 29px; color: #B3BDCE; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; }

.contact-route-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--contact-blue);
  background: rgba(85,114,229,0.10);
  font-size: 20px;
}

.contact-route-card h3 { margin: 0 0 15px; color: var(--contact-ink); font-size: 21px; font-weight: 600; }
.contact-route-card p { margin: 0 0 24px; color: var(--contact-copy); font-size: 14px; line-height: 1.78; }
.contact-route-card a { display: inline-flex; align-items: center; gap: 9px; color: var(--contact-blue); font-size: 14px; font-weight: 600; transition: gap 0.25s ease; }
.contact-route-card a:hover { gap: 14px; }


/* ==================================================
   FORM SECTION
================================================== */

.contact-form-section {
  padding: 120px 0;
  background: linear-gradient(135deg,#365FC7 0%,#4A74E8 55%,#668BE9 100%);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0,0.78fr) minmax(580px,1.22fr);
  gap: 90px;
  align-items: center;
}

.contact-form-copy .contact-kicker,
.contact-form-copy h2 { color: #FFFFFF; }

.contact-form-copy > p { max-width: 520px; margin: 25px 0 30px; color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.8; }

.contact-form-assurance { display: grid; gap: 15px; }
.contact-form-assurance > div { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.82); font-size: 12px; }
.contact-form-assurance > div > i { width: 28px; height: 28px; display: inline-flex; flex: 0 0 28px; align-items: center; justify-content: center; border-radius: 50%; color: var(--contact-blue-dark); background: #FFFFFF; font-size: 10px; }
.contact-form-assurance span,
.contact-form-assurance strong { display: block; }
.contact-form-assurance strong { margin-bottom: 2px; color: #FFFFFF; font-size: 13px; }

.contact-form-card {
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.40);
  border-radius: 28px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 30px 70px rgba(27,45,98,0.24);
}

.contact-form { display: grid; gap: 15px; }
.contact-form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.contact-form label > span { display: block; margin: 0 0 8px 3px; color: #515B6D; font-size: 11px; font-weight: 500; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(57,72,104,0.16);
  border-radius: 13px;
  outline: none;
  color: #343B49;
  background: #FFFFFF;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input,
.contact-form select { height: 55px; padding: 0 18px; }
.contact-form textarea { min-height: 125px; padding: 16px 18px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9AA2B0; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--contact-blue); box-shadow: 0 0 0 4px rgba(85,114,229,0.11); }

.contact-submit-row { margin-top: 5px; display: flex; align-items: center; gap: 20px; }

.contact-submit {
  min-width: 190px;
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 14px;
  color: #FFFFFF;
  background: linear-gradient(135deg,#5572E5 0%,#6683ED 100%);
  font: inherit;
  font-size: 14px;
  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;
}

.contact-submit:hover { transform: translateY(-3px); box-shadow: 0 19px 35px rgba(74,105,215,0.30); }
.contact-submit i { transition: transform 0.3s ease; }
.contact-submit:hover i { transform: translateX(5px); }
.contact-submit-row > span { display: inline-flex; align-items: center; gap: 8px; color: #7D8798; font-size: 11px; }
.contact-submit-row > span i { color: var(--contact-blue); }


/* ==================================================
   REGIONAL COVERAGE
================================================== */

.contact-regions { padding: 120px 0 130px; background: #FFFFFF; }

.contact-region-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 22px;
}

.contact-region-card {
  position: relative;
  min-height: 230px;
  padding: 35px;
  overflow: hidden;
  border: 1px solid rgba(74,116,232,0.10);
  border-radius: 25px;
  background: var(--contact-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-region-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(35,49,83,0.10); }

.contact-region-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--contact-blue);
  background: #FFFFFF;
}

.contact-region-card small { display: block; margin-bottom: 7px; color: var(--contact-blue); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-region-card h3 { margin: 0; color: var(--contact-ink); font-size: 24px; font-weight: 500; }
.contact-region-code { position: absolute; right: 27px; bottom: 22px; color: rgba(85,114,229,0.12); font-size: 50px; font-weight: 700; letter-spacing: -0.05em; }


/* ==================================================
   FOOTER ALIGNMENT + REVEAL
================================================== */

.contact-page .contact-strip,
.contact-page .footer-shell {
  width: calc(100% - 160px);
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.contact-page .reveal-item {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay,0ms);
}

.contact-page .reveal-item.is-visible { opacity: 1; transform: translateY(0); }


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

@media (max-width: 1100px) {
  .contact-shell,
  .contact-page .nav-shell,
  .contact-page .contact-strip,
  .contact-page .footer-shell {
    width: calc(100% - 80px);
    max-width: none;
  }

  .contact-hero-shell { grid-template-columns: minmax(0,0.95fr) minmax(390px,1.05fr); gap: 40px; }
  .contact-float-card { display: none; }
  .contact-option-grid { grid-template-columns: 1fr 1fr; }
  .contact-option-card:last-child { grid-column: 1 / -1; }
  .contact-intro-grid,
  .contact-form-layout { gap: 55px; }
  .contact-form-layout { grid-template-columns: minmax(0,0.72fr) minmax(500px,1.28fr); }
}


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

@media (max-width: 820px) {
  .contact-shell,
  .contact-page .nav-shell,
  .contact-page .contact-strip,
  .contact-page .footer-shell { width: calc(100% - 40px); }

  .contact-hero { height: auto; min-height: 760px; }
  .contact-hero-shell { height: auto; padding: 55px 0 90px; grid-template-columns: 1fr; gap: 50px; }
  .contact-hero-visual { min-height: 320px; }
  .contact-main-card { width: min(380px,90%); }
  .contact-option-grid { transform: none; padding-top: 55px; grid-template-columns: 1fr; }
  .contact-option-card:nth-child(2) { transform: none; }
  a.contact-option-card:nth-child(2):hover { transform: translateY(-6px); }
  .contact-option-card:last-child { grid-column: auto; }
  .contact-options { padding-bottom: 70px; }
  .contact-intro { padding: 85px 0; }
  .contact-intro-grid,
  .contact-form-layout { grid-template-columns: 1fr; }
  .contact-intro-copy { padding-top: 0; }
  .contact-route-grid,
  .contact-region-grid { grid-template-columns: 1fr; }
  .contact-routes,
  .contact-form-section,
  .contact-regions { padding: 85px 0; }
  .contact-form-layout { gap: 45px; }
}


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

@media (max-width: 520px) {
  .contact-shell,
  .contact-page .nav-shell,
  .contact-page .contact-strip,
  .contact-page .footer-shell { width: calc(100% - 30px); }

  .contact-hero { min-height: 790px; }
  .contact-hero-copy h1 { font-size: 42px; }
  .contact-hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .contact-orbit-one { width: 310px; height: 310px; }
  .contact-orbit-two { width: 245px; height: 245px; }
  .contact-main-card { padding: 27px; border-radius: 23px; }
  .contact-option-card { min-height: 140px; padding: 22px; grid-template-columns: 54px minmax(0,1fr); }
  .contact-option-card:not(a) { grid-template-columns: 54px minmax(0,1fr); }
  .contact-option-icon { width: 54px; height: 54px; border-radius: 16px; }
  .contact-option-arrow { display: none; }
  .contact-form-card { padding: 27px 21px; border-radius: 22px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-submit-row { align-items: flex-start; flex-direction: column; }
  .contact-submit { width: 100%; }
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .contact-page .reveal-item { opacity: 1; transform: none; transition: none; }
  .contact-option-card,
  .contact-route-card,
  .contact-region-card,
  .contact-submit { transition: none; }
}


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

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page h4 {
  color: #666666 !important;
}

.contact-page p {
  color: #7A7A7A !important;
}

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

.contact-page .contact-hero-copy p,
.contact-page .service-hero-copy p {
  color: rgba(255,255,255,0.94) !important;
}

/* Keep the complete blue quote section exactly as designed */
.contact-page .contact-form-copy h1,
.contact-page .contact-form-copy h2,
.contact-page .contact-form-copy h3,
.contact-page .contact-form-copy h4 {
  color: #FFFFFF !important;
}

.contact-page .contact-form-copy p {
  color: rgba(255,255,255,0.85) !important;
}

/* Keep the footer contact strip white */
.contact-page .contact-strip h1,
.contact-page .contact-strip h2,
.contact-page .contact-strip h3,
.contact-page .contact-strip h4,
.contact-page .contact-strip p,
.contact-page .footer-contact-strip h1,
.contact-page .footer-contact-strip h2,
.contact-page .footer-contact-strip h3,
.contact-page .footer-contact-strip h4,
.contact-page .footer-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;

    }

}