/* FILE: /mockup/assets/scss/main.scss */
/* FILE: /mockup/assets/scss/abstracts/_variables.scss */
/* FILE: /mockup/assets/scss/layout/_header.scss */
/* FILE: /mockup/assets/scss/abstracts/_variables.scss */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 90px;
  display: flex;
  align-items: center;
}
.header.is-scrolled {
  height: 75px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.header.is-scrolled .logo-img {
  transform: scale(0.95);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.header .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}
.header .logo-img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header .header-right-group {
  display: none;
  align-items: center;
}
@media (min-width: 992px) {
  .header .header-right-group {
    display: flex;
    gap: 2rem;
  }
}
.header .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.header .nav-item {
  position: relative;
}
.header .nav-link {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header .nav-link:hover, .header .nav-link.is-active {
  color: #ef3340;
}
.header .nav-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.header .nav-link:hover i {
  transform: translateY(2px);
}
.header .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.header .dropdown-menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}
.header .dropdown-menu li {
  margin: 0;
}
.header .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.header .dropdown-menu a:hover {
  background: #f8f9fa;
  color: #ef3340;
  padding-left: 20px;
}
.header .header-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 0 0.5rem;
}
.header .btn-header-cta {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #ef3340;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #ef3340;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(239, 51, 64, 0.15);
}
.header .btn-header-cta:hover {
  background-color: transparent;
  color: #ef3340;
  box-shadow: 0 6px 20px rgba(239, 51, 64, 0.25);
  transform: translateY(-2px);
}
.header .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  .header .hamburger {
    display: none;
  }
}
.header .hamburger span {
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: left center;
}
.header .hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 0);
}
.header .hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.header .hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 1px);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 120px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-drawer.is-open {
  right: 0;
}
.mobile-drawer .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-drawer .mobile-nav-item {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 12px;
}
.mobile-drawer .mobile-nav-item.has-submenu .mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-drawer .mobile-nav-link {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-drawer .mobile-nav-link:hover, .mobile-drawer .mobile-nav-link.is-active {
  color: #ef3340;
  padding-left: 8px;
}
.mobile-drawer .mobile-submenu {
  list-style: none;
  padding: 10px 0 0 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-drawer .mobile-submenu a {
  font-size: 0.95rem;
  color: #666666;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-drawer .mobile-submenu a:hover {
  color: #ef3340;
}
.mobile-drawer .mobile-drawer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
.mobile-drawer .btn-mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #ef3340;
  padding: 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(239, 51, 64, 0.15);
  border: 1px solid #ef3340;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-drawer .btn-mobile-cta:hover {
  background-color: transparent;
  color: #ef3340;
}
.mobile-drawer .btn-mobile-secondary {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  background-color: transparent;
  padding: 14px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid #e9ecef;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-drawer .btn-mobile-secondary:hover {
  background-color: #f8f9fa;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* FILE: /mockup/assets/scss/components/_cards.scss */
/* FILE: /mockup/assets/scss/abstracts/_variables.scss */
.premium-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(239, 51, 64, 0.1);
}
.premium-card .card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 50px;
  background-color: rgba(239, 51, 64, 0.08);
  color: #ef3340;
}
.premium-card .card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.premium-card .card-icon-wrap i {
  font-size: 1.5rem;
  color: #1a1a1a;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.premium-card:hover .card-icon-wrap {
  background-color: #ef3340;
}
.premium-card:hover .card-icon-wrap i {
  color: #ffffff;
  transform: scale(1.1);
}
.premium-card .card-title {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}
.premium-card .card-text {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.premium-card .card-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.premium-card .card-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #333333;
  font-weight: 500;
}
.premium-card .card-feature-list i {
  color: #ef3340;
  font-size: 0.9rem;
}
.premium-card .card-link {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: all 0.2s ease;
}
.premium-card .card-link i {
  font-size: 0.8rem;
  transition: all 0.2s ease;
}
.premium-card .card-link:hover {
  color: #ef3340;
}
.premium-card .card-link:hover i {
  transform: translateX(4px);
}

.brand-accent-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(239, 51, 64, 0.06);
  border: 1px solid rgba(239, 51, 64, 0.15);
  color: #ef3340;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.brand-accent-tag::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ef3340;
}

/* FILE: /mockup/assets/scss/layout/_footer.scss */
/* FILE: /mockup/assets/scss/abstracts/_variables.scss */
.footer-outer {
  background-color: #0f0f10;
  color: #ffffff;
  padding: 80px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-outer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-outer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer-outer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer-outer .footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 992px) {
  .footer-outer .footer-col-about {
    grid-column: span 4;
  }
}
@media (min-width: 992px) {
  .footer-outer .footer-col-contact {
    grid-column: span 3;
  }
}
@media (min-width: 992px) {
  .footer-outer .footer-col-links {
    grid-column: span 2;
  }
}
@media (min-width: 992px) {
  .footer-outer .footer-col-newsletter {
    grid-column: span 3;
  }
}
.footer-outer .footer-logo {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  display: block;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.footer-outer .footer-about-text {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-outer .footer-heading {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-outer .footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #ef3340;
}
.footer-outer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-outer .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-outer .footer-contact-list i {
  color: #ef3340;
  font-size: 1rem;
  margin-top: 3px;
}
.footer-outer .footer-contact-list a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.footer-outer .footer-contact-list a:hover {
  color: #ef3340;
  text-decoration: underline;
}
.footer-outer .footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-outer .footer-links-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  font-size: 0.95rem;
}
.footer-outer .footer-links-list a:hover {
  color: #ef3340;
  transform: translateX(4px);
}
.footer-outer .footer-social-wrap {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-outer .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-outer .social-btn:hover {
  background-color: #ef3340;
  color: #ffffff;
  border-color: #ef3340;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(239, 51, 64, 0.3);
}
.footer-outer .footer-cta-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  margin-top: 16px;
}
.footer-outer .footer-cta-box h5 {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer-outer .footer-cta-box .btn-footer-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #ef3340;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #ef3340;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(239, 51, 64, 0.15);
}
.footer-outer .footer-cta-box .btn-footer-cta:hover {
  background-color: transparent;
  color: #ef3340;
}
.footer-outer .footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
}
.footer-outer .footer-bottom .bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer-outer .footer-bottom .bottom-container {
    flex-direction: row;
  }
}
.footer-outer .footer-bottom .copyright-text {
  color: #888888;
  font-size: 0.9rem;
  margin: 0;
}
.footer-outer .footer-bottom .bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-outer .footer-bottom .bottom-links a {
  color: #888888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.footer-outer .footer-bottom .bottom-links a:hover {
  color: #ffffff;
}

.qinox-banner {
  background: rgb(7.5967741935, 7.5967741935, 8.1032258065);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.qinox-banner .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.qinox-banner .qinox-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  display: block;
}
.qinox-banner .qinox-logo {
  height: 30px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.qinox-banner .qinox-logo:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
.qinox-banner .qinox-logo svg {
  height: 100%;
  width: auto;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  background-color: #f8f9fa;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", "Inter", sans-serif;
  color: #1a1a1a;
  font-weight: 800;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 4.75rem;
  }
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.75rem;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 3.25rem;
  }
}

h3 {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 2.25rem;
  }
}

p {
  margin-bottom: 1.5rem;
}

.section {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 576px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.6s ease;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader .preloader-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 30px;
  opacity: 0;
  transform: scale(0.9);
  animation: logoFadeIn 1s forwards ease;
}
.preloader .preloader-bar-wrap {
  width: 200px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.preloader .preloader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #ef3340;
  animation: loadProgress 2s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes loadProgress {
  to {
    width: 100%;
  }
}
.btn {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn i {
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #ef3340;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(239, 51, 64, 0.2);
}
.btn-primary:hover {
  background-color: transparent;
  color: #ef3340;
  border-color: #ef3340;
  box-shadow: 0 15px 35px rgba(239, 51, 64, 0.3);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  border-color: #1a1a1a;
  color: #1a1a1a;
}
.btn-secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-white {
  background-color: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.btn-white:hover {
  background-color: #ef3340;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(239, 51, 64, 0.2);
}

.hero {
  background-color: #f8f9fa;
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 90vh;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }
}
.hero .hero-content {
  position: relative;
  z-index: 10;
}
.hero .hero-pretitle {
  margin-bottom: 16px;
}
.hero .hero-title {
  margin-bottom: 24px;
}
.hero .hero-title span {
  color: #ef3340;
}
.hero .hero-description {
  font-size: 1.15rem;
  color: #666666;
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.7;
}
.hero .hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero .hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 32px;
  flex-wrap: wrap;
}
.hero .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero .trust-item .trust-icon {
  color: #ef3340;
  font-size: 1.25rem;
}
.hero .trust-item .trust-text {
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.2;
}
.hero .trust-item .trust-text span {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  color: #666666;
}
.hero .hero-media-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .hero .hero-media-wrap {
    margin-top: 48px;
  }
}
.hero .hero-image-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transform: rotate(2deg);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 5;
}
.hero .hero-image-card:hover {
  transform: rotate(0) translateY(-10px);
}
.hero .hero-image-card img {
  border-radius: 16px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 576px) {
  .hero .hero-image-card img {
    height: 280px;
  }
}
.hero .floating-ui-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  animation: floatAnimation 4s ease-in-out infinite;
}
.hero .floating-ui-card.card-1 {
  bottom: 30px;
  left: -40px;
  animation-delay: 0s;
}
@media (max-width: 576px) {
  .hero .floating-ui-card.card-1 {
    left: 10px;
    bottom: 10px;
  }
}
.hero .floating-ui-card.card-2 {
  top: 40px;
  right: -20px;
  animation-delay: 2s;
}
@media (max-width: 576px) {
  .hero .floating-ui-card.card-2 {
    right: 10px;
    top: 10px;
  }
}
.hero .floating-ui-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(239, 51, 64, 0.1);
  color: #ef3340;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.hero .floating-ui-card .info h6 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.hero .floating-ui-card .info p {
  font-size: 0.8rem;
  margin: 0;
  color: #666666;
  font-weight: 500;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.stats-bar {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 40px 0;
  position: relative;
  z-index: 20;
  margin-top: -50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.stats-bar .stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .stats-bar .stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stats-bar .stat-item h4 {
  font-size: 2.5rem;
  color: #ef3340;
  margin-bottom: 8px;
  font-weight: 800;
}
.stats-bar .stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 600;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 60px auto;
}
.section-header .pretitle {
  margin-bottom: 12px;
}
.section-header .title {
  margin-bottom: 20px;
}
.section-header .desc {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.6;
}

.fleet-grid {
  margin-bottom: 40px;
}

.fleet-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.fleet-card:hover .fleet-image img {
  transform: scale(1.05);
}
.fleet-card .fleet-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.fleet-card .fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fleet-card .fleet-image .fleet-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}
.fleet-card .fleet-content {
  padding: 32px;
}
.fleet-card .fleet-title {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.fleet-card .fleet-desc {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.5;
}
.fleet-card .fleet-specs {
  display: flex;
  gap: 16px;
  border-top: 1px solid #e9ecef;
  padding-top: 16px;
}
.fleet-card .fleet-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #1a1a1a;
  font-weight: 600;
}
.fleet-card .fleet-specs .spec-item i {
  color: #ef3340;
}

.about-history {
  background-color: #ffffff;
}
.about-history .history-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  height: 480px;
}
.about-history .history-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 40px;
}
.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  bottom: 0;
  width: 2px;
  background-color: #e9ecef;
}
.history-timeline .timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.history-timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.history-timeline .timeline-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -32px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 4px solid #ef3340;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 5;
}
.history-timeline .timeline-item:hover::before {
  background-color: #ef3340;
  transform: scale(1.2);
}
.history-timeline .timeline-item .timeline-year {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ef3340;
  margin-bottom: 6px;
}
.history-timeline .timeline-item .timeline-title {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.history-timeline .timeline-item .timeline-desc {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.quote-section {
  background-color: #f8f9fa;
}

.quote-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
  .quote-card {
    padding: 30px 20px;
  }
}
.quote-card .form-group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .quote-card .form-group-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.quote-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote-card label {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
}
.quote-card input, .quote-card select, .quote-card textarea {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  background-color: #f8f9fa;
  color: #1a1a1a;
  transition: all 0.2s ease;
  width: 100%;
}
.quote-card input:focus, .quote-card select:focus, .quote-card textarea:focus {
  outline: none;
  border-color: #ef3340;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(239, 51, 64, 0.05);
}
.quote-card textarea {
  resize: vertical;
  min-height: 120px;
}
.quote-card .radio-group {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}
.quote-card .radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}
.quote-card .radio-group input[type=radio] {
  width: auto;
  cursor: pointer;
}
.quote-card .form-submit-wrap {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}
.quote-card .btn-submit {
  width: 100%;
}
@media (min-width: 768px) {
  .quote-card .btn-submit {
    width: auto;
  }
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faq-item.is-active {
  border-color: #ef3340;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.faq-item.is-active .faq-trigger {
  background-color: rgba(239, 51, 64, 0.02);
  color: #ef3340;
}
.faq-item.is-active .faq-trigger i {
  transform: rotate(180deg);
  color: #ef3340;
}
.faq-item.is-active .faq-content {
  max-height: 200px;
  padding: 0 24px 24px 24px;
  opacity: 1;
}
.faq-item .faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  transition: all 0.2s ease;
}
.faq-item .faq-trigger i {
  font-size: 0.95rem;
  color: #666666;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
}

.pretitle {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ef3340;
  display: inline-block;
}

.gsap-reveal {
  opacity: 0;
}

.gsap-reveal-left {
  opacity: 0;
}

.gsap-reveal-right {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .preloader, .hero-media-wrap, .premium-card, .btn, .nav-link, .fleet-card, .floating-ui-card, .faq-item {
    transition: none !important;
    animation: none !important;
  }
  .gsap-reveal, .gsap-reveal-left, .gsap-reveal-right {
    opacity: 1 !important;
  }
}

/*# sourceMappingURL=main.css.map */
