/* =========================================================
   GLOBAL
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 320px;

  background-color: #ffffff;
  color: #111827;

  line-height: 1.6;

  overflow-x: hidden;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  touch-action: manipulation;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  width: 100%;
  min-height: 70px;

  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

.nav-container {
  width: min(100% - 48px, 1200px);
  min-height: 70px;

  margin-inline: auto;

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

  gap: 24px;

  min-width: 0;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
  display: flex;
  align-items: center;

  gap: 8px;

  flex: 0 1 auto;
  min-width: 0;

  overflow: hidden;
}

.logo-icon {
  width: 100px;
  height: 40px;

  flex: 0 0 auto;

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

  background: url("/LogoSmall.svg") center / contain no-repeat;
}

.logo-text {
  color: #1e1b4b;

  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  font-style: italic;
  line-height: 1;

  white-space: nowrap;

  overflow: hidden;
  text-overflow: ellipsis;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: clamp(14px, 2.5vw, 28px);
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links li {
  min-width: 0;
}

.nav-links a {
  position: relative;
  display: inline-block;
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    font-weight 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: #7c3aed;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #111827;
  font-weight: 600;
  height: 17px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 0 0 auto;
  min-width: 0;
}

.btn-link {
  color: #111827;
  text-decoration: none;

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

  white-space: nowrap;
}

.btn-link:hover {
  color: #7c3aed;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;

  padding: 10px 18px;

  border: 0;
  border-radius: 8px;

  background: linear-gradient(
    115deg,
    #7f28c9 20%,
    #db2878 60% 65%,
    #f2612d 100%
  );

  color: #ffffff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  white-space: nowrap;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-primary:active {
  transform: translateY(1px);
}


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

.hero {
  position: relative;

  width: 100%;
  min-height: 300px;

  background:
    url("/img/section-herobanner3.jpg")
    center / cover no-repeat;

  display: flex;
  align-items: center;

  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(18, 12, 38, 0.75);
}

.hero-content {
  position: relative;
  z-index: 1;

  width: min(100% - 48px, 1200px);

  margin-inline: auto;

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

  gap: clamp(30px, 6vw, 80px);

  min-width: 0;
}

.hero-left {
  max-width: 500px;
  min-width: 0;
}

.breadcrumbs {
  margin-bottom: 12px;

  color: #d1d5db;

  font-size: 12px;
  line-height: 1.5;

  overflow-wrap: anywhere;
}

.hero-left h1 {
  margin-bottom: 12px;

  color: #ffffff;

  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.1;

  overflow-wrap: anywhere;
}

.hero-left p {
  color: #e5e7eb;

  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.7;

  overflow-wrap: anywhere;
}

.hero-right {
  max-width: 480px;
  min-width: 0;

  padding-top: 24px;
}

.hero-right h2 {
  color: #ffffff;

  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.3;

  overflow-wrap: anywhere;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
  width: 100%;

  padding: clamp(50px, 8vw, 80px) 0;

  background-color: #ffffff;
}

.section-tag {
  display: block;

  margin-bottom: 8px;

  color: #6b7280;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4;
}

.section-title {
  margin-bottom: clamp(28px, 5vw, 40px);

  color: #111827;

  font-size: clamp(25px, 4vw, 32px);
  font-weight: 800;
  line-height: 1.2;

  overflow-wrap: anywhere;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
  display: grid;

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

  gap: clamp(16px, 2vw, 20px);

  min-width: 0;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
  min-width: 0;
  min-height: 280px;
  padding: 28px 20px 20px;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      #ca3582 0%,
      #6629b2 50%,
      #4177e0 100%
    );
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
  overflow: hidden;
}

.service-card .card-icon {
  width: 36px;
  height: 36px;

  margin-bottom: 16px;

  border-radius: 8px;

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

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

  backdrop-filter: blur(4px);

  font-size: 16px;

  flex: 0 0 auto;
}

.service-card h3 {
  margin-bottom: 8px;

  color: #ffffff;

  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  line-height: 1.3;

  overflow-wrap: anywhere;
}

.service-card p {
  flex: 1;

  margin-bottom: 24px;

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

  font-size: 12px;
  line-height: 1.5;

  overflow-wrap: anywhere;
}

.service-card .btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  color: #6d28d9;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.service-card .btn-book:hover {
  background-color: #f3e8ff;
  transform: translateY(-1px);
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  color: #FFFFFF;
}

.card-icon.coral { background: linear-gradient(135deg, #dd2b70, #f56923); }
.card-icon.magenta { background: linear-gradient(135deg, #8028c8, #c5288b); }
.card-icon.orange { background: linear-gradient(135deg, #ff7100, #fbb122 90%); }
.card-icon.purple { background: linear-gradient(135deg, #7928ce, #c6278a); }

/* =========================================================
   THE ALIX STANDARD
========================================================= */

.standard-section {
  width: 100%;

  padding:
    clamp(45px, 7vw, 60px)
    0
    clamp(55px, 8vw, 80px);

  background-color: #ffffff;
}

.standard-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: clamp(32px, 5vw, 48px);
}

.standard-title {
  color: #111827;

  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.2;

  overflow-wrap: anywhere;
}

.standard-desc {
  max-width: 420px;

  color: #6b7280;

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

  overflow-wrap: anywhere;
}

.standard-grid {
  display: grid;

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

  gap: clamp(20px, 3vw, 32px);

  min-width: 0;
}

.standard-col {
  min-width: 0;

  padding-top: 16px;

  border-top: 1px solid #111827;
}

.standard-col h3 {
  margin-bottom: 12px;

  color: #111827;

  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;

  overflow-wrap: anywhere;
}

.standard-col p {
  color: #6b7280;

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

  overflow-wrap: anywhere;
}


/* =========================================================
   CTA BANNER
========================================================= */

.cta-banner {
  position: relative;

  width: 100%;
  min-height: 280px;

  padding: 50px 24px;

  background:
    url("/img/CTA-Banner.png")
    center / cover no-repeat;

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

  text-align: center;

  color: #ffffff;
}

.cta-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.65);
}

.cta-content {
  position: relative;
  z-index: 1;

  width: min(100%, 700px);

  min-width: 0;
}

.cta-content h2 {
  margin-bottom: 8px;

  color: #ffffff;

  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  line-height: 1.2;

  overflow-wrap: anywhere;
}

.cta-content p {
  margin-bottom: 24px;

  color: #e5e7eb;

  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.6;

  overflow-wrap: anywhere;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 12px 28px;

  border-radius: 30px;

  background-color: #ffffff;
  color: #111827;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.btn-cta:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  width: 100%;

  background-color: #ff6b00;
  color: #ffffff;

  padding:
    clamp(45px, 7vw, 70px)
    0
    20px;
}

.footer-grid {
  display: grid;

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

  gap: clamp(24px, 5vw, 50px);

  margin-bottom: clamp(40px, 6vw, 60px);

  min-width: 0;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-brand p {
  max-width: 300px;

  margin-top: 16px;

  color: #fff0e6;

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

  overflow-wrap: anywhere;
}

.footer-brand .logo-text {
  color: #ffffff;
}

.footer-column h5 {
  margin-bottom: 16px;

  color: #fff0e6;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;

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

  overflow-wrap: anywhere;
}

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

.footer-column a.active {
  font-weight: 700;
  text-decoration: underline;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.2);

  color: #fff0e6;

  font-size: 11px;
  line-height: 1.5;
}

.footer-bottom > * {
  min-width: 0;
  overflow-wrap: anywhere;
}


/* =========================================================
   LARGE TABLETS / SMALL LAPTOPS
   1100px
========================================================= */

@media (max-width: 1100px) {

  .nav-container,
  .hero-content,
  .container {
    width: calc(100% - 40px);
  }

  .nav-container {
    gap: 16px;
  }

  .nav-links {
    gap: 16px;
  }

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

  .nav-actions {
    gap: 10px;
  }

  .btn-link {
    font-size: 13px;
  }

  .btn-primary {
    padding-inline: 14px;
    font-size: 13px;
  }

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


/* =========================================================
   TABLET
   768px
========================================================= */

@media (max-width: 768px) {

  /* -------------------------------------------------------
     NAVBAR

     Row 1:
     Logo                  Sign Up | Book

     Row 2:
     Home | About | ...
  ------------------------------------------------------- */

  .navbar {
    min-height: 0;
  }

  .nav-container {
    width: calc(100% - 32px);
    min-height: 0;

    padding-top: 13px;
    padding-bottom: 13px;

    display: grid;

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

    grid-template-areas:
      "logo actions"
      "links links";

    column-gap: 12px;
    row-gap: 14px;
  }

  .logo {
    grid-area: logo;
  }

  .logo-icon {
    width: 85px;
    height: 35px;
  }

  .logo-text {
    font-size: 19px;
  }

  .nav-actions {
    grid-area: actions;

    gap: 9px;
  }

  .btn-link {
    font-size: 12px;
  }

  .btn-primary {
    min-height: 37px;

    padding: 8px 12px;

    font-size: 12px;
  }

  /*
     Navigation wraps instead of scrolling.
     This eliminates horizontal page scrolling.
  */

  .nav-links {
    grid-area: links;

    width: 100%;
    min-width: 0;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px 20px;
  }

  .nav-links a {
    font-size: 12px;
  }


  /* -------------------------------------------------------
     HERO
  ------------------------------------------------------- */

  .hero {
    min-height: auto;

    padding: 55px 0;
  }

  .hero-content {
    width: calc(100% - 40px);

    flex-direction: column;
    align-items: flex-start;

    gap: 30px;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    width: 100%;
  }

  .hero-right {
    padding-top: 0;
  }


  /* -------------------------------------------------------
     SERVICES
  ------------------------------------------------------- */

  .services-section {
    padding: 55px 0;
  }

  .container {
    width: calc(100% - 40px);
  }

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

    gap: 18px;
  }

  .service-card {
    min-height: 270px;
  }


  /* -------------------------------------------------------
     STANDARD
  ------------------------------------------------------- */

  .standard-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .standard-header {
    align-items: flex-start;
    flex-direction: column;

    gap: 14px;
  }

  .standard-desc {
    max-width: 600px;
  }

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

    gap: 28px 24px;
  }


  /* -------------------------------------------------------
     CTA
  ------------------------------------------------------- */

  .cta-banner {
    min-height: 260px;

    padding: 50px 20px;
  }


  /* -------------------------------------------------------
     FOOTER
  ------------------------------------------------------- */

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

    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 520px;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}


/* =========================================================
   MOBILE
   600px
========================================================= */

@media (max-width: 600px) {

  .container {
    width: calc(100% - 32px);
  }


  /* -------------------------------------------------------
     NAVBAR
  ------------------------------------------------------- */

  .nav-container {
    width: calc(100% - 28px);

    column-gap: 8px;
    row-gap: 12px;
  }

  .logo-icon {
    width: 76px;
    height: 32px;
  }

  .logo-text {
    font-size: 17px;
  }

  .nav-actions {
    gap: 6px;
  }

  .btn-link {
    font-size: 11px;
  }

  .btn-primary {
    min-height: 35px;

    padding: 8px 10px;

    border-radius: 7px;

    font-size: 11px;
  }

  .nav-links {
    gap: 8px 16px;
  }

  .nav-links a {
    font-size: 11px;
  }


  /* -------------------------------------------------------
     HERO
  ------------------------------------------------------- */

  .hero {
    padding: 45px 0;
  }

  .hero-content {
    width: calc(100% - 32px);

    gap: 25px;
  }

  .hero-left h1 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .hero-right h2 {
    font-size: clamp(20px, 6vw, 25px);
  }


  /* -------------------------------------------------------
     SERVICES
  ------------------------------------------------------- */

  .services-section {
    padding: 45px 0;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .service-card {
    min-height: 240px;

    padding: 24px 18px 18px;
  }

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


  /* -------------------------------------------------------
     STANDARD
  ------------------------------------------------------- */

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

  .standard-header {
    margin-bottom: 32px;
  }

  .standard-grid {
    grid-template-columns: 1fr;

    gap: 24px;
  }


  /* -------------------------------------------------------
     CTA
  ------------------------------------------------------- */

  .cta-banner {
    min-height: 250px;

    padding: 45px 16px;
  }

  .cta-content h2 {
    font-size: clamp(25px, 8vw, 32px);
  }

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

  .btn-cta {
    width: min(100%, 260px);

    padding: 12px 20px;
  }


  /* -------------------------------------------------------
     FOOTER
  ------------------------------------------------------- */

  .footer {
    padding-top: 45px;
  }

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

    gap: 28px 18px;

    margin-bottom: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 100%;

    font-size: 12px;
  }

  .footer-column h5 {
    margin-bottom: 12px;

    font-size: 10px;
  }

  .footer-column li {
    margin-bottom: 8px;
  }

  .footer-column a {
    font-size: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 8px;

    font-size: 10px;
  }
}


/* =========================================================
   SMALL PHONES
   480px
========================================================= */

@media (max-width: 480px) {

  .container {
    width: calc(100% - 24px);
  }


  /* -------------------------------------------------------
     NAVBAR
  ------------------------------------------------------- */

  .nav-container {
    width: calc(100% - 20px);

    padding-top: 10px;
    padding-bottom: 10px;

    column-gap: 5px;
    row-gap: 10px;
  }

  .logo {
    gap: 4px;
  }

  .logo-icon {
    width: 62px;
    height: 29px;
  }

  .logo-text {
    font-size: 15px;
  }

  .nav-actions {
    gap: 5px;
  }

  .btn-link {
    font-size: 10px;
  }

  .btn-primary {
    min-height: 32px;

    padding: 7px 8px;

    border-radius: 6px;

    font-size: 10px;
  }

  .nav-links {
    gap: 7px 13px;
  }

  .nav-links a {
    font-size: 10.5px;
  }


  /* -------------------------------------------------------
     HERO
  ------------------------------------------------------- */

  .hero {
    padding: 38px 0;
  }

  .hero-content {
    width: calc(100% - 24px);

    gap: 22px;
  }

  .breadcrumbs {
    margin-bottom: 10px;

    font-size: 10px;
  }

  .hero-left h1 {
    margin-bottom: 10px;

    font-size: 27px;
  }

  .hero-left p {
    font-size: 12px;
  }

  .hero-right h2 {
    font-size: 20px;
  }


  /* -------------------------------------------------------
     SERVICES
  ------------------------------------------------------- */

  .services-section {
    padding: 40px 0;
  }

  .section-tag {
    font-size: 10px;
  }

  .section-title {
    font-size: 25px;
    margin-bottom: 24px;
  }

  .service-card {
    min-height: 230px;

    padding: 22px 17px 17px;

    border-radius: 10px;
  }

  .service-card .card-icon {
    width: 34px;
    height: 34px;

    margin-bottom: 13px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 12px;
  }


  /* -------------------------------------------------------
     STANDARD
  ------------------------------------------------------- */

  .standard-section {
    padding:
      40px 0
      50px;
  }

  .standard-title {
    font-size: 25px;
  }

  .standard-desc {
    font-size: 12px;
  }

  .standard-col {
    padding-top: 14px;
  }

  .standard-col h3 {
    font-size: 15px;
  }

  .standard-col p {
    font-size: 12px;
  }


  /* -------------------------------------------------------
     CTA
  ------------------------------------------------------- */

  .cta-banner {
    min-height: 230px;

    padding: 40px 14px;
  }

  .cta-content h2 {
    font-size: 25px;
  }

  .cta-content p {
    font-size: 12px;
  }

  .btn-cta {
    width: 100%;
    max-width: 240px;

    min-height: 42px;

    padding: 11px 18px;

    font-size: 13px;
  }


  /* -------------------------------------------------------
     FOOTER
  ------------------------------------------------------- */

  .footer {
    padding-top: 40px;
  }

  .footer-container {
    width: calc(100% - 24px);
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p {
    font-size: 12px;
  }

  .footer-column a {
    font-size: 12px;
  }
}


/* =========================================================
   EXTRA SMALL PHONES
   360px
========================================================= */

@media (max-width: 360px) {

  .container {
    width: calc(100% - 18px);
  }


  /* -------------------------------------------------------
     NAVBAR
  ------------------------------------------------------- */

  .nav-container {
    width: calc(100% - 16px);

    column-gap: 4px;
  }

  .logo-icon {
    width: 54px;
    height: 26px;
  }

  .logo-text {
    font-size: 13px;
  }

  .nav-actions {
    gap: 4px;
  }

  .btn-link {
    font-size: 9px;
  }

  .btn-primary {
    min-height: 30px;

    padding: 6px 7px;

    font-size: 9px;
  }

  .nav-links {
    gap: 6px 10px;
  }

  .nav-links a {
    font-size: 10px;
  }


  /* -------------------------------------------------------
     HERO
  ------------------------------------------------------- */

  .hero-content {
    width: calc(100% - 18px);
  }

  .hero-left h1 {
    font-size: 25px;
  }

  .hero-left p {
    font-size: 11.5px;
  }

  .hero-right h2 {
    font-size: 19px;
  }


  /* -------------------------------------------------------
     SERVICES
  ------------------------------------------------------- */

  .service-card {
    min-height: 220px;

    padding: 20px 15px 15px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 11.5px;
  }


  /* -------------------------------------------------------
     STANDARD
  ------------------------------------------------------- */

  .standard-title {
    font-size: 23px;
  }

  .standard-desc,
  .standard-col p {
    font-size: 11.5px;
  }


  /* -------------------------------------------------------
     CTA
  ------------------------------------------------------- */

  .cta-banner {
    min-height: 220px;

    padding: 35px 12px;
  }

  .cta-content h2 {
    font-size: 23px;
  }


  /* -------------------------------------------------------
     FOOTER
  ------------------------------------------------------- */

  .footer-container {
    width: calc(100% - 18px);
  }
}


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

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

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
