@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #303a4d;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(42,50,64,0.98);
  color: #fff;
  display: none;
  justify-content: center;
  gap: 12px;
  padding: 10px 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.sticky-cta__btn {
  background: #fff;
  color: #2a3240;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
}
.sticky-cta__btn--primary {
  background: #ff6b6b;
  color: #fff;
}
@media (min-width: 992px) {
  .sticky-cta { display: none; }
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #e6e9ef;
  background-color: #2a3240;
}

.title {
  font-size: 3rem;
  font-weight: 600;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
}

/* Dark Mode Toggle Button */
.theme-toggle {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 1.2rem;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  padding-left: 0;
}

.header__logo {
  position: relative;
  z-index: 2;
  margin-left: 10rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.header__logo:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
}

.header__logo img {
  height: 120px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.header__logo:hover img {
  transform: scale(1.02);
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-right: 5rem;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.menu__link::after { display: none; }

@media (hover:hover) and (pointer:fine) {
  .menu__link:hover::after { transform: scaleX(1); }
  .menu__link:hover { background-color: transparent; }
}

/* Navbar text/buttons in header: white for contrast over hero */
.header .menu__link {
  color: #fff;
}
.header .menu__link:hover { color: #fff; }
/* Avoid underline on submenu parents to prevent visual clash */
.menu__link.menu__link--submenu::after { display: none; }
/* Ensure dropdown chevron looks right on header */
.header .menu__link--submenu::after { color: #fff; opacity: 0.8; }
.header .actions-header__button {
  color: #fff;
  border-color: #fff;
}

/* Burger icon lines white over hero */
.header .icon-menu span,
.header .icon-menu::before,
.header .icon-menu::after {
  background-color: #fff;
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.icon-menu:hover {
  transform: scale(1.1);
}

.icon-menu span,
.icon-menu::before,
.icon-menu::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-menu::before {
  top: 0;
}

.icon-menu span {
  top: 50%;
  transform: translateY(-50%);
}

.icon-menu::after {
  bottom: 0;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #303a4d;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.actions-header__button:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: #fff;
}

/* Desktop: apply the same subtle lift movement to main navbar items as the Get Support button */
@media (hover:hover) and (pointer:fine) {
  .header .menu__list > .menu__item > .menu__link:hover,
  .header .menu__list > .menu__item > .menu__link:focus-visible {
    transform: translateY(-3px);
  }
}

/* Dark mode hover effects */
body.dark .header__logo:hover {
  filter: brightness(1.2);
}

body.dark .actions-header__button:hover {
  background-color: rgba(230, 233, 239, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ****************PAGES**************** */
.page__main {
  padding-bottom: 160px;
}

/* *****************HOME**************** */

.main {
  background: url("../images/Home/Home-Hero.jpg") top center / cover no-repeat;
  min-height: 85vh;
  position: relative;
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 16rem;
  position: relative;
  z-index: 1;
}

.main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.20) 50%, rgba(0, 0, 0, 0.35) 100%);
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.main__title {
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Smaller home hero title */
.main .main__title {
  font-size: 4rem;
}

.main__text {
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
}

/* Make home hero description span wider */
.main .main__text {
  max-width: 60rem;
}

/* Enlarge home hero description text only */
.page__main.main:not(.main_pages) .main__text {
  font-size: 1.375rem;
}

/* Make other pages' hero descriptions the same size/width */
.main_pages .main__text {
  font-size: 1.375rem;
  max-width: 60rem;
}

/* Make hero texts under the navbar white across all pages */
.page__main .main__caption,
.page__main .main__title,
.page__main .main__text {
  color: #fff;
  font-weight: 700;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #e6e9ef;
  background-color: #2a3240;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
}

.outro_home {
  background: url("../images/Home/CTA.jpg") center / cover no-repeat;
  min-height: 25vh;
  display: flex;
  align-items: center;
}


/* ************ABOUT**************** */

.main_about {
  background: url("../images/About/About-Hero.jpg") center / cover no-repeat;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  min-height: 614px;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.about__button-container {
  text-align: center;
  margin-top: 0.5rem;
}

.about__button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #2a3240;
  color: #e6e9ef;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.125rem;
}

.about__button:hover {
  background-color: #1a2332;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(48, 58, 77, 0.3);
}
/* Mobile: center the logo without moving menu/toggle */
@media (max-width: 768px) {
  .header__container { position: relative; }
  .header__logo {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    margin: 0;
    z-index: 3;
  }
  .header__logo img { height: 120px; width: auto; }
}

.outro_about {
  background: url("../images/About/CTA.jpg") center / cover no-repeat;
  min-height: 25vh;
  display: flex;
  align-items: center;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../images/Services/Services-Hero.jpg") center / cover no-repeat;
}

.services {
  background-color: #FFFFFF;
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 100%;
}

.item-services__image {
  margin-bottom: 2rem;
  max-width: 360px;
  height: 421px;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.item-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: #2a3240;
  border: 2px solid #2a3240;
  color: #e6e9ef;
}

.outro_services {
  background: url("../images/Services/CTA.jpg") center / cover no-repeat;
  min-height: 25vh;
  display: flex;
  align-items: center;
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  position: relative;
}

.testimonial__navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.testimonial__nav-btn {
  background: rgba(48, 58, 77, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.testimonial__nav-btn:hover {
  background: rgba(48, 58, 77, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial__nav-btn:active {
  transform: scale(0.95);
}

.testimonial__nav-btn svg {
  width: 20px;
  height: 20px;
}

.testimonial__nav-btn--prev {
  margin-left: 2rem;
}

.testimonial__nav-btn--next {
  margin-right: 2rem;
}

.testimonial__row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.testimonial__item {
  max-width: 360px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.testimonial__item.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateX(0);
  width: 100%;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  font-size: 3rem;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

.item-testimonial__rating {
  margin-bottom: 0.75rem;
}

/* Testimonial indicators */
.testimonial__indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.testimonial__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e1e4eb;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial__indicator:hover {
  background-color: #c1c4cb;
  transform: scale(1.2);
}

.testimonial__indicator.active {
  background-color: #303a4d;
  border-color: #303a4d;
  transform: scale(1.1);
}

/* Side-by-side testimonials */
.testimonial__item--side-by-side {
  max-width: 100% !important;
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonial__side-by-side {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
}

.testimonial__side-item {
  max-width: 360px;
  flex: 1;
  text-align: center;
}

.testimonial__side-item .item-testimonial__image,
.testimonial__side-item .item-testimonial__title,
.testimonial__side-item .item-testimonial__caption,
.testimonial__side-item .item-testimonial__rating,
.testimonial__side-item .item-testimonial__text {
  margin-bottom: 0.75rem;
}

/* Group testimonials (three in a row) */
.testimonial__item--group {
  max-width: 100% !important;
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonial__group {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

.testimonial__group-item {
  max-width: 360px;
  flex: 1;
  min-width: 300px;
  text-align: center;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 25vh;
}

.outro__title {
  margin-bottom: 1.25rem;
  margin-top: 0;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure outro content text is always white at the bottom of pages */
.outro__title,
.outro__text {
  color: #fff;
}

.outro__button {
  padding: 1.25rem 3rem;
  background-color: #2a3240;
  color: #e6e9ef;
}

/* ****************FOOTER**************** */

.footer {
  background-color: #1a2332;
  color: #e6e9ef;
  padding: 3rem 0 1.5rem;
  line-height: 1.6;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer__brand {
  max-width: 300px;
}

.footer__brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer__brand-description {
  color: #cbd5e0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2a3240;
  border-radius: 50%;
  color: #e6e9ef;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background-color: #3a4558;
  transform: translateY(-2px);
}

.footer__column-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

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

.footer__list-item {
  margin-bottom: 0.5rem;
}

.footer__list-link {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__list-link:hover {
  color: #fff;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #cbd5e0;
}

.footer__contact-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.footer__copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem 1rem;
  margin-top: 2rem;
  border-top: 1px solid #2a3240;
  color: #a0aec0;
  font-size: clamp(0.75rem, 2.5vw, 0.9rem);
  line-height: 1.4;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* Responsive Footer Styles */
@media (max-width: 992px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .footer__brand {
    text-align: center;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__copyright {
    padding: 1.5rem 0.75rem 1rem;
    margin-top: 1.5rem;
    font-size: clamp(0.7rem, 2.2vw, 0.85rem);
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .footer__container {
    gap: 1.5rem;
    padding: 0 0.75rem;
  }
  
  .footer__brand-title {
    font-size: 1.3rem;
  }
  
  .footer__column-title {
    font-size: 1rem;
  }
  
  .footer__social-link {
    width: 36px;
    height: 36px;
  }
  
  .footer__copyright {
    padding: 1.25rem 0.5rem 0.75rem;
    font-size: clamp(0.65rem, 2vw, 0.8rem);
    line-height: 1.2;
  }
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 300px;
}

.main_pages {
  min-height: 676px !important;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  min-height: 100vh; /* This ensures the container takes at least 100% of the viewport height */
  display: flex;
  flex-direction: column;
}


.services-page__item {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.services-page__item:not(:last-child) {
  padding-bottom: 48px;
  margin-bottom: 48px;
}

.services-page__column {
  display: flex;
  align-items: flex-start;
  gap: 97px;
  flex-direction: row;
}

.services-page__title {
  margin-bottom: 24px;
}

.services-page__text {
  margin-bottom: 0;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.5;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  flex: 0 0 auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-page__img img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 16px;
  object-fit: cover;
}

.services-page__button {
  margin-top: 0.5rem;
  background-color: #2a3240;
  color: #e6e9ef;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.services-page__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(48, 58, 77, 0.3);
  background-color: #1a2332;
}

/* Services page: content box styling (light mode) */
.services-page__content-box {
  background-color: #f8f9fb;
  border: 1px solid #e1e4eb;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.services-page__box-title {
  color: #000; /* Black text in normal mode */
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  text-align: center;
}

.services-page__box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.services-page__box-list li {
  margin-bottom: 1.25rem;
  line-height: 1.6;
  color: #000; /* Black text in normal mode */
  text-align: left;
}

.services-page__box-list li strong {
  color: #000; /* Black text in normal mode */
}

@media (max-width: 768px) {
  .services-page__content-box {
    padding: 1.25rem;
    margin-top: 1.5rem;
  }
}

/* Dark mode styles for Services page boxes */
body.dark .services-page__content-box {
  background-color: #151a22;
  border-color: #2a3240;
}

body.dark .services-page__box-title,
body.dark .services-page__box-list li,
body.dark .services-page__box-list li strong {
  color: #e6e9ef;
}

body.dark .services-page__microsoft365-box {
  background-color: #151a22;
  border-color: #2a3240;
}

body.dark .microsoft365__title {
  color: #fff;
}

body.dark .microsoft365__subtitle {
  color: #e6e9ef;
}

body.dark .microsoft365__description {
  color: #e6e9ef;
}

body.dark .microsoft365__section-title {
  color: #fff;
  border-bottom-color: #2a3240;
}

body.dark .microsoft365__benefits-list li,
body.dark .microsoft365__services-list li {
  background-color: #0e1116;
  border-left-color: #2a3240;
}

body.dark .microsoft365__benefits-list li:hover,
body.dark .microsoft365__services-list li:hover {
  background-color: #1a202c;
}

body.dark .microsoft365__benefits-list li strong,
body.dark .microsoft365__services-list li strong {
  color: #fff;
}

body.dark .microsoft365__benefits-list li span,
body.dark .microsoft365__services-list li span {
  color: #e6e9ef;
}

body.dark .microsoft365__cta {
  border-top-color: #2a3240;
}

body.dark .microsoft365__button {
  background-color: #2a3240;
}

body.dark .microsoft365__button:hover {
  background-color: #1a202c;
}

/* Note: Add dark mode later, e.g.
body.dark .services-page__content-box { background-color: #0e1116; border-color: #2a3240; }
body.dark .services-page__box-title, body.dark .services-page__box-list li, body.dark .services-page__box-list li strong { color: #e6e9ef; }
*/

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../images/Contact/Contact-Hero.jpg") center / cover no-repeat;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.contact__title {
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.connect-contact__item:hover {
  background-color: rgba(48, 58, 77, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 58, 77, 0.1);
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.connect-contact__item:hover .connect-contact__label {
  color: #2a3240;
}

body.dark .connect-contact__item:hover .connect-contact__label {
  color: #e6e9ef;
}

.connect-contact__icon {
  transition: transform 0.3s ease;
}

.connect-contact__item:hover .connect-contact__icon {
  transform: scale(1.1);
}

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

.contact__link {
  display: inline-block;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.contact__link:hover {
  background-color: rgba(48, 58, 77, 0.05);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(48, 58, 77, 0.15);
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
}

/* Business hours styling */
.contact__hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e4eb;
  width: 100%; /* ensures it stretches across the container */
}

.contact__hours-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.5rem;
}

/* Dark mode: business hours title should be white */
body.dark .contact__hours-title {
  color: #fff;
}

.contact__hours-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact__hours-info p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.contact__hours-info strong {
  color: #000;
}

/* Dark mode: business hours text should be white */
body.dark .contact__hours-info p,
body.dark .contact__hours-info strong {
  color: #fff;
}

/* Contact social section styling */
.contact__social-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e4eb;
}

/* Dark mode: social section border */
body.dark .contact__social-section {
  border-top-color: #2a3240;
}

/* Contact layout: make right side (form/info) wider on desktop */
.contact__contacts {
  flex: 0 0 38%;
  max-width: 38%;
}

.contact__info {
  flex: 0 0 62%;
  max-width: 62%;
}

.contact__info .contact__text {
  max-width: 100%;
}

/* Contact form styling */
.contact__form-wrapper { margin-top: 1.5rem; }
.contact-form {
  background-color: #fff;
  border: 1px solid #e1e4eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.contact-form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.contact-form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form__group label { font-weight: 600; color: #303a4d; font-size: 0.95rem; }
.contact-form__group input, .contact-form__group textarea, .contact-form__group select {
  padding: 0.75rem;
  border: 1px solid #e1e4eb;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form__group select { height: 44px; }

/* Checkbox styling for forms (support page and others) */
.contact-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #2a3240;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
}

body.dark .contact-form input[type="checkbox"] {
  accent-color: #2a3240; /* retains brand color; check mark renders white in dark mode */
}
.contact-form__group input:focus, .contact-form__group textarea:focus, .contact-form__group select:focus {
  outline: none; border-color: #303a4d; box-shadow: 0 0 0 3px rgba(48,58,77,0.1);
}
.contact-form__error { color: #e74c3c; font-size: 0.85rem; min-height: 1em; }
.contact-form__actions { margin-top: 0.5rem; display: flex; justify-content: flex-end; }
.contact-form__submit { 
  padding: 0.75rem 1.5rem; 
  border-radius: 8px; 
  background-color: #2a3240;
  color: #e6e9ef;
}
.contact-form__status { 
  margin-top: 1rem; 
  font-size: 0.95rem; 
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  display: none;
}

.contact-form__status:not(:empty) {
  display: block;
}

.contact-form__status--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-form__status--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-form__status--sending {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Dark mode */
body.dark .contact-form { background-color: #151a22; border-color: #2a3240; }
body.dark .contact-form__group label { color: #e6e9ef; }
body.dark .contact-form__group input, body.dark .contact-form__group textarea, body.dark .contact-form__group select {
  background-color: #0e1116; border-color: #2a3240; color: #e6e9ef;
}
body.dark .contact-form__status { 
  color: #e6e9ef; 
}

body.dark .contact-form__status--success {
  background-color: #1e4d2b;
  color: #d4edda;
  border-color: #2d5a3a;
}

body.dark .contact-form__status--error {
  background-color: #4d1e1e;
  color: #f8d7da;
  border-color: #5a2d2d;
}

body.dark .contact-form__status--sending {
  background-color: #1e4d4d;
  color: #d1ecf1;
  border-color: #2d5a5a;
}

/* Support page spacing */
.support__container {
  padding-bottom: 100px;
}

@media (max-width: 62.6875rem) {
  .support__container {
    padding-bottom: 60px;
  }
}
/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
  justify-content: center;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
  flex: 1;
  max-width: 500px;
  min-width: 500px;
  height: 600px;
  display: flex;
  flex-direction: column;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 120px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
  text-align: center;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 8px;
  text-align: center;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.item-pricing__list {
  margin-bottom: 64px;
  flex-grow: 1;
  min-height: 300px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.item-pricing__item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: left;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #e6e9ef;
  padding: 20px 82px;
  background-color: #2a3240;
  border-radius: 64px;
  margin-top: auto;
  align-self: center;
  text-decoration: none;
}

.team {
  background-color: #fff;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 1200px;
  font-size: 3.2rem;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  justify-items: center;
  width: 100%;
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
  width: 100%;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
  text-align: center;
}

.item-team__role span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************CAREERS PAGE**************** */
.careers__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.careers__title {
  text-align: center;
  margin-bottom: 4rem;
}

/* No Open Positions Section */
.careers__no-positions {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
  border: 1px solid #e1e4eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.careers__no-positions-content {
  max-width: 600px;
  margin: 0 auto;
}

.careers__no-positions-icon {
  margin-bottom: 1.5rem;
  color: #2a3240;
}

.careers__no-positions-icon svg {
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.careers__no-positions-icon:hover svg {
  transform: scale(1.1);
}

.careers__no-positions-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2a3240;
  margin-bottom: 1rem;
}

.careers__status-message {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  display: inline-block;
}

.careers__status-text {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  text-align: center;
}

.careers__no-positions-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
}

.careers__benefits {
  margin: 2.5rem 0;
  text-align: left;
}

.careers__benefits h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2a3240;
  text-align: center;
  margin-bottom: 1.5rem;
}

.careers__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.careers__benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(42, 50, 64, 0.1);
}

.careers__benefit-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.careers__benefit-item svg {
  color: #2a3240;
  flex-shrink: 0;
}

.careers__benefit-item span {
  font-weight: 500;
  color: #2a3240;
  font-size: 0.95rem;
}

.careers__apply-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42, 50, 64, 0.1);
}

.careers__apply-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.careers__apply-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #2a3240 0%, #1a202c 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(42, 50, 64, 0.3);
}

.careers__apply-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(42, 50, 64, 0.4);
  color: #fff;
  text-decoration: none;
}

.careers__apply-button svg {
  flex-shrink: 0;
}

/* Dark mode for no positions section */
body.dark .careers__no-positions {
  background: linear-gradient(135deg, #1a202c 0%, #0e1116 100%);
  border-color: #2a3240;
}

body.dark .careers__no-positions-title {
  color: #e6e9ef;
}

body.dark .careers__no-positions-text {
  color: #b0b8c8;
}

body.dark .careers__status-message {
  background: #2a3240;
  border-color: #1a202c;
}

body.dark .careers__status-text {
  color: #ffffff;
}

body.dark .careers__benefits h4 {
  color: #e6e9ef;
}

body.dark .careers__benefit-item {
  background: rgba(26, 32, 44, 0.7);
  border-color: rgba(42, 50, 64, 0.3);
}

body.dark .careers__benefit-item:hover {
  background: rgba(26, 32, 44, 0.9);
}

body.dark .careers__benefit-item svg,
body.dark .careers__benefit-item span {
  color: #e6e9ef;
}

body.dark .careers__apply-section {
  border-top-color: rgba(42, 50, 64, 0.3);
}

body.dark .careers__apply-text {
  color: #b0b8c8;
}

/* Responsive design for no positions section */
@media (max-width: 768px) {
  .careers__no-positions {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }
  
  .careers__no-positions-title {
    font-size: 1.75rem;
  }
  
  .careers__benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .careers__benefit-item {
    padding: 0.875rem;
  }
  
  .careers__apply-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

.careers__search {
  margin-bottom: 4rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e1e4eb;
}

.careers__search-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.careers__search-field {
  display: flex;
  flex-direction: column;
}

.careers__input,
.careers__select {
  padding: 0.75rem 1rem;
  border: 1px solid #e1e4eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  background-color: #fff;
  transition: border-color 0.3s;
}

.careers__input:focus,
.careers__select:focus {
  outline: none;
  border-color: #303a4d;
}

.careers__search-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.careers__search-btn,
.careers__show-all-btn {
  padding: 0.75rem 2rem;
  border: 2px solid #2a3240;
  background-color: #2a3240;
  color: #e6e9ef;
  transition: all 0.3s;
}

.careers__show-all-btn {
  background-color: transparent;
  color: #303a4d;
}

.careers__search-btn:hover,
.careers__show-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 58, 77, 0.2);
}

.careers__table-container {
  overflow-x: auto;
  border: 1px solid #e1e4eb;
  border-radius: 12px;
  background-color: #fff;
}

.careers__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.careers__table th {
  background-color: #f8f9fa;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  border-bottom: 2px solid #e1e4eb;
  color: #000;
}

.careers__table td {
  padding: 1rem;
  border-bottom: 1px solid #e1e4eb;
  vertical-align: middle;
  text-align: center;
  color: #000;
}

.careers__table tr:hover {
  background-color: #f8f9fa;
}

.careers__table tr:last-child td {
  border-bottom: none;
}

/* Careers page: Dark mode job boxes and text */
body.dark .careers__table-container {
  background-color: #151a22;
  border-color: #2a3240;
}

body.dark .careers__table th,
body.dark .careers__table td {
  color: #e6e9ef;
  background-color: #151a22;
  border-bottom-color: #2a3240;
}

body.dark .careers__table tr:hover {
  background-color: #0e1116;
}

/* Keep any star ratings yellow in both modes */
body.dark .careers__table .rating,
body.dark .careers__table .star {
  color: #ffd700;
}

/* Dark mode: Job Description button */
body.dark .careers__job-desc-btn {
  background-color: #2a3240 !important;
  color: #e6e9ef !important;
  border-color: #2a3240 !important;
}

body.dark .careers__job-desc-btn:hover {
  background-color: #1a202c !important;
  color: #e6e9ef !important;
  border-color: #2a3240 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Dark mode: Modal styling */
body.dark .careers__modal-content {
  background-color: #151a22;
  border: 1px solid #2a3240;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

body.dark .careers__modal-close {
  color: #e6e9ef;
}

body.dark .careers__modal-close:hover {
  color: #fff;
}

body.dark .careers__modal-content h3 {
  color: #fff;
}

body.dark .careers__job-description h4 {
  color: #fff;
  border-bottom-color: #2a3240;
}

body.dark .careers__job-description h5 {
  color: #fff;
}

body.dark .careers__job-description p {
  color: #e6e9ef;
}

body.dark .careers__job-description li {
  color: #e6e9ef;
}

body.dark .careers__modal-actions {
  border-top-color: #2a3240;
}

body.dark .careers__form-group label {
  color: #fff;
}

body.dark .careers__form-group input,
body.dark .careers__form-group textarea {
  background-color: #0e1116;
  border-color: #2a3240;
  color: #e6e9ef;
}

body.dark .careers__form-group input:focus,
body.dark .careers__form-group textarea:focus {
  border-color: #4a5568;
  box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.1);
}

body.dark .careers__form-group input::placeholder,
body.dark .careers__form-group textarea::placeholder {
  color: #9aa4b2;
}

/* Apply button styling */
.careers__apply-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background-color: #2a3240;
  color: #e6e9ef;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.careers__apply-btn:hover {
  background-color: #1a202c;
  transform: translateY(-1px);
}

/* Action buttons container */
.careers__action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Job Description button styling */
.careers__job-desc-btn {
  padding: 0.5rem 1rem !important;
  font-size: 0.875rem !important;
  background-color: #2a3240 !important;
  color: #e6e9ef !important;
  border: 2px solid #2a3240 !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.careers__job-desc-btn:hover {
  background-color: #1a202c !important;
  color: #e6e9ef !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Job Description modal styling */
.careers__job-description {
  max-height: none;
  overflow-y: visible;
  padding: 1rem 0;
  line-height: 1.6;
}

.careers__job-description h4 {
  color: #303a4d;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e1e4eb;
  padding-bottom: 0.5rem;
}

.careers__job-description h5 {
  color: #303a4d;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem 0;
  font-weight: 600;
}

.careers__job-description p {
  margin-bottom: 1rem;
  color: #555;
}

.careers__job-description ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.careers__job-description li {
  margin-bottom: 0.5rem;
  color: #555;
}

.careers__modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
  border-top: 1px solid #e1e4eb;
  padding-top: 1.5rem;
}

.careers__apply-from-desc-btn {
  background-color: #2a3240;
  color: #e6e9ef;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.careers__apply-from-desc-btn:hover {
  background-color: #1a2332;
  transform: translateY(-1px);
}

.careers__close-desc-btn {
  background-color: transparent;
  color: #2a3240;
  border: 2px solid #2a3240;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.careers__close-desc-btn:hover {
  background-color: #303a4d;
  color: #fff;
}

/* Modal styling */
.careers__modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.careers__modal-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.careers__modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
}

.careers__modal-close:hover {
  color: #303a4d;
}

.careers__modal-content h3 {
  margin-bottom: 1.5rem;
  color: #303a4d;
  font-size: 1.5rem;
}

/* Form styling */
.careers__application-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Error message styling */
.careers__error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  padding: 0.25rem 0;
  font-weight: 500;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.careers__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.careers__form-group label {
  font-weight: 600;
  color: #303a4d;
  font-size: 0.875rem;
}

.careers__form-group input,
.careers__form-group textarea {
  padding: 0.75rem;
  border: 1px solid #e1e4eb;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.careers__form-group input:focus,
.careers__form-group textarea:focus {
  outline: none;
  border-color: #303a4d;
}

.careers__form-group small {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.25rem;
}

.careers__form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

.careers__submit-btn {
  background-color: #2a3240;
  color: #e6e9ef;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.careers__submit-btn:hover {
  background-color: #1a202c;
  transform: translateY(-1px);
}

.careers__cancel-btn {
  background-color: transparent;
  color: #2a3240;
  border: 2px solid #2a3240;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.careers__cancel-btn:hover {
  background-color: #303a4d;
  color: #fff;
}

/* ****************PAY INVOICE PAGE**************** */
.payinvoice__container {
  padding-top: 140px;
  padding-bottom: 140px;
  max-width: 800px;
  margin: 0 auto;
}

.payinvoice__intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e1e4eb;
}

.payinvoice__intro p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #303a4d;
}

.payinvoice__mailing-address {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.payinvoice__form {
  background-color: #fff;
  border: 1px solid #e1e4eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payinvoice__section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e1e4eb;
}

.payinvoice__section:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.payinvoice__section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1.5rem;
}

.payinvoice__form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.payinvoice__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.payinvoice__form-group label {
  font-weight: 600;
  color: #303a4d;
  font-size: 0.875rem;
}

.payinvoice__form-group input,
.payinvoice__form-group select,
.payinvoice__form-group textarea {
  padding: 0.75rem;
  border: 1px solid #e1e4eb;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
  background-color: #fff;
}

.payinvoice__form-group input:focus,
.payinvoice__form-group select:focus,
.payinvoice__form-group textarea:focus {
  outline: none;
  border-color: #303a4d;
  box-shadow: 0 0 0 3px rgba(48, 58, 77, 0.1);
}

.payinvoice__form-group input::placeholder,
.payinvoice__form-group textarea::placeholder {
  color: #999;
}

.payinvoice__supported-cards {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e1e4eb;
}

.payinvoice__supported-cards small {
  color: #666;
  font-size: 0.875rem;
}

.payinvoice__form-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.payinvoice__submit-btn {
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: #2a3240;
  color: #e6e9ef;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 200px;
}

.payinvoice__submit-btn:hover {
  background-color: #1a2332;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 58, 77, 0.2);
}

.payinvoice__submit-btn:active {
  transform: translateY(0);
}

/* Error state styling */
.payinvoice__form-group input.error,
.payinvoice__form-group select.error,
.payinvoice__form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Success state styling */
.payinvoice__form-group input.success,
.payinvoice__form-group select.success,
.payinvoice__form-group textarea.success {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Pay Invoice: Dark mode styles */
body.dark .payinvoice__intro {
  background-color: #151a22;
  border-color: #2a3240;
}

body.dark .payinvoice__intro p,
body.dark .payinvoice__mailing-address {
  color: #e6e9ef;
}

body.dark .payinvoice__form {
  background-color: #151a22;
  border-color: #2a3240;
}

body.dark .payinvoice__section-title,
body.dark .payinvoice__form-group label {
  color: #fff;
}

body.dark .payinvoice__supported-cards {
  background-color: #0e1116;
  border-color: #2a3240;
}

body.dark .payinvoice__supported-cards small {
  color: #e6e9ef;
}

body.dark .payinvoice__form-group input,
body.dark .payinvoice__form-group select,
body.dark .payinvoice__form-group textarea {
  background-color: #0e1116;
  border-color: #2a3240;
  color: #e6e9ef;
}

body.dark .payinvoice__form-group input::placeholder,
body.dark .payinvoice__form-group textarea::placeholder {
  color: #9aa4b2;
}

/* Stripe Buy Button Section Styles */
.payinvoice__stripe-section {
  text-align: center;
  margin-top: 2rem;
  background-color: #fff;
  border: 1px solid #e1e4eb;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
}

.payinvoice__stripe-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-color: #d1d5db;
}

/* Ensure proper text colors in light mode */
.payinvoice__stripe-section .payinvoice__section-title {
  color: #303a4d;
}

.payinvoice__stripe-button-container {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #e1e4eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
}

.payinvoice__stripe-button-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.payinvoice__security-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border: 1px solid #e1e4eb;
  border-radius: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.payinvoice__security-note p {
  margin: 0;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.payinvoice__security-note-button-container {
  text-align: center;
  margin-top: 1rem;
}

.payinvoice__security-note-button {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #2a3240;
  color: #e6e9ef;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 600;
}

.payinvoice__security-note-button:hover {
  background-color: #1a2332;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(48, 58, 77, 0.25);
}

/* Dark mode styles for Stripe section */
body.dark .payinvoice__stripe-section {
  background-color: #151a22;
  border-color: #2a3240;
  color: #e6e9ef;
}

/* Dark mode styles for Stripe button container */
body.dark .payinvoice__stripe-button-container {
  background-color: #0e1116;
  border-color: #2a3240;
  color: #e6e9ef;
}

body.dark .payinvoice__stripe-button-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border-color: #4a5568;
}

/* Stripe button styling - colors controlled by HTML attributes */
.payinvoice__stripe-button-container stripe-buy-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Ensure Stripe button integrates well with container */
.payinvoice__stripe-button-container stripe-buy-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Container styling for better visual hierarchy */
.payinvoice__stripe-button-container {
  position: relative;
  border-radius: 12px;
  transition: all 0.3s ease;
}

body.dark .payinvoice__stripe-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: #4a5568;
}

/* Ensure proper text colors in dark mode */
body.dark .payinvoice__stripe-section .payinvoice__section-title {
  color: #fff;
}

body.dark .payinvoice__security-note {
  background-color: #0e1116;
  border-color: #2a3240;
}

body.dark .payinvoice__security-note p {
  color: #e6e9ef;
}

body.dark .payinvoice__security-note-button {
  background-color: #2a3240;
  color: #e6e9ef;
}

body.dark .payinvoice__security-note-button:hover {
  background-color: #1a202c;
  color: #e6e9ef;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile responsiveness for Stripe section */
@media (max-width: 768px) {
  .payinvoice__stripe-section {
    padding: 2rem 1.5rem;
    margin: 1.5rem 1rem;
  }
  
  .payinvoice__stripe-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  }
  
  body.dark .payinvoice__stripe-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  }
  
  .payinvoice__stripe-button-container {
    margin: 1.5rem 0;
    padding: 1.5rem;
  }
  
  .payinvoice__stripe-button-container:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  }
  
  body.dark .payinvoice__stripe-button-container:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  }
  
  .payinvoice__stripe-button-container stripe-buy-button {
    max-width: 100%;
  }
  
  .payinvoice__security-note {
    margin: 1rem;
    padding: 0.875rem;
  }
  
  .payinvoice__security-note p {
    font-size: 0.8rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .payinvoice__stripe-button-container {
    padding: 1.25rem;
    margin: 1rem 0;
  }
  
  .payinvoice__stripe-button-container:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  body.dark .payinvoice__stripe-button-container:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #2a3240;
  color: #e6e9ef;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #2a3240;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

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

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

  .team__item {
    max-width: 100%;
  }

  .item-team__img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .pricing__row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .pricing__column {
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  /* Ensure pricing cards grow with content on mobile */
  .pricing__column {
    height: auto;
    min-height: 0;
  }
  .pricing__item { height: auto; }
  .item-pricing__list { min-height: auto; }
  .item-pricing__cost { font-size: 42px; }
  .item-pricing__button { width: 100%; max-width: 320px; }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__copyright {
    align-self: flex-end;
    text-align: right;
    margin: 0.5rem 0;
    width: 100%;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 47.999rem) {
  .careers__search-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .careers__search-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .careers__search-btn,
  .careers__show-all-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .careers__table {
    font-size: 0.875rem;
  }
  
  .careers__table th,
  .careers__table td {
    padding: 0.75rem 0.5rem;
  }
  
  .careers__apply-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .careers__modal-content {
    margin: 5% auto;
    padding: 1.5rem;
    width: 95%;
    max-width: 95%;
    max-height: 85vh;
  }
  
  .careers__job-description {
    font-size: 0.9rem;
  }
  
  .careers__job-description h4 {
    font-size: 1.1rem;
  }
  
  .careers__job-description h5 {
    font-size: 1rem;
  }
  
  .careers__form-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .careers__submit-btn,
  .careers__cancel-btn {
    width: 100%;
  }
  
  .payinvoice__container {
    padding-top: 70px;
    padding-bottom: 70px;
    max-width: 95%;
  }
  
  .payinvoice__form {
    padding: 1.5rem;
  }
  
  .payinvoice__form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .payinvoice__section-title {
    font-size: 1.25rem;
  }
  
  .payinvoice__submit-btn {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .icon-menu {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #303a4d;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 80px;
    gap: 50px;
    padding-bottom: 80px;
  }

  /* Reset custom widths on mobile */
  .contact__contacts,
  .contact__info {
    max-width: 100%;
    flex: 1 1 auto;
  }

  .icon-menu {
    display: block;
  }

  .menu-open .icon-menu span {
    opacity: 0;
    transform: translateY(-50%) scale(0);
  }

  .menu-open .icon-menu::before {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: 50%;
    transform: translateY(50%) rotate(45deg);
  }

  .menu__body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    padding: 5rem 0 2rem;
    overflow-y: auto;
    flex-direction: column;
    row-gap: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  }

  .menu__body::after {
    content: "Menu";
    position: fixed;
    top: 1.5rem;
    left: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a3240;
    z-index: 1001;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease 0.2s;
  }

  .menu-open .menu__body::after {
    opacity: 1;
    transform: translateX(0);
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid rgba(225, 228, 235, 0.3);
    z-index: 2;
    backdrop-filter: blur(10px);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 0;
  }

  .menu__item:hover {
    background-color: rgba(42, 50, 64, 0.05);
    transform: translateX(8px);
  }

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

  .menu__link {
    font-size: 1.5rem;
    color: #2a3240 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
  }

  .menu__link:hover {
    color: #1a2332 !important;
    background-color: rgba(42, 50, 64, 0.05);
  }

  .menu__link--submenu::after {
    content: "▶";
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #6c757d;
  }

  .menu__item--has-submenu.menu-open .menu__link--submenu::after {
    transform: rotate(90deg);
  }

  .actions-header__button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2a3240 0%, #1a2332 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem 1rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(42, 50, 64, 0.2);
    position: relative;
    overflow: hidden;
  }

  .actions-header__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .actions-header__button:hover::before {
    left: 100%;
  }

  .actions-header__button:hover {
    background: linear-gradient(135deg, #1a2332 0%, #0e1116 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 50, 64, 0.4);
  }

  .main__container {
    padding-top: 12.5rem;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  flex: 1;
}

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
    min-height: auto;
  }
  
  .about__content {
    align-items: center;
    text-align: center;
  }
  
  .about__text {
    margin-bottom: 2rem;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .testimonial__navigation {
    position: relative;
    top: auto;
    transform: none;
    margin-bottom: 2rem;
  }

  .testimonial__nav-btn--prev {
    margin-left: 0;
  }

  .testimonial__nav-btn--next {
    margin-right: 0;
  }

  .testimonial__item {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .testimonial__indicators {
    margin-top: 1.5rem;
  }

  .testimonial__side-by-side {
    flex-direction: column;
    gap: 2rem;
  }

  .testimonial__side-item {
    max-width: 100%;
  }

  .testimonial__group {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .testimonial__group-item {
    max-width: 100%;
    min-width: auto;
    text-align: center;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .logo {
    font-size: 1rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .about__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 2rem;
  }
  
  .about__image {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  
  .about__text {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .reviews__row {
    grid-template-columns: 1fr;
  }

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

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

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

/* ****************TESTIMONIALS PAGE**************** */

.main_testimonials {
  background: url("../images/Testimonials/Testimonials-Hero.jpg") center / cover no-repeat;
}

.testimonials-page__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  text-align: center;
  position: relative;
}

.testimonials-page__title {
  margin-bottom: 5rem;
  font-weight: 600;
}

/* Testimonials Slides Container */
.testimonials-page__slides {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  overflow: hidden;
}

/* Individual Slide */
.testimonials-page__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.testimonials-page__slide.active {
  opacity: 1;
  visibility: visible;
}

/* Slide Content Container */
.testimonials-page__slide-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
}

/* Three Testimonials Slide */
.testimonials-page__slide--three .testimonials-page__slide-content {
  justify-content: space-between;
}

.testimonials-page__slide--three .testimonials-page__testimonial {
  flex: 0 0 350px;
  width: 350px;
  max-width: 350px;
  min-width: 350px;
}

/* Ensure all three testimonials have identical sizing regardless of position */
.testimonials-page__slide--three .testimonials-page__testimonial--left,
.testimonials-page__slide--three .testimonials-page__testimonial--center,
.testimonials-page__slide--three .testimonials-page__testimonial--right {
  flex: 0 0 350px;
  width: 350px;
  max-width: 350px;
  min-width: 350px;
}

/* Two Testimonials Slide */
.testimonials-page__slide--two .testimonials-page__slide-content {
  justify-content: space-between;
}

.testimonials-page__slide--two .testimonials-page__testimonial {
  flex: 0 0 500px;
  width: 500px;
  max-width: 500px;
  min-width: 500px;
}

/* Ensure both testimonials on the two-testimonial slide have identical sizing */
.testimonials-page__slide--two .testimonials-page__testimonial--left,
.testimonials-page__slide--two .testimonials-page__testimonial--right {
  flex: 0 0 500px;
  width: 500px;
  max-width: 500px;
  min-width: 500px;
}

/* Individual Testimonial */
.testimonials-page__testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1e4eb;
  height: 500px;
  min-height: 500px;
  max-height: 500px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}



/* Testimonial Image */
.testimonials-page__testimonial-image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #303a4d;
}

.testimonials-page__testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonial Content */
.testimonials-page__testimonial-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 0.5rem;
}

.testimonials-page__testimonial-role {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 500;
}

.testimonials-page__testimonial-rating {
  font-size: 1.25rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.testimonials-page__testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 100%;
}

/* Navigation Indicators */
.testimonials-page__indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 3rem;
}

.testimonials-page__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e1e4eb;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonials-page__indicator:hover {
  background-color: #c1c4cb;
  transform: scale(1.2);
}

.testimonials-page__indicator.active {
  background-color: #303a4d;
  border-color: #303a4d;
  transform: scale(1.1);
}

/* Navigation Arrows */
.testimonials-page__navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.testimonials-page__nav-btn {
  background: rgba(48, 58, 77, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.testimonials-page__nav-btn:hover {
  background: rgba(48, 58, 77, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonials-page__nav-btn:active {
  transform: scale(0.95);
}

.testimonials-page__nav-btn svg {
  width: 20px;
  height: 20px;
}

.testimonials-page__nav-btn--prev {
  margin-left: 2rem;
}

.testimonials-page__nav-btn--next {
  margin-right: 2rem;
}

/* Outro section for testimonials page */
.outro_testimonials {
  background: url("../images/Testimonials/CTA.jpg") center / cover no-repeat;
  min-height: 25vh;
  display: flex;
  align-items: center;
}

/* Responsive Design for Testimonials Page */
@media (max-width: 1200px) {
  .testimonials-page__slide-content {
    max-width: 100%;
    padding: 0 1.5rem;
  }
}

@media (max-width: 992px) {
  .testimonials-page__slide--three .testimonials-page__testimonial,
  .testimonials-page__slide--three .testimonials-page__testimonial--left,
  .testimonials-page__slide--three .testimonials-page__testimonial--center,
  .testimonials-page__slide--three .testimonials-page__testimonial--right {
    flex: 0 0 300px;
    width: 300px;
    max-width: 300px;
    min-width: 300px;
  }
  
  .testimonials-page__slide--two .testimonials-page__testimonial,
  .testimonials-page__slide--two .testimonials-page__testimonial--left,
  .testimonials-page__slide--two .testimonials-page__testimonial--right {
    flex: 0 0 400px;
    width: 400px;
    max-width: 400px;
    min-width: 400px;
  }
}

@media (max-width: 768px) {
  .testimonials-page__slides {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }
  
  .testimonials-page__slide {
    position: relative !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .testimonials-page__slide-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    height: auto;
    position: relative;
  }
  
  .testimonials-page__slide--three .testimonials-page__testimonial,
  .testimonials-page__slide--three .testimonials-page__testimonial--left,
  .testimonials-page__slide--three .testimonials-page__testimonial--center,
  .testimonials-page__slide--three .testimonials-page__testimonial--right,
  .testimonials-page__slide--two .testimonials-page__testimonial,
  .testimonials-page__slide--two .testimonials-page__testimonial--left,
  .testimonials-page__slide--two .testimonials-page__testimonial--right {
    flex: 1;
    width: 100%;
    max-width: 100%;
    min-width: auto;
    height: auto;
    min-height: auto;
    max-height: none;
    position: relative;
  }
  
  .testimonials-page__navigation {
    position: relative;
    top: auto;
    transform: none;
    margin: 2rem 0;
    justify-content: center;
    gap: 2rem;
  }
  
  .testimonials-page__nav-btn--prev,
  .testimonials-page__nav-btn--next {
    margin: 0;
  }
  
  .testimonials-page__testimonial {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .testimonials-page__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .testimonials-page__title {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
  
  .testimonials-page__testimonial {
    padding: 1.5rem 1rem;
    border-radius: 12px;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .testimonials-page__testimonial-name {
    font-size: 1.25rem;
  }
  
  .testimonials-page__testimonial-role {
    font-size: 0.9rem;
  }
  
  .testimonials-page__testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .testimonials-page__testimonial-image {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  
  .testimonials-page__indicators {
    margin-top: 2rem;
    gap: 8px;
  }
  
  .testimonials-page__indicator {
    width: 10px;
    height: 10px;
  }

  /* Home Services: ensure cards and images fit on small phones */
  .services__row { gap: 2rem; }
  .item-services { align-items: center; text-align: center; }
  .item-services__image { height: auto; max-width: 100%; aspect-ratio: 4 / 3; }
  .item-services__title { font-size: 1.25rem; }
  .item-services__text { max-width: 100%; font-size: 1rem; }
  .item-services__button { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  /* Hero heading and subtext - comfortable fit on small phones */
  .main__title { font-size: 2.25rem; line-height: 1.15; margin-bottom: 1rem; }
  .main__text { font-size: 1rem; line-height: 1.55; padding: 0 1rem; }
  .testimonials-page__container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .testimonials-page__title {
    margin-bottom: 2rem;
    font-size: 1.75rem;
  }
  
  .testimonials-page__testimonial {
    padding: 1.25rem 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .testimonials-page__testimonial-name {
    font-size: 1.125rem;
  }
  
  .testimonials-page__testimonial-role {
    font-size: 0.85rem;
  }
  
  .testimonials-page__testimonial-text {
    font-size: 0.9rem;
  }
  
  .testimonials-page__testimonial-image {
    width: 60px;
    height: 60px;
  }
  
  .testimonials-page__navigation {
    gap: 1.5rem;
  }
  
  .testimonials-page__nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .testimonials-page__nav-btn svg {
    width: 16px;
    height: 16px;
  }
  
  /* Ensure testimonial boxes are always visible on mobile */
  .testimonials-page__testimonial {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
  }
}

/* *************GLOBAL SPACING REDUCTION (sections only; header unchanged)************* */
.page__main {
  padding-bottom: 60px;
}

.about__container,
.services__container,
.testimonial__container,
.testimonials-page__container,
.outro__container,
.pricing__container,
.team__container,
.faqs__container,
.director__container,
.gallery__container,
.resources__container,
.reviews__container,
.contact__container,
.services-page__container,
.careers__container,
.payinvoice__container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.services-page__item {
  margin-bottom: 48px;
}

 .services-page__item:not(:last-child) {
   padding-bottom: 48px;
   margin-bottom: 48px;
 }

/* ****************DARK MODE**************** */
body.dark {
  background-color: #0e1116;
  color: #e6e9ef;
}

/* Dark mode: home page testimonial boxes */
body.dark .testimonials-page__testimonial {
  background-color: #151a22;
  border-color: #2a3240;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body.dark .testimonials-page__testimonial-name {
  color: #fff;
}

body.dark .testimonials-page__testimonial-role {
  color: #e6e9ef;
}

body.dark .testimonials-page__testimonial-text {
  color: #e6e9ef;
}

/* Keep star ratings yellow in both modes */
body.dark .testimonials-page__testimonial-rating {
  color: #ffd700;
}

/* Dark mode navigation buttons */
body.dark .testimonials-page__nav-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark .testimonials-page__nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Dark mode indicators */
body.dark .testimonials-page__indicator {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark .testimonials-page__indicator:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

body.dark .testimonials-page__indicator.active {
  background-color: #fff;
  border-color: #fff;
}

/* Star rating with half-star support */
.rating{position:relative;display:inline-block;font-size:1.25rem;line-height:1;font-family:"Segoe UI Symbol","Apple Color Emoji","Noto Color Emoji","Arial Unicode MS","Helvetica Neue",Arial,sans-serif}
.rating::before{content:"★★★★★";color:#e1e4eb}
.rating::after{content:"★★★★★";color:#ffd700;position:absolute;inset:0;width:calc(var(--rating)/5*100%);overflow:hidden;white-space:nowrap}

/* Keep header transparent in dark mode */
body.dark .header {
  background: transparent;
}

body.dark .menu__link {
  color: #e6e9ef;
}

body.dark .actions-header__button {
  color: #e6e9ef;
  border-color: #e6e9ef;
}

body.dark .theme-toggle {
  color: #e6e9ef;
  border-color: #e6e9ef;
}

body.dark .icon-menu span,
body.dark .icon-menu::before,
body.dark .icon-menu::after {
  background-color: #e6e9ef;
}

/* Ensure mobile menu button is visible and properly styled */
.menu__icon.icon-menu {
  display: none;
  position: relative;
  width: 1.875rem;
  height: 1.125rem;
  cursor: pointer;
  z-index: 5;
  background: none;
  border: none;
  padding: 0;
}

/* Show hamburger menu on mobile only */
@media (max-width: 768px) {
  .menu__icon.icon-menu {
    display: block !important;
  }
}

/* Ensure header actions are visible on mobile */
.header__actions {
  display: flex !important;
  align-items: center;
  gap: 1rem;
}

body.dark .button {
  background-color: #2a3240;
  color: #e6e9ef;
}

body.dark .services {
  background-color: #0e1116;
}

body.dark .team {
  background-color: #0e1116;
}

body.dark .item-team__name {
  color: #fff;
}

body.dark .item-team__role {
  color: #e6e9ef;
}

body.dark .item-team__text {
  color: #e6e9ef;
}

body.dark .pricing__column {
  background-color: #151a22;
  border-color: #2a3240;
}

body.dark .pricing__item {
  background-color: #151a22;
}

body.dark .item-pricing__label {
  color: #fff;
}

body.dark .item-pricing__cost {
  color: #e6e9ef;
}

body.dark .item-pricing__item {
  color: #e6e9ef;
}

body.dark .item-pricing__button {
  background-color: #2a3240;
  color: #e6e9ef;
}

body.dark .item-pricing__button:hover {
  background-color: #1a202c;
}

/* Dark mode footer - footer is already dark by default */
body.dark .footer {
  background-color: #0e1116;
}

body.dark .footer__social-link {
  background-color: #1a2332;
}

body.dark .footer__social-link:hover {
  background-color: #2a3240;
}

body.dark .footer__copyright {
  border-top-color: #1a2332;
  color: #a0aec0;
}

/* Dark mode: About page */
body.dark .about__title {
  color: #fff;
}

body.dark .about__text {
  color: #e6e9ef;
}

/* Dark mode: General content areas */
body.dark .title {
  color: #fff;
}

body.dark .main__title {
  color: #fff;
}

body.dark .main__text {
  color: #e6e9ef;
}

body.dark .outro__title {
  color: #fff;
}

body.dark .outro__text {
  color: #e6e9ef;
}

body.dark .testimonial__nav-btn {
  background: rgba(42, 50, 64, 0.9);
}

body.dark .testimonial__indicator {
  background-color: #2a3240;
}

body.dark .testimonial__indicator.active {
  background-color: #4a5568;
}

.services-page__content {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-page__row {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}

.services-page__item {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-page__item:not(:last-child) {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

/* Microsoft 365 Business Premium Solutions Box */
.services-page__microsoft365-box {
  background-color: #fff;
  border: 1px solid #e1e4eb;
  border-radius: 16px;
  padding: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.microsoft365__header {
  text-align: center;
  margin-bottom: 3rem;
}

.microsoft365__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.microsoft365__subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.microsoft365__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.microsoft365__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.microsoft365__section {
  margin-bottom: 2rem;
}

.microsoft365__section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e1e4eb;
}

.microsoft365__benefits-list,
.microsoft365__services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.microsoft365__benefits-list li,
.microsoft365__services-list li {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #303a4d;
  transition: all 0.3s ease;
}

.microsoft365__benefits-list li:hover,
.microsoft365__services-list li:hover {
  background-color: #f0f2f5;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.microsoft365__benefits-list li strong,
.microsoft365__services-list li strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 0.5rem;
}

.microsoft365__benefits-list li span,
.microsoft365__services-list li span {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
}

.microsoft365__cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e1e4eb;
}

.microsoft365__button {
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  background-color: #2a3240;
  color: #e6e9ef;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 600;
}

.microsoft365__button:hover {
  background-color: #1a2332;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(48, 58, 77, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .services-page__microsoft365-box {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .microsoft365__title {
    font-size: 2rem;
  }

  .microsoft365__subtitle {
    font-size: 1.125rem;
  }

  .microsoft365__description {
    font-size: 1rem;
  }

  .microsoft365__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .microsoft365__section-title {
    font-size: 1.25rem;
  }

  .microsoft365__benefits-list li,
  .microsoft365__services-list li {
    padding: 0.875rem;
  }

  .microsoft365__button {
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .services-page__microsoft365-box {
    padding: 1.5rem 1rem;
  }

  .microsoft365__title {
    font-size: 1.75rem;
  }

  .microsoft365__subtitle {
    font-size: 1rem;
  }

  .microsoft365__description {
    font-size: 0.95rem;
  }
}

/* *************SUPPORT INFO SECTION************* */
.support-info__box {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.support-info__box {
  background-color: #fff;
  border: 1px solid #e1e4eb;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-info__box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.support-info__content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.support-info__button-container {
  text-align: center;
}

.support-info__button {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  background-color: #2a3240;
  color: #e6e9ef;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 600;
}

.support-info__button:hover {
  background-color: #1a2332;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(48, 58, 77, 0.3);
}

/* Dark mode styles for support info */
body.dark .support-info__box {
  background-color: #151a22;
  border-color: #2a3240;
}

body.dark .support-info__content p {
  color: #e6e9ef;
}

/* Theme-aware support info icon color */
.support-info__icon { color: #2a3240; }
body.dark .support-info__icon { color: #ffffff; }

/* Mobile responsiveness */
@media (max-width: 768px) {
  .support-info__box {
    padding: 2rem 1.5rem;
    margin: 2rem 1rem 0 1rem;
  }
  
  .support-info__content p {
    font-size: 1rem;
  }
  
  .support-info__button {
    font-size: 1rem;
    padding: 0.875rem 2rem;
    width: 100%;
    max-width: 300px;
  }
}

/* *************FAQ AUTOPILOT PAGE************* */
.main_faq-autopilot {
  background: url("../images/Services/Services-Hero.jpg") center / cover no-repeat;
}

.faq-autopilot__container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-autopilot__content-box {
  background-color: #fff;
  border: 1px solid #e1e4eb;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform, box-shadow;
  color: #000;
}

.faq-autopilot__content-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Image Section Styles */
.faq-autopilot__images-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-autopilot__image-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-autopilot__image {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-autopilot__image-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.faq-autopilot__image-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Video Section Styles */
.faq-autopilot__video-section {
  text-align: center;
}

.faq-autopilot__video-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.faq-autopilot__video-container {
  margin-bottom: 2rem;
}

.faq-autopilot__video {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-autopilot__video-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Section Styles */
.faq-autopilot__faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-autopilot__section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 2.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e1e4eb;
}

.faq-autopilot__faq-item {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #303a4d;
  transition: all 0.3s ease;
}

.faq-autopilot__faq-item:hover {
  background-color: #f0f2f5;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-autopilot__question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-autopilot__answer {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* CTA Section Styles */
.faq-autopilot__cta-section {
  text-align: center;
  padding: 2rem;
}

.faq-autopilot__cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: #303a4d;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.faq-autopilot__cta-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-autopilot__cta-button-container {
  text-align: center;
  margin-top: 2rem;
}

.faq-autopilot__cta-button {
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  background-color: #2a3240;
  color: #e6e9ef;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 600;
}

.faq-autopilot__cta-button:hover {
  background-color: #1a2332;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(48, 58, 77, 0.3);
}

/* Outro Section */
.outro_faq-autopilot {
  background: url("../images/Services/CTA.jpg") center / cover no-repeat;
  min-height: 25vh;
  display: flex;
  align-items: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Get Support: stack download cards and make buttons/images fit */
  .services-page__row { flex-direction: column; gap: 2rem; align-items: center; }
  .services-page__item { max-width: 100%; }
  .services-page__img img { max-width: 100%; height: auto; }
  .services-page__button { width: 100%; max-width: 300px; }
  .faq-autopilot__container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .faq-autopilot__content-box {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .faq-autopilot__images-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .faq-autopilot__image {
    height: 250px;
  }

  .faq-autopilot__image-title,
  .faq-autopilot__video-title {
    font-size: 1.5rem;
  }

  .faq-autopilot__section-title {
    font-size: 1.75rem;
  }

  .faq-autopilot__cta-title {
    font-size: 1.75rem;
  }

  .faq-autopilot__faq-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .faq-autopilot__question {
    font-size: 1.125rem;
  }

  .faq-autopilot__answer {
    font-size: 1rem;
  }

  .faq-autopilot__cta-button {
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .faq-autopilot__content-box {
    padding: 1.5rem 1rem;
  }

  .faq-autopilot__image-title,
  .faq-autopilot__video-title {
    font-size: 1.25rem;
  }

  .faq-autopilot__section-title {
    font-size: 1.5rem;
  }

  .faq-autopilot__cta-title {
    font-size: 1.5rem;
  }

  .faq-autopilot__faq-item {
    padding: 1.25rem;
  }
}

/* Dark Mode Styles for FAQ Autopilot */
body.dark .faq-autopilot__content-box {
  background-color: #151a22;
  border-color: #2a3240;
  color: #e6e9ef;
}

body.dark .faq-autopilot__image-title,
body.dark .faq-autopilot__video-title,
body.dark .faq-autopilot__section-title,
body.dark .faq-autopilot__cta-title {
  color: #fff;
}

body.dark .faq-autopilot__image-description,
body.dark .faq-autopilot__video-description,
body.dark .faq-autopilot__cta-text {
  color: #e6e9ef;
}

body.dark .faq-autopilot__question {
  color: #fff;
}

body.dark .faq-autopilot__answer {
  color: #e6e9ef;
}

body.dark .faq-autopilot__section-title {
  border-bottom-color: #2a3240;
}

body.dark .faq-autopilot__faq-item {
  background-color: #0e1116;
  border-left-color: #2a3240;
}

body.dark .faq-autopilot__faq-item:hover {
  background-color: #1a202c;
}

/* *************GLOBAL BOX & IMAGE HOVERS************* */
/* Subtle hover movement and shadow for key content boxes */
.services-page__content-box,
.services-page__microsoft365-box,
.faq-autopilot__content-box,
.pricing__column,
.contact-form,
.payinvoice__intro,
.payinvoice__form,
.careers__table-container,
.gallery__item,
.resources__img {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform, box-shadow;
}

.services-page__content-box:hover,
.services-page__microsoft365-box:hover,
.faq-autopilot__content-box:hover,
.pricing__column:hover,
.contact-form:hover,
.payinvoice__intro:hover,
.payinvoice__form:hover,
.careers__table-container:hover,
.gallery__item:hover,
.resources__img:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Auto-size and centering tweaks where helpful */
.services-page__content-box,
.services-page__microsoft365-box,
.contact-form,
.payinvoice__intro,
.payinvoice__form,
.careers__table-container,
.gallery__item,
.resources__img {
  margin-left: auto;
  margin-right: auto;
}

/* Pricing boxes: ensure consistent sizing */
.pricing__column {
  height: 600px;
  min-height: 600px;
}

/* Photo hover effects (limit to main photos, not icons) */
.about__image img,
.item-team__img img,
.item-services__image img,
.services-page__img img,
.gallery__item img,
.resources__img img {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform, box-shadow;
}

.about__image img:hover,
.item-team__img img:hover,
.item-services__image img:hover,
.services-page__img img:hover,
.gallery__item img:hover,
.resources__img img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Dark mode hooks (optional): uncomment to adjust shadow intensity in dark mode
body.dark .services-page__content-box:hover,
body.dark .services-page__microsoft365-box:hover,
body.dark .item-services:hover,
body.dark .pricing__column:hover,
body.dark .contact-form:hover,
body.dark .payinvoice__intro:hover,
body.dark .payinvoice__form:hover,
body.dark .careers__table-container:hover,
body.dark .gallery__item:hover,
body.dark .resources__img:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
*/

/* *************SMOOTH HOVER EFFECTS FOR BUTTONS************* */

/* Get Started button hover effect */
.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  color: #e6e9ef;
  background-color: #2a3240;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
}

.main__button:hover {
  background-color: #1a2332;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(48, 58, 77, 0.3);
}

/* Contact buttons hover effects */
.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.connect-contact__item:hover {
  background-color: rgba(48, 58, 77, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 58, 77, 0.1);
}

/* Social media buttons hover effects */
.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__link {
  display: inline-block;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.contact__link:hover {
  background-color: rgba(48, 58, 77, 0.05);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(48, 58, 77, 0.15);
}

/* Dark mode hover effects for contact and social buttons */
body.dark .connect-contact__item:hover {
  background-color: rgba(230, 233, 239, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

body.dark .contact__link:hover {
  background-color: rgba(230, 233, 239, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Enhanced hover effects for existing buttons */
.button:hover,
.main__button:hover,
.outro__button:hover,
.item-pricing__button:hover,
.careers__search-btn:hover,
.careers__apply-btn:hover,
.microsoft365__button:hover,
.faq-autopilot__cta-button:hover,
.payinvoice__submit-btn:hover,
.resources__button:hover,
.services-page__button:hover,
.item-services__button:hover,
.contact-form__submit:hover,
.careers__submit-btn:hover,
.careers__cancel-btn:hover,
.careers__apply-from-desc-btn:hover,
.careers__close-desc-btn:hover,
.about__button:hover,
.support-info__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(48, 58, 77, 0.25);
}

/* Smooth transitions for all interactive elements */
.button,
.main__button,
.outro__button,
.item-pricing__button,
.careers__search-btn,
.careers__apply-btn,
.microsoft365__button,
.faq-autopilot__cta-button,
.payinvoice__submit-btn,
.resources__button,
.services-page__button,
.item-services__button,
.contact-form__submit,
.careers__submit-btn,
.careers__cancel-btn,
.careers__apply-from-desc-btn,
.careers__close-desc-btn,
.about__button,
.support-info__button,
.connect-contact__item,
.contact__link {
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
}

/* Hover effect for phone, email, and address text */
.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.connect-contact__item:hover .connect-contact__label {
  color: #2a3240;
}

body.dark .connect-contact__item:hover .connect-contact__label {
  color: #e6e9ef;
}

/* Enhanced icon hover effects */
.connect-contact__icon {
  transition: transform 0.3s ease;
}

.connect-contact__item:hover .connect-contact__icon {
  transform: scale(1.1);
}

/* Social media icon hover effects */
.contact__link img {
  transition: transform 0.3s ease;
}

.contact__link:hover img {
  transform: scale(1.1);
}

/* *************SUBMENU STYLES************* */

/* Submenu container */
.menu__item--has-submenu {
  position: relative;
}

.menu__link--submenu {
  cursor: pointer;
}

.menu__link--submenu::after {
  content: '▼';
  margin-left: 0.5rem;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.menu__item--has-submenu:hover .menu__link--submenu::after {
  transform: rotate(180deg);
}

/* Submenu dropdown */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #e1e4eb;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition: opacity 200ms ease, transform 220ms cubic-bezier(.2,.8,.2,1), visibility 0s linear 200ms;
  z-index: 1000;
  padding: 0.5rem 0;
  backdrop-filter: saturate(120%) blur(6px);
}

.menu__item--has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s, 0s, 0s;
}

/* Submenu items */
.submenu li {
  list-style: none;
  margin: 0;
}

.submenu__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: #303a4d;
  text-decoration: none;
  font-weight: 500;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
  border-radius: 8px;
  margin: 0.25rem 0.5rem;
}

.submenu__link:hover {
  background-color: #f1f5f9;
  color: #1f2937;
  transform: translateX(4px);
}

/* Dark mode submenu styles */
body.dark .submenu {
  background-color: #151a22;
  border-color: #2a3240;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body.dark .submenu__link {
  color: #fff !important;
}

body.dark .submenu__link:hover {
  background-color: transparent;
  color: #fff !important;
}

/* Mobile submenu styles */
@media (max-width: 47.999rem) {
  .menu__item--has-submenu {
    position: static;
  }
  
  .submenu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    background-color: rgba(42, 50, 64, 0.05);
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 0 0 8px 8px;
  }
  
  .submenu__link {
    color: #495057 !important;
    padding: 1rem 2rem;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .submenu__link:hover {
    color: #2a3240 !important;
    background-color: rgba(42, 50, 64, 0.08);
    transform: translateX(8px);
  }
  
  .submenu__link:last-child {
    border-bottom: none;
  }
  
  body.dark .submenu__link {
    color: #fff !important;
  }
  
  .menu__link--submenu::after {
    display: none;
  }
  
  /* Mobile submenu toggle */
  .menu__item--has-submenu .submenu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: translateY(-10px);
  }
  
  .menu__item--has-submenu.menu-open .submenu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    transform: translateY(0);
  }
  
  /* Dark mode mobile menu styles */
  body.dark .menu__body {
    background: linear-gradient(135deg, #0e1116 0%, #1a1d23 100%);
  }

  body.dark .menu__body::before {
    background: linear-gradient(135deg, #0e1116 0%, #1a1d23 100%);
    border-bottom: 1px solid rgba(42, 50, 64, 0.3);
  }

  body.dark .menu__item {
    border-bottom: 1px solid rgba(42, 50, 64, 0.2);
  }

  body.dark .menu__item:hover {
    background-color: rgba(42, 50, 64, 0.1);
  }

  body.dark .menu__link {
    color: #e6e9ef !important;
  }

  body.dark .menu__link:hover {
    color: #fff !important;
    background-color: rgba(42, 50, 64, 0.1);
  }

  body.dark .submenu {
    background-color: rgba(42, 50, 64, 0.1);
  }

  body.dark .submenu__link {
    color: #cbd5e0 !important;
    border-bottom: 1px solid rgba(42, 50, 64, 0.2);
  }

  body.dark .submenu__link:hover {
    color: #fff !important;
    background-color: rgba(42, 50, 64, 0.15);
  }

  body.dark .menu__body::after {
    color: #e6e9ef;
  }
  
  body.dark .menu__body::before {
    background-color: #0e1116;
    border-bottom-color: #2a3240;
  }
  
  /* Light mode: white background with black text */
  .menu__link {
    color: #000 !important;
  }
  
  .menu__link:hover {
    color: #000 !important;
  }
  
  .submenu__link {
    color: #000 !important;
  }
  
  .submenu__link:hover {
    color: #000 !important;
  }
  
  /* Dark mode: dark background with white text */
  body.dark .menu__link {
    color: #fff !important;
  }
  
  body.dark .menu__link:hover {
    color: #fff !important;
  }
  
  body.dark .submenu__link {
    color: #fff !important;
  }
  
  body.dark .submenu__link:hover {
    color: #fff !important;
  }
  
  /* Mobile menu button styles for both modes */
  .menu__icon.icon-menu span,
  .menu__icon.icon-menu::before,
  .menu__icon.icon-menu::after {
    background-color: #303a4d;
  }
  
  /* Dark mode mobile menu button - white lines */
  body.dark .menu__icon.icon-menu span,
  body.dark .menu__icon.icon-menu::before,
  body.dark .menu__icon.icon-menu::after {
    background-color: #fff;
  }
  
  body.dark .menu__icon.icon-menu span,
  body.dark .menu__icon.icon-menu::before,
  body.dark .menu__icon.icon-menu::after {
    background-color: #e6e9ef;
  }
  
  /* Additional responsive improvements for smaller screens */
  @media (max-width: 480px) {
    .menu__body {
      padding: 7rem 0.75rem 1.5rem 0.75rem;
      row-gap: 2rem;
    }
    
    .menu__link {
      font-size: 1.5rem;
      padding: 0.5rem 0;
    }
    
    .submenu__link {
      font-size: 1.25rem;
      padding: 0.4rem 0.75rem;
    }
  }
}

/* Careers Thank You Page Styling */
.careers-thank-you {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.careers-thank-you__icon {
  margin-bottom: 2rem;
  color: #28a745;
}

.careers-thank-you__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #303a4d;
  margin-bottom: 1.5rem;
}

.careers-thank-you__content {
  text-align: left;
  margin-bottom: 2rem;
}

.careers-thank-you__message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
  text-align: center;
}

.careers-thank-you__next-steps {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid #28a745;
}

.careers-thank-you__next-steps h3 {
  color: #303a4d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.careers-thank-you__next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.careers-thank-you__next-steps li {
  padding: 0.5rem 0;
  color: #4a5568;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.careers-thank-you__next-steps li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.1rem;
}

.careers-thank-you__contact {
  background-color: #e3f2fd;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid #2196f3;
}

.careers-thank-you__contact h3 {
  color: #303a4d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.careers-thank-you__contact p {
  color: #4a5568;
  margin-bottom: 1rem;
}

.careers-thank-you__contact-info {
  text-align: center;
}

.careers-thank-you__email {
  display: inline-block;
  color: #2196f3;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.careers-thank-you__email:hover {
  text-decoration: underline;
}

.careers-thank-you__response-time {
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

.careers-thank-you__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.careers-thank-you__actions .button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.careers-thank-you__actions .button--secondary {
  background-color: transparent;
  color: #303a4d;
  border: 2px solid #303a4d;
}

.careers-thank-you__actions .button--secondary:hover {
  background-color: #303a4d;
  color: white;
}

.careers-thank-you__footer {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border-top: 3px solid #28a745;
}

.careers-thank-you__footer p {
  color: #4a5568;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* Dark mode support */
body.dark .careers-thank-you__title {
  color: #e2e8f0;
}

body.dark .careers-thank-you__message {
  color: #cbd5e0;
}

body.dark .careers-thank-you__next-steps {
  background-color: #2d3748;
  border-left-color: #48bb78;
}

body.dark .careers-thank-you__next-steps li {
  color: #cbd5e0;
}

body.dark .careers-thank-you__contact {
  background-color: #1a365d;
  border-left-color: #63b3ed;
}

body.dark .careers-thank-you__contact h3 {
  color: #e2e8f0;
}

body.dark .careers-thank-you__contact p {
  color: #cbd5e0;
}

body.dark .careers-thank-you__email {
  color: #63b3ed;
}

body.dark .careers-thank-you__response-time {
  color: #a0aec0;
}

body.dark .careers-thank-you__footer {
  background-color: #2d3748;
}

body.dark .careers-thank-you__footer p {
  color: #cbd5e0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .careers-thank-you {
    padding: 1rem 0.5rem;
  }
  
  .careers-thank-you__title {
    font-size: 2rem;
  }
  
  .careers-thank-you__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .careers-thank-you__actions .button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* Contact Thank You Page Styling */
.contact-thank-you {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.contact-thank-you__icon {
  margin-bottom: 2rem;
  color: #28a745;
}

.contact-thank-you__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #303a4d;
  margin-bottom: 1.5rem;
}

.contact-thank-you__content {
  text-align: left;
  margin-bottom: 2rem;
}

.contact-thank-you__message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-thank-you__next-steps {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid #28a745;
}

.contact-thank-you__next-steps h3 {
  color: #303a4d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-thank-you__next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-thank-you__next-steps li {
  padding: 0.5rem 0;
  color: #4a5568;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.contact-thank-you__next-steps li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-thank-you__contact {
  background-color: #e3f2fd;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid #2196f3;
}

.contact-thank-you__contact h3 {
  color: #303a4d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-thank-you__contact p {
  color: #4a5568;
  margin-bottom: 1rem;
}

.contact-thank-you__contact-info {
  text-align: center;
}

.contact-thank-you__phone {
  display: inline-block;
  color: #2196f3;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-right: 1rem;
}

.contact-thank-you__phone:hover {
  text-decoration: underline;
}

.contact-thank-you__email {
  display: inline-block;
  color: #2196f3;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-thank-you__email:hover {
  text-decoration: underline;
}

.contact-thank-you__response-time {
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

.contact-thank-you__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-thank-you__actions .button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-thank-you__actions .button--secondary {
  background-color: transparent;
  color: #303a4d;
  border: 2px solid #303a4d;
}

.contact-thank-you__actions .button--secondary:hover {
  background-color: #303a4d;
  color: white;
}

.contact-thank-you__footer {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border-top: 3px solid #28a745;
}

.contact-thank-you__footer p {
  color: #4a5568;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* Dark mode support for contact thank you */
body.dark .contact-thank-you__title {
  color: #e2e8f0;
}

body.dark .contact-thank-you__message {
  color: #cbd5e0;
}

body.dark .contact-thank-you__next-steps {
  background-color: #2d3748;
  border-left-color: #48bb78;
}

body.dark .contact-thank-you__next-steps li {
  color: #cbd5e0;
}

body.dark .contact-thank-you__contact {
  background-color: #1a365d;
  border-left-color: #63b3ed;
}

body.dark .contact-thank-you__contact h3 {
  color: #e2e8f0;
}

body.dark .contact-thank-you__contact p {
  color: #cbd5e0;
}

body.dark .contact-thank-you__phone {
  color: #63b3ed;
}

body.dark .contact-thank-you__email {
  color: #63b3ed;
}

body.dark .contact-thank-you__response-time {
  color: #a0aec0;
}

body.dark .contact-thank-you__footer {
  background-color: #2d3748;
}

body.dark .contact-thank-you__footer p {
  color: #cbd5e0;
}

/* Mobile responsiveness for contact thank you */
@media (max-width: 768px) {
  .contact-thank-you {
    padding: 1rem 0.5rem;
  }
  
  .contact-thank-you__title {
    font-size: 2rem;
  }
  
  .contact-thank-you__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-thank-you__actions .button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .contact-thank-you__phone,
  .contact-thank-you__email {
    display: block;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}