* {
  box-sizing: border-box;
}
body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}
p {
  margin-bottom: 15px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 28px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: none;
  box-shadow: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 28px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.btn-secondary:hover {
  background: var(--secondary-color);
  color: white;
  transform: none;
  box-shadow: none;
}
.btn-secondary-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 28px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  background: var(--secondary-color);
  color: white;
  border: none;
}
.btn-secondary-solid:hover {
  background: var(--secondary-hover);
  transform: none;
  box-shadow: none;
}
.btn-secondary-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 28px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-secondary-white:hover {
  background: white;
  color: var(--secondary-color);
  transform: none;
  box-shadow: none;
}
.gallery-slick {
  padding: 0 25px;
}
.gallery-slick .slick-next {
  right: 0;
}
.gallery-slick .slick-prev {
  left: 0;
}
.services-slick {
  padding: 0 25px;
}
.services-slick .slick-next {
  right: 0;
}
.services-slick .slick-prev {
  left: 0;
}
@media (max-width: 768px) {
  .services-slick {
    padding: 0 0;
  }
}
.slick-next:before,
.slick-prev:before {
  color: var(--primary-color) !important;
  font-size: 24px !important;
}
.slick-dots li {
  margin: 0 !important;
}
.services-slick .slick-track {
  padding: 24px 0;
}
.fab.fa-twitter {
  font-family: sans-serif;
}
.fab.fa-twitter::before {
  content: "𝕏";
  font-size: 1.2em;
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-flex {
  display: flex !important;
}
.d-grid {
  display: grid !important;
}
.pos-relative {
  position: relative !important;
}
.pos-absolute {
  position: absolute !important;
}
.pos-fixed {
  position: fixed !important;
}
.pos-sticky {
  position: sticky !important;
}
.text-primary {
  color: var(--primary-color);
}
.text-secondary {
  color: var(--secondary-color);
}
.text-accent {
  color: var(--accent-color);
}
.text-white {
  color: white;
}
.text-black {
  color: black;
}
.text-gray {
  color: #666;
}
.bg-primary {
  background-color: var(--primary-color);
}
.bg-secondary {
  background-color: var(--secondary-color);
}
.bg-accent {
  background-color: var(--accent-color);
}
.bg-white {
  background-color: white;
}
.bg-black {
  background-color: black;
}
.bg-gray {
  background-color: #f8f9fa;
}
.bg-transparent {
  background-color: transparent;
}
.header-classic,
.header-modern {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-classic .container,
.header-modern .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-classic .header-content,
.header-modern .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.header-classic .header-right,
.header-modern .header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-classic .header-logo .logo-img,
.header-modern .header-logo .logo-img {
  height: 50px;
  width: auto;
}
.header-classic .header-logo .logo-text,
.header-modern .header-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--heading-font);
}
.header-classic .header-nav,
.header-modern .header-nav,
.header-classic .header-nav-center,
.header-modern .header-nav-center {
  display: flex;
  gap: 30px;
}
.header-classic .header-nav .nav-link,
.header-modern .header-nav .nav-link,
.header-classic .header-nav-center .nav-link,
.header-modern .header-nav-center .nav-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.header-classic .header-nav .nav-link:hover,
.header-modern .header-nav .nav-link:hover,
.header-classic .header-nav-center .nav-link:hover,
.header-modern .header-nav-center .nav-link:hover,
.header-classic .header-nav .nav-link.active,
.header-modern .header-nav .nav-link.active,
.header-classic .header-nav-center .nav-link.active,
.header-modern .header-nav-center .nav-link.active {
  color: var(--primary-color);
}
.header-classic .header-cta,
.header-modern .header-cta {
  display: flex;
  align-items: center;
}
.header-classic .contact-link,
.header-modern .contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.header-classic .contact-link:hover,
.header-modern .contact-link:hover {
  color: var(--primary-color);
}
.header-classic .mobile-menu-btn,
.header-modern .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.header-classic .mobile-menu-btn .hamburger,
.header-modern .mobile-menu-btn .hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 5px 0;
  transition: 0.3s;
}
.header-classic .mobile-menu,
.header-modern .mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.header-classic .mobile-menu.active,
.header-modern .mobile-menu.active {
  display: block;
}
.header-classic .mobile-menu .mobile-nav-link,
.header-modern .mobile-menu .mobile-nav-link {
  display: block;
  padding: 15px 0;
  color: var(--text-color);
  text-decoration: none;
}
.header-classic .mobile-menu .mobile-nav-link:last-child,
.header-modern .mobile-menu .mobile-nav-link:last-child {
  border-bottom: none;
}
.header-classic .mobile-menu .mobile-nav-link.active,
.header-modern .mobile-menu .mobile-nav-link.active {
  color: var(--primary-color);
}
.header-classic .mobile-menu .mobile-cta,
.header-modern .mobile-menu .mobile-cta {
  margin-top: 20px;
  display: block;
  text-align: center;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  .header-classic .mobile-menu-btn,
  .header-modern .mobile-menu-btn {
    display: block;
  }
}
.header-mega {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-mega .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-mega .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.header-mega .header-logo .logo-img {
  height: 48px;
  width: auto;
}
.header-mega .header-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-mega .header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-mega .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.header-mega .nav-link:hover,
.header-mega .nav-link.active {
  color: var(--primary-color);
}
.header-mega .nav-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.header-mega .header-phone {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.header-mega .header-phone:hover {
  color: var(--primary-color);
}
.header-mega .nav-item-mega,
.header-mega .nav-item-drop {
  position: relative;
}
.header-mega .nav-item-mega:hover .nav-arrow svg,
.header-mega .nav-item-drop:hover .nav-arrow svg {
  transform: rotate(180deg);
}
.header-mega .mega-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: max-content;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(2, 12, 63, 0.16);
  padding: 28px 34px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1001;
}
.header-mega .mega-panel::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.header-mega .nav-item-mega:hover .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header-mega .mega-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: start;
  column-gap: 40px;
  row-gap: 22px;
}
.header-mega .mega-col {
  min-width: 200px;
}
.header-mega .mega-col-title {
  display: inline-block;
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--primary-color);
  transition: color 0.2s ease;
}
.header-mega .mega-col-title:hover {
  color: var(--primary-color);
}
.header-mega .mega-col-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.header-mega .mega-col-list li {
  margin: 0 0 4px;
}
.header-mega .mega-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  transition: color 0.2s ease;
}
.header-mega .mega-link:hover,
.header-mega .mega-link.active {
  color: var(--primary-color);
}
.header-mega .mega-seemore {
  display: inline-block;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header-mega .mega-seemore:hover {
  color: var(--primary-hover, var(--primary-color));
}
.header-mega .drop-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(2, 12, 63, 0.14);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1001;
}
.header-mega .drop-panel::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.header-mega .nav-item-drop:hover .drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-mega .drop-link {
  display: block;
  padding: 10px 22px;
  color: var(--secondary-color);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.header-mega .drop-link:hover,
.header-mega .drop-link.active {
  background: #f6f7fb;
  color: var(--primary-color);
}
.header-mega .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header-mega .mobile-menu-btn .hamburger {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--secondary-color);
  margin: 6px 0;
  transition: 0.3s;
}
.header-mega .mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 12, 63, 0.45);
  z-index: 1098;
}
.header-mega .mobile-overlay.active {
  display: block;
}
.header-mega .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 380px;
  max-width: 88vw;
  background: #fff;
  box-shadow: -8px 0 40px rgba(2, 12, 63, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1099;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.header-mega .mobile-menu.active {
  transform: translateX(0);
}
.header-mega .mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid #eef0f5;
}
.header-mega .mobile-menu-head .mobile-logo {
  height: 40px;
  width: auto;
}
.header-mega .mobile-menu-head .mobile-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--secondary-color);
  cursor: pointer;
}
.header-mega .mobile-nav {
  flex: 0 0 auto;
}
.header-mega .mobile-link,
.header-mega .mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  border-bottom: 1px solid #eef0f5;
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}
.header-mega .mobile-link.active,
.header-mega .mobile-toggle.active {
  color: var(--primary-color);
}
.header-mega .mobile-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.header-mega .mobile-toggle.open .mobile-arrow svg {
  transform: rotate(180deg);
}
.header-mega .mobile-sub {
  display: none;
  background: #f8f9fc;
}
.header-mega .mobile-sub.open {
  display: block;
}
.header-mega .mobile-toggle-2 {
  padding-left: 34px;
  color: var(--primary-color);
  background: #f8f9fc;
}
.header-mega .mobile-sub-2 {
  background: #fff;
}
.header-mega .mobile-cat-row {
  padding: 0;
}
.header-mega .mobile-cat-row .mobile-cat-title {
  flex: 1;
  padding: 15px 22px 15px 34px;
  color: inherit;
  text-decoration: none;
}
.header-mega .mobile-cat-row .mobile-arrow-btn {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 22px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}
.header-mega .mobile-leaf {
  display: block;
  padding: 15px 22px 15px 34px;
  border-bottom: 1px solid #eef0f5;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.header-mega .mobile-leaf.active {
  color: var(--primary-color);
}
.header-mega .mobile-sub-2 .mobile-leaf {
  padding-left: 46px;
  font-weight: 400;
}
.header-mega .mobile-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 22px 8px;
  padding: 13px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 100px;
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.header-mega .mobile-quote:hover {
  background: var(--primary-color);
  color: #fff;
}
.header-mega .mobile-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 20px 22px;
  border-top: 1px solid #eef0f5;
  text-decoration: none;
}
.header-mega .mobile-call .mobile-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.header-mega .mobile-call .mobile-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.header-mega .mobile-call .mobile-call-label {
  color: var(--text-color, #9aa0b5);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header-mega .mobile-call .mobile-call-number {
  color: var(--secondary-color);
  font-size: 17px;
  font-weight: 700;
}
body.mobile-menu-open {
  overflow: hidden;
}
@media (max-width: 991px) {
  .header-mega .desktop-only {
    display: none !important;
  }
  .header-mega .mobile-menu-btn {
    display: block;
  }
}
@media (min-width: 992px) {
  .header-mega .mobile-overlay,
  .header-mega .mobile-menu {
    display: none !important;
  }
}
.hero-classic {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero-content-modern {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.hero-content-modern .hero-col {
  width: calc(50% - 40px);
}
@media (max-width: 1023px) {
  .hero-content-modern {
    flex-direction: column;
  }
  .hero-content-modern .hero-col {
    width: 100%;
    text-align: center;
  }
}
.hero-buttons {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.hero-title {
  font-size: 58px;
  font-weight: 900;
  line-height: 56px;
  margin-bottom: 32px;
  color: var(--secondary-color);
}
.hero-title span {
  color: var(--primary-color);
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
    line-height: 48px;
  }
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}
.hero-label {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
}
.hero-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 22.75px;
  color: var(--text-color);
  margin-bottom: 32px;
}
.hero-text strong {
  font-weight: 700;
}
.hero-modern {
  background-image: url('../images/bg-hero-mobile.png');
}
@media (min-width: 768px) {
  .hero-modern {
    background-image: url('../images/bg-hero.png');
  }
}
.hero-services {
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 75% center;
}
@media (max-width: 1023px) {
  .hero-services {
    background-position: left center;
  }
}
.hero-page-title h1 {
  font-family: "Poppins", sans-serif;
}
.hero-page-title .hero-page-title-breadcrumb {
  font-family: "Poppins", sans-serif;
}
.features-grid-three {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.features-grid-three .feature-item {
  display: flex;
  width: calc(33.33% - 20px);
}
.features-grid-three .feature-item img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.features-grid-three .feature-item .feature-text {
  padding-left: 20px;
}
.features-grid-three .feature-item .feature-text .feature-title {
  color: var(--secondary-color);
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.features-grid-three .feature-item .feature-text .feature-description {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-color);
  margin: 0;
}
@media (max-width: 767px) {
  .features-grid-three {
    flex-direction: column;
  }
  .features-grid-three .feature-item {
    width: 100%;
  }
}
/* ===================================
   FEATURES MODULE CSS  
   Arquivo: assets/css/modules/features.css
   =================================== */
.features-two-col {
  padding: 80px 0;
  color: white;
  background: url(../images/bg-features-two-col.png) no-repeat;
  background-size: cover;
  background-position: center;
  /* Responsive */
}
.features-two-col .features-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 44px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.features-two-col .features-title .highlight {
  display: inline-block;
  padding: 0;
  background-color: var(--secondary-color);
}
.features-two-col .features-grid-two {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
.features-two-col .features-grid-two .features-col {
  width: 50%;
  display: flex;
  gap: 20px;
}
.features-two-col .features-grid-two .feature-content .feature-icon {
  color: white;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.features-two-col .features-grid-two .feature-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 21.6px;
}
.features-two-col .features-grid-two .feature-content p {
  font-size: 14px;
  line-height: 22.75px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .features-two-col .features-title {
    font-size: 40px;
    text-align: center;
  }
  .features-two-col .features-grid-two {
    flex-direction: column;
  }
  .features-two-col .features-col {
    width: 100% !important;
    text-align: center;
    justify-content: center;
  }
}
.clients-section .clients-grid {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.clients-section .clients-grid .slick-dots li button:before {
  color: #ffffff;
}
.clients-section .clients-grid.slick-initialized {
  display: block;
}
.clients-section .clients-grid.slick-initialized .slick-slide {
  box-sizing: border-box;
}
.clients-section .clients-grid .slick-initialized .slick-slide {
  display: flex;
}
.clients-section .client-item .client-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  background: white;
  height: 70px;
  border-radius: 10px;
  max-width: 90%;
  margin: 0 auto;
}
.clients-section .client-logo {
  max-width: 120px;
  max-height: 100%;
  width: auto;
  height: auto;
}
.clients-section .client-logo:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .clients-section .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .clients-section .clients-grid.slick-initialized {
    padding: 0 25px;
  }
  .clients-section .clients-grid .slick-prev {
    left: 0;
    z-index: 1;
  }
  .clients-section .clients-grid .slick-next {
    right: 0;
    z-index: 1;
  }
  .clients-section .client-logo {
    max-width: 100px;
    max-height: 50px;
  }
}
@media (max-width: 480px) {
  .clients-section .clients-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.services-section .services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-section .services-header .services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
  font-family: var(--heading-font);
}
.services-section .services-header .services-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.services-section .services-header.text-center {
  text-align: center;
}
.services-section .services-cta {
  text-align: center;
  margin-top: 50px;
}
.services-cards .services-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.services-cards .service-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.services-cards .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}
.services-cards .service-card .service-card-header {
  padding: 30px 30px 20px;
  text-align: center;
}
.services-cards .service-card .service-card-header .service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}
.services-cards .service-card .service-card-header .service-title {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: var(--text-color);
  font-family: var(--heading-font);
}
.services-cards .service-card .service-card-body {
  padding: 0 30px 20px;
}
.services-cards .service-card .service-card-body .service-description {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 20px;
}
.services-cards .service-card .service-card-body .service-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.services-cards .service-card .service-card-body .service-features li {
  padding: 8px 0;
  color: var(--secondary-color);
  position: relative;
}
.services-cards .service-card .service-card-body .service-features li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 8px;
}
.services-cards .service-card .service-card-body .service-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin: 20px 0;
  font-family: var(--heading-font);
}
.services-cards .service-card .service-card-footer {
  padding: 20px 30px 30px;
  text-align: center;
}
.services-col .services-col-flex {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .services-col .services-col-flex {
    flex-direction: column;
  }
  .services-col .services-col-flex .services-divider {
    display: none;
  }
  .services-col .services-col-flex .services-info,
  .services-col .services-col-flex .services-list {
    width: 100%;
    padding: 0;
  }
}
.services-col .services-divider {
  width: 1px;
  background-color: var(--primary-color);
}
.services-col .services-info {
  width: calc(40% - 60px);
  padding-right: 40px;
}
.services-col .services-info h2 {
  font-size: 36px;
  line-height: 43.2px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 32px;
}
.services-col .services-info .services-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 22.75px;
  color: var(--primary-color);
}
.services-col .services-info .services-subtitle .highlight-text {
  background: var(--secondary-color);
}
.services-col .services-info .services-description {
  font-size: 14px;
  font-weight: 300;
  line-height: 22.75px;
  color: var(--text-color);
  margin-bottom: 28px;
}
.services-col .services-info .services-buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 425px) {
  .services-col .services-info .services-buttons {
    flex-direction: column;
  }
}
.services-col .services-list {
  width: calc(60% - 60px);
  padding-left: 40px;
}
.services-col .services-list .service-item {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
.services-col .services-list .service-content h3 {
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 700;
}
.services-col .services-list .service-content p {
  font-size: 14px;
  line-height: 22.75px;
  font-weight: 300;
  color: var(--text-color);
  margin-bottom: 0;
}
.services-col .services-list .service-content a {
  display: block;
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 12px;
  line-height: 22.75px;
  font-weight: 500;
  margin: 0;
}
.guarantee-section {
  padding: 80px 0;
  color: white;
  background-color: var(--secondary-color);
}
.guarantee-navy {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.guarantee-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.guarantee-content .btn-secondary {
  color: #fff !important;
}
.guarantee-icon {
  width: calc(50% - 40px);
}
.guarantee-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 44px;
  color: var(--primary-color);
  text-transform: uppercase;
}
.guarantee-title span {
  color: #fff;
  font-weight: 300;
}
.guarantee-text {
  width: calc(50% - 40px);
}
.guarantee-description {
  font-size: 14px;
  line-height: 22.75px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 300;
}
/* Responsive */
@media (max-width: 767px) {
  .guarantee-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .guarantee-content .guarantee-icon,
  .guarantee-content .guarantee-text {
    width: 100%;
  }
  .guarantee-title {
    font-size: 40px;
  }
}
.custom-form-contact-page form.wpforms-form {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 32px;
  align-items: start;
}
@media (min-width: 768px) {
  .custom-form-contact-page form.wpforms-form {
    grid-template-columns: 1fr 1fr;
  }
}
.custom-form-contact-page .wpforms-field-container {
  display: contents;
}
.custom-form-contact-page .wpforms-field {
  padding-bottom: 0 !important;
}
.custom-form-contact-page .wpforms-field:not(.wpforms-field-textarea) {
  grid-column: 1;
  margin-bottom: 20px !important;
}
.custom-form-contact-page .wpforms-field:not(.wpforms-field-textarea) input {
  width: 100%;
  height: 52px;
  border: 1px solid #d1d5db;
  border-radius: 100px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 300;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.custom-form-contact-page .wpforms-field:not(.wpforms-field-textarea) input::placeholder {
  color: #6C757D !important;
  opacity: 1 !important;
}
.custom-form-contact-page .wpforms-field:not(.wpforms-field-textarea) input:focus {
  border-color: var(--color-secondary);
}
.custom-form-contact-page .wpforms-field-textarea {
  grid-column: 1;
  grid-row: auto;
}
@media (min-width: 768px) {
  .custom-form-contact-page .wpforms-field-textarea {
    grid-column: 2;
    grid-row: 1 / span 3;
  }
}
.custom-form-contact-page .wpforms-field-textarea textarea {
  width: 100%;
  height: 100%;
  min-height: 196px;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 300;
  color: #1a1a1a;
  background: #fff;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
}
.custom-form-contact-page .wpforms-field-textarea textarea::placeholder {
  color: #6C757D !important;
  opacity: 1 !important;
}
.custom-form-contact-page .wpforms-field-textarea textarea:focus {
  border-color: var(--color-secondary);
}
.custom-form-contact-page .wpforms-submit-container {
  grid-column: 1;
  margin-top: 16px !important;
  padding-top: 0 !important;
}
@media (min-width: 768px) {
  .custom-form-contact-page .wpforms-submit-container {
    grid-column: 2;
  }
}
.custom-form-contact-page .wpforms-submit {
  display: block !important;
  width: 100% !important;
  height: 52px !important;
  background-color: var(--color-secondary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  cursor: pointer;
  transition: background-color 0.2s;
}
.custom-form-contact-page .wpforms-submit:hover {
  background-color: var(--color-secondary-hover) !important;
}
.custom-form-contact-page .wpforms-field-label {
  display: none !important;
}
.custom-form-contact-page .wpforms-error {
  font-size: 12px;
  color: var(--color-primary);
  margin-top: 6px;
  padding-left: 12px;
}
.contact-form {
  margin: 0 !important;
}
.contact-form .wpforms-submit {
  border-radius: 0 !important;
  background-color: var(--secondary-color) !important;
  font-weight: 300!important;
  margin: 0 0 0 auto !important;
}
.contact-form .wpforms-submit-container {
  text-align: right;
}
.custom-newsletter {
  margin: 0 !important;
}
.custom-newsletter form.wpforms-form {
  display: flex;
  align-items: stretch;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 !important;
}
.custom-newsletter .wpforms-field-container {
  flex: 1;
  min-width: 0;
}
.custom-newsletter .wpforms-field {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}
.custom-newsletter .wpforms-field::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 15px;
  z-index: 1;
  pointer-events: none;
}
.custom-newsletter .wpforms-field input {
  width: 100% !important;
  height: 44px !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 16px 0 40px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  background: #fff !important;
  outline: none !important;
  box-shadow: none !important;
}
.custom-newsletter .wpforms-field input::placeholder {
  color: #aaaaaa !important;
  opacity: 1 !important;
}
.custom-newsletter .wpforms-field-label {
  display: none !important;
}
.custom-newsletter .wpforms-submit-container {
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
}
.custom-newsletter .wpforms-submit {
  height: 44px !important;
  padding: 0 24px !important;
  background-color: var(--color-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}
.custom-newsletter .wpforms-submit:hover {
  background-color: var(--color-primary-hover) !important;
}
.custom-newsletter .wpforms-error {
  font-size: 12px;
  color: var(--color-primary);
  margin-top: 4px;
  padding-left: 12px;
}
.newsletter-form {
  margin: 0 !important;
}
.newsletter-form form {
  display: flex;
  align-items: center;
}
.newsletter-form form input {
  border-radius: 0 !important;
  width: 100%;
}
.newsletter-form form .wpforms-field {
  width: 100% !important;
  border-radius: 0!important;
}
.newsletter-form .wpforms-submit-container {
  margin-top: 0 !important;
}
.newsletter-form .wpforms-submit-container button {
  border-radius: 0 !important;
  border-width: 1px;
  background-color: var(--primary-color) !important;
  font-size: 12px !important;
  font-weight: 500;
  height: 43px !important;
  white-space: nowrap;
}
.footer-form-card {
  width: calc(27% - 50px);
  background: #fff;
  border-radius: 10px;
  padding: 36px 28px 32px;
  box-shadow: 0px 4px 104px rgba(2, 12, 63, 0.2);
}
.footer-form-card .footer-card-title {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 24px;
}
.footer-form-card .footer-card-subtitle {
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.75px;
  text-align: center;
  color: #1A1A1A;
  margin-bottom: 24px;
}
.footer-form-card .custom-form-contact .wpforms-field {
  padding: 0;
  margin-bottom: 12px;
}
.footer-form-card .custom-form-contact .wpforms-field .wpforms-field-label {
  display: none;
}
.footer-form-card .custom-form-contact .wpforms-field input[type="text"],
.footer-form-card .custom-form-contact .wpforms-field input[type="email"],
.footer-form-card .custom-form-contact .wpforms-field input[type="tel"],
.footer-form-card .custom-form-contact .wpforms-field input[type="number"],
.footer-form-card .custom-form-contact .wpforms-field textarea {
  width: 100% !important;
  background: rgba(217, 217, 217, 0.3) !important;
  border: 1px solid #AAAAAA !important;
  border-radius: 5px !important;
  padding: 0 16px !important;
  height: 42px !important;
  font-size: 14px !important;
  color: #333 !important;
  font-family: 'Red Hat Text', sans-serif !important;
  box-shadow: none !important;
}
.footer-form-card .custom-form-contact .wpforms-field input[type="text"]:focus,
.footer-form-card .custom-form-contact .wpforms-field input[type="email"]:focus,
.footer-form-card .custom-form-contact .wpforms-field input[type="tel"]:focus,
.footer-form-card .custom-form-contact .wpforms-field input[type="number"]:focus,
.footer-form-card .custom-form-contact .wpforms-field textarea:focus {
  outline: none !important;
  border-color: var(--primary-color) !important;
  background: #fff !important;
}
.footer-form-card .custom-form-contact .wpforms-field textarea {
  height: 87px !important;
  padding: 12px 16px !important;
  resize: none !important;
}
.footer-form-card .custom-form-contact .wpforms-submit-container {
  margin-top: 16px;
  text-align: center;
}
.footer-form-card .custom-form-contact .wpforms-submit-container .wpforms-submit {
  width: 100% !important;
  background: var(--primary-color) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  height: 42px !important;
  padding: 0 28px !important;
  font-family: 'Red Hat Display', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 2.8px !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  transition: background 0.3s ease !important;
  box-shadow: none !important;
}
.footer-form-card .custom-form-contact .wpforms-submit-container .wpforms-submit:hover {
  background: var(--primary-hover) !important;
}
.footer-canopy-card {
  width: calc(27% - 50px);
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0px 4px 104px rgba(2, 12, 63, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-canopy-card .footer-card-title {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 24px;
}
.footer-canopy-card .footer-card-subtitle {
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.75px;
  text-align: center;
  color: #1A1A1A;
  margin-bottom: 28px;
}
.footer-canopy-card .footer-canopy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 100px;
  height: 42px;
  padding: 0 28px;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease;
  margin-bottom: 20px;
}
.footer-canopy-card .footer-canopy-btn:hover {
  background: var(--primary-hover);
}
.footer-canopy-card .footer-canopy-link {
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #1A1A1A;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer-canopy-card .footer-canopy-link:hover {
  color: var(--primary-color);
}
.cta-cards-wrap {
  background: linear-gradient(to bottom, var(--secondary-color) 265px, #fff 220px);
  padding: 60px 0 80px;
}
.cta-cards-wrap .footer-header {
  text-align: center;
  margin-bottom: 48px;
}
.cta-cards-wrap .footer-header .footer-main-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: #fff;
}
.cta-cards-wrap .footer-header .footer-main-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cta-cards-wrap .footer-header .footer-main-title {
    line-height: 100%;
  }
  .cta-cards-wrap .footer-header .footer-main-subtitle {
    white-space: nowrap;
    font-size: 18px;
    margin-top: 8px;
  }
}
.cta-cards-wrap .footer-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  max-width: 1500px;
  padding: 0 15px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 767px) {
  .cta-cards-wrap .footer-content {
    flex-direction: column;
  }
}
.cta-cards-wrap .footer-form-card,
.cta-cards-wrap .footer-canopy-card {
  width: calc(40% - 25px);
}
@media (max-width: 767px) {
  .cta-cards-wrap .footer-form-card,
  .cta-cards-wrap .footer-canopy-card {
    width: 100%!important;
  }
}
.navigation.pagination h2 {
  display: none;
}
.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navigation.pagination .nav-links .page-numbers {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
}
.navigation.pagination .nav-links .page-numbers.current {
  background-color: var(--primary-color);
  color: #fff;
  padding: 4px 12px;
}
.footer-business {
  background: var(--bg-color);
  color: #fff;
}
.footer-business .footer-main {
  padding: 60px 0 40px;
}
.footer-business .footer-main .footer-container {
  max-width: 1500px;
  padding: 0 15px;
  margin: auto;
}
.footer-business .footer-main .footer-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.footer-business .footer-title {
  font-size: 24px;
  margin-bottom: 8px;
  font-family: var(--footer-font);
  font-weight: 500;
}
.footer-business .footer-title-nav {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 18px;
  font-family: var(--footer-font);
  font-weight: 600;
}
.footer-business .footer-header {
  text-align: center;
  margin-bottom: 48px;
}
.footer-business .footer-header .footer-main-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}
.footer-business .footer-header .footer-main-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 28px;
}
.footer-business .footer-header .footer-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-business .footer-header .footer-steps .footer-step {
  background: var(--primary-color);
  color: #fff;
  height: 27px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.footer-business .footer-header .footer-steps .footer-step-arrow {
  color: #fff;
  font-size: 20px;
}
.footer-business .footer-navigation {
  width: calc(16% - 50px);
}
.footer-business .footer-navigation .footer-nav-list {
  list-style: none;
  padding: 0;
}
.footer-business .footer-navigation .footer-nav-list li {
  line-height: 40px;
  font-size: 14px;
  line-height: 32px;
}
.footer-business .footer-navigation .footer-nav-list li a {
  font-family: var(--footer-font);
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-business .footer-navigation .footer-nav-list li a:hover {
  color: var(--primary-color);
}
.footer-business .footer-navigation .footer-details {
  margin-top: 6px;
  position: relative;
}
.footer-business .footer-navigation .footer-details .footer-dropdown-summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  font-family: var(--footer-font);
  color: #fff;
  line-height: 32px;
}
.footer-business .footer-navigation .footer-details .footer-dropdown-summary::-webkit-details-marker {
  display: none;
}
.footer-business .footer-navigation .footer-details .footer-dropdown-summary::marker {
  content: "";
}
.footer-business .footer-navigation .footer-details .footer-dropdown-summary .dropdown-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.footer-business .footer-navigation .footer-details[open] .dropdown-arrow {
  transform: rotate(180deg);
}
.footer-business .footer-navigation .footer-details .footer-dropdown-list {
  list-style: none;
  padding: 8px 10px;
  border: 1px solid #AAAAAA40;
  border-radius: 8px;
  background: var(--bg-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  width: 100%;
  z-index: 5;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.footer-business .footer-navigation .footer-details .footer-dropdown-list li {
  line-height: 32px;
}
.footer-business .footer-navigation .footer-details .footer-dropdown-list a {
  font-family: var(--footer-font);
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-business .footer-navigation .footer-details .footer-dropdown-list a:hover {
  color: var(--primary-color);
}
.footer-business .footer-navigation .footer-details[open] .footer-dropdown-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.footer-business .footer-contact {
  width: calc(30% - 50px);
}
.footer-business .footer-contact .contact-info {
  margin-top: 20px;
  margin-bottom: 22px;
}
.footer-business .footer-contact .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-family: var(--footer-font);
}
.footer-business .footer-contact .contact-info .contact-item .contact-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  border: solid 1px #fff;
}
.footer-business .footer-contact .contact-info .contact-item .contact-details {
  display: flex;
  flex-direction: column;
}
.footer-business .footer-contact .contact-info .contact-item .contact-details .contact-label {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 4px;
}
.footer-business .footer-contact .contact-info .contact-item .contact-details a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.footer-business .footer-contact .contact-info .contact-item .contact-details a:hover {
  color: white;
}
.footer-business .footer-contact .footer-social .social-title {
  color: #fff;
  font-family: var(--footer-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 12px;
}
.footer-business .footer-contact .footer-social .social-links {
  display: flex;
  gap: 15px;
}
.footer-business .footer-contact .footer-social .social-links .social-link {
  color: #e2e8f0;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-business .footer-contact .footer-social .social-links .social-link:hover {
  color: var(--primary-hover);
}
.footer-business .footer-legal {
  background: var(--bg-color);
  padding: 20px 0 8px;
  border-top: 1px solid #AAAAAA40;
}
.footer-business .footer-legal .legal-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  text-align: center;
  font-family: var(--footer-font);
  font-size: 16px;
  font-weight: 500;
}
.footer-business .footer-legal .legal-links .legal-link {
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  color: #fff;
}
.footer-business .footer-legal .legal-links .legal-link:hover {
  color: var(--primary-color);
}
.footer-business .footer-legal .legal-links .legal-separator {
  margin: 0 5px;
}
@media (max-width: 1024px) {
  .footer-form-card,
  .footer-canopy-card,
  .footer-navigation,
  .footer-contact {
    width: calc(50% - 60px) !important;
  }
  .footer-content {
    flex-wrap: wrap;
  }
  .footer-header .footer-main-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .footer-business .footer-header .footer-main-title {
    font-size: 28px;
  }
  .footer-business .footer-header .footer-steps {
    gap: 8px;
  }
  .footer-business .footer-content {
    flex-direction: column;
  }
  .footer-business .social-links {
    justify-content: center;
  }
  .footer-business .footer-form-card,
  .footer-business .footer-canopy-card,
  .footer-business .footer-navigation,
  .footer-business .footer-contact {
    width: 100% !important;
    text-align: center;
  }
  .footer-business .footer-canopy-card {
    justify-content: flex-start;
  }
  .footer-business .contact-item {
    justify-content: center;
    flex-direction: column;
    align-items: center !important;
  }
  .footer-business .contact-item .contact-icon {
    margin: 0 !important;
  }
  .footer-business .footer-navigation .footer-details .footer-dropdown-summary {
    justify-content: center;
  }
  .footer-business .footer-navigation .footer-details .footer-dropdown-list {
    position: static;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 8px;
    pointer-events: auto;
  }
}
