:root {
    --theme-blue: #154f8b;
    --theme-yellow: #F8C618;
    --white: #ffffff;
    --black: #000000;
    --gray: #eeeeee;
    --border-light: rgba(255, 255, 255, 0.15);
    --transition-speed: 0.3s;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Web fonts */
@font-face {
    font-family: 'Arial Rounded MT';
    src: url('../fonts/ArialRoundedMTBold.woff2') format('woff2'), url('../fonts/ArialRoundedMTBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'AcklinCondensed';
    src: url('../fonts/AcklinCondensed.woff2') format('woff2'), url('../fonts/AcklinCondensed.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* Clean Base
------------------------------------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, a, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    outline: none;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html, body {
    -webkit-text-size-adjust: none;
    height: 100%;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}
iframe {
    vertical-align: top;
}
textarea:focus, input:focus, a, div, img {
    outline: none;
}
picture{
    display: inline-block;
    vertical-align: top;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* Base Typography
------------------------------------------------------------------------------*/
body {
    color: var(--black);
    font-size: 16px;
    font-family: 'Arial Rounded MT', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: -webkit-fill-available;
    height: auto;
}
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    body {
        height: 100%;
    }
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--black);
    line-height: 1.2;
    font-family: inherit;
    font-weight: 700;
}
.h1, h1 {
    font-size: 60px;
    margin-bottom: 20px;
}
.h2, h2 {
    font-size: 50px;
    margin-bottom: 20px;
}
.h3, h3 {
    font-size: 40px;
    margin-bottom: 17px;
}
.h4, h4 {
    font-size: 30px;
    margin-bottom: 17px;
}
.h5, h5 {
    font-size: 20px;
    margin-bottom: 15px;
}
.h6, h6 {
    font-size: 18px;
    margin-bottom: 14px;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    color: inherit;
    text-decoration: none;
}
p {
    line-height: 1.4;
    margin-bottom: 20px;
}
p:last-child {
    margin-bottom: 0;
}
ul {
    padding-left: 20px;
}
ul li {
    padding-bottom: 10px;
}
ul li:last-child {
    padding-bottom: 0;
}
.main-content {
        flex-grow: 1;
}
.main-content ul, .main-content ol {
    padding-bottom: 15px;
}
.main-content ul ul, .main-content ul ol, .main-content ol ol, .main-content ol ul {
    padding-top: 10px;
    padding-bottom: 0;
}
img {
    border: none;
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: top;
}
img[src$=".svg"] {
    display: inline-block;
    vertical-align: top;
}
/* Link
------------------------------------------------------------------------------*/
a {
    color: var(--black);
    transition: 0.3s;
}
a:hover, a:focus {
    text-decoration: none;
    outline: none;
}
/* 5. Forms
------------------------------------------------------------------------------*/
label {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 10px;
    display: block;
}
input, select, textarea, button {
    font-family: 'Arial Rounded MT', sans-serif;
}
input[type="text"], input[type="submit"], input[type="button"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], textarea {
    -webkit-appearance: none;
    outline: none;
}
select, input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], input[type="number"], textarea {
    border: 1px solid #dedede;
    padding: 0 15px;
    color: var(--black);
    font-size: 16px;
    height: 46px;
    font-weight: 400;
    width: 100%;
    transition: 0.3s;
}
textarea {
    display: block;
    height: 150px;
    padding: 20px 15px;
    resize: none;
    overflow: auto;
}
select {
    -webkit-appearance: none;
    padding-right: 1.875em;
    background-image: url('../images/select-down-arrow.svg');
    background-size: 14px 7px;
    background-position: right 0.5em center;
    background-repeat: no-repeat;
}
select:focus {
    outline: none;
}
select option {
    background-color: #000000;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="search"]:focus, input[type="number"]:focus, textarea:focus {
    border-color: #66afe9;
    outline: none;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    outline: none;
}
button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    outline: none;
}
input[type="search"] {
    -webkit-appearance: none;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-input-placeholder {
    opacity: 1 !important;
    color: var(--black);
}
:-moz-placeholder {
    opacity: 1 !important;
    color: var(--black);
}
::-moz-placeholder {
    opacity: 1 !important;
    color: var(--black);
}
:-ms-input-placeholder {
    opacity: 1 !important;
    color: var(--black);
}
.form-group {
    margin-bottom: 30px;
}
.w-full {
    width: 100%;
}
/* buttons */
.btn {
    display: inline-block;
    vertical-align: top;
    padding: 8px 22px;
    font-size: inherit;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    border-radius: 8px;
    color: var(--black);
    background-color: #000000;
    transition: 0.3s;
    min-width: 115px;
}
.btn:hover, .btn:focus, .btn:focus-visible, .btn:active {
    color: var(--black) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: #d60309 !important;
    text-decoration: none;
}
.py-10 {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.my-10 {
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
}

/*--- main container ---*/
.container {
    max-width: 1300px;
}
.container-fluid {
    max-width: 1700px;
}
.container, .container-fluid {
    width: 100%;
    margin: auto;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}

/* header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    border-top: 7px solid var(--theme-yellow);
    background: linear-gradient(to right, color-mix(in srgb, var(--theme-blue) 85%, var(--white)) 0%, var(--theme-blue) 70%);
    background-color: var(--theme-blue);
    box-shadow: 0 0 10px color-mix(in srgb, var(--black) 50%, transparent);
    transition: 0.3s;
}
.main-header.sticky {
    top: -8px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
}
.logo-wrap {
    max-width: 16.25rem;
    width: 100%;
    margin-top: -6px;
}
.header-right {
    display: flex;
}
/* main-menu */
.main-nav {
    height: 100%;
}
.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    height: 100%;
}
.nav-item {
    position: relative;
    margin: 0;
    padding: 0;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    height: 100%;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    cursor: pointer;
}
.nav-link.active{
    color: var(--theme-yellow)
}
.nav-link:hover, 
.nav-item.active > .nav-link {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--theme-yellow);
}
.nav-link i.cart-icon {
    color: var(--theme-yellow);
    font-size: 1.1rem;
}
.nav-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition-speed) ease;
}
.sub-menu-level-1 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 11.25rem;
    padding: 0;
    background-color: var(--theme-blue);
    list-style: none;
    box-shadow: var(--shadow);
    display: none;
    border-top: 3px solid var(--theme-yellow);
    z-index: 100;
}
.sub-menu-level-1 .nav-link {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}
.sub-menu-level-2 {
    position: absolute;
    top: 0;
    left: 100%;
    width: 11.25rem;
    padding: 0;
    background-color: var(--theme-blue);
    list-style: none;
    box-shadow: var(--shadow);
    display: none;
    border-left: 2px solid var(--theme-yellow);
    z-index: 101;
}
.sub-menu-level-2 .nav-link {
    padding: 0.8rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: .625rem;
}
.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--theme-yellow);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
}
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* search-bar */
.search-trigger {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 8px;
  transition: color 0.2s ease;
}
.search-trigger:hover {
  color: var(--theme-yellow);
}
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: color-mix(in srgb, var(--theme-blue) 90%, transparent);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.close-search {
  position: absolute;
  top: 1.875rem;
  right: 3.125rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.close-search:hover {
  background-color: var(--theme-yellow);
}
.search-container {
  width: 90%;
  max-width: 700px;
}
.search-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 8px;
}
.search-input {
  background: transparent;
  border: none !important;
  outline: none !important;
  color: var(--white) !important;
  font-size: 1.2rem !important;
  padding: 0 !important;
}
.search-input::placeholder {
  color: var(--white);
  opacity: 0.9;
}
.search-submit {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}
.search-submit:hover {
  color: var(--theme-yellow);
}

/*---  home page  ---*/
/* Hero Slider Section */
.banner-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 450px;
  max-height: 750px;
  overflow: hidden;
}
.banner-slider .banner-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner-slider .banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}
.banner-slider .banner-slide.active {
  opacity: 1;
  visibility: visible;
}
.banner-slider .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-slider .banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  background-color: var(--theme-blue);
  border: none;
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.banner-slider .banner-arrow:hover {
  background-color: var(--theme-yellow);
  color: var(--black);
}
.banner-slider .banner-arrow-prev {
  left: 20px;
}
.banner-slider .banner-arrow-next {
  right: 20px;
}
.banner-slider .banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.banner-slider .banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--black) 30%, transparent);
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.banner-slider .banner-dot.active,
.banner-slider .banner-dot:hover {
  background-color: var(--theme-yellow);
  border-color: var(--theme-yellow);
  transform: scale(1.2);
}
/* footer */
.site-footer {
  position: relative;
  width: 100%;
  background-color: var(--white);
}
.site-footer .footer-cta-card {
  background: linear-gradient(135deg, var(--theme-blue) 0%, color-mix(in srgb, var(--theme-blue) 80%, var(--black)) 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(40px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.site-footer .footer-cta-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-yellow);
}
.site-footer .footer-cta-heading {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin: 6px 0 0 0;
}
.site-footer .footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--theme-yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.site-footer .footer-cta-btn:hover,
.site-footer .footer-cta-btn:focus-visible {
  transform: translateY(-2px);
  background-color: var(--white);
  outline: none;
}
.site-footer .footer-main {
  background-color: #0f172a;
  color: var(--white);
  padding: 100px 0 30px 0;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}
.site-footer .footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  max-width: 360px;
}
.site-footer .footer-address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .footer-address a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer .footer-address a:hover {
  color: var(--theme-yellow);
}
.site-footer .footer-heading {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: var(--theme-yellow);
  padding-left: 4px;
  outline: none;
}
.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
.site-footer .footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.site-footer .footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible {
  background-color: var(--theme-yellow);
  color: var(--black);
  outline: none;
}
/* intro-feature-section */
.intro-feature-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: color-mix(in srgb, var(--theme-blue) 6%, var(--white));
}
.intro-feature-container {
  position: relative;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 6px solid var(--theme-blue);
}
.intro-feature-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--theme-blue);
  background-color: color-mix(in srgb, var(--theme-blue) 10%, transparent);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.intro-feature-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--theme-blue);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.intro-feature-divider {
  width: 60px;
  height: 4px;
  background-color: var(--theme-yellow);
  border-radius: 2px;
  margin-bottom: 20px;
}
.intro-feature-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.85;
}
/* cards-slider-section */
.cards-slider-section {
  width: 100%;
}
.cards-slider-section .cards-slider-header {
  margin: 0 0 30px 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cards-slider-section .cards-slider-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-blue);
  background-color: color-mix(in srgb, var(--theme-blue) 10%, transparent);
  padding: 4px 12px;
  border-radius: 16px;
  margin-bottom: 8px;
}
.cards-slider-section .cards-slider-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme-blue);
  margin: 0;
}
.cards-slider-section .cards-slider-controls {
  display: flex;
  gap: 10px;
}
.cards-slider-section .cards-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--theme-blue) 30%, transparent);
  background-color: var(--white);
  color: var(--theme-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cards-slider-section .cards-slider-btn:hover {
  background-color: var(--theme-yellow);
  color: var(--black);
  border-color: var(--theme-yellow);
  transform: translateY(-2px);
}
.cards-slider-section .cards-slider-container {
  padding: 10px 0 20px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.cards-slider-section .cards-slider-container::-webkit-scrollbar {
  display: none;
}
.cards-slider-section .cards-slider-track {
  display: flex;
  gap: 24px;
}
.cards-slider-section .cards-slider-card {
  flex: 0 0 calc((100% - 48px) / 3);
  box-sizing: border-box;
  scroll-snap-align: start;
  background-color: var(--gray);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cards-slider-section .cards-slider-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.cards-slider-section .cards-badge {
  align-self: flex-start;
  background-color: var(--theme-yellow);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.cards-slider-section .cards-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--theme-blue);
  line-height: 1.4;
  margin: 0 0 16px 0;
  min-height: 2.8em;
}
.cards-slider-section .cards-card-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 11.25rem;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--white);
}
.cards-slider-section .cards-card-img {
  transition: transform 0.4s ease;
}
.cards-slider-section .cards-slider-card:hover .cards-card-img {
  transform: scale(1.05);
}
.cards-slider-section .cards-video-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: color-mix(in srgb, var(--black) 70%, transparent);
  color: var(--white);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cards-slider-section .cards-slider-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}
.cards-slider-section .cards-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--theme-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.cards-slider-section .cards-card-link:hover {
  color: var(--theme-yellow);
  gap: 10px;
}
/* usps-features-section */
.usps-features-section {
  background-color: color-mix(in srgb, var(--theme-blue) 6%, var(--white));
  width: 100%;
}
.usps-features-section .usps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: start;
}
.usps-features-section .usps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.usps-features-section .usps-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--theme-yellow);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.usps-features-section .usps-item:hover .usps-icon-wrap {
  transform: translateY(-4px);
}
.usps-features-section .usps-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--theme-blue);
  line-height: 1.35;
  margin: 0;
  max-width: 11.25rem;
}
/* zigzag-section */
.zigzag-section {
  width: 100%;
}
.zigzag-section .zigzag-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.zigzag-section .zigzag-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.zigzag-section .zigzag-row--reverse {
  flex-direction: row-reverse;
}
.zigzag-section .zigzag-content-col {
  flex: 1;
  width: 65%;
}
.zigzag-section .zigzag-image-col {
  width: 35%;
}
.zigzag-section .zigzag-image-wrap {
  width: 100%;
  height: auto;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.zigzag-section .zigzag-img {
  width: 100%;
  height: 100%;
  max-height: 31.25rem;
  object-fit: cover;
  display: block;
}
.zigzag-section .zigzag-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme-blue);
  line-height: 1.3;
  margin: 0 0 20px 0;
}
.zigzag-section .zigzag-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--black);
  opacity: 0.85;
  margin: 0 0 1rem 0;
}
.zigzag-section .zigzag-text:last-of-type {
  margin-bottom: 24px;
}
.zigzag-section .zigzag-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--theme-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.zigzag-section .zigzag-link:hover,
.zigzag-section .zigzag-link:focus-visible {
  color: var(--theme-yellow);
  gap: 10px;
  outline: none;
}
/* faq-section */
.faq-section {
  background-color: var(--white);
  width: 100%;
}
.faq-section .faq-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme-blue);
}
.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
}
.faq-section .faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--theme-blue) 12%, transparent);
}
.faq-section .faq-trigger {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq-section .faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--theme-blue);
  line-height: 1.4;
}
.faq-section .faq-icon {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--theme-blue);
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-section .faq-trigger:hover .faq-question,
.faq-section .faq-trigger:focus-visible .faq-question {
  color: color-mix(in srgb, var(--theme-blue) 80%, var(--black));
}
.faq-section .faq-trigger:focus-visible {
  outline: 2px solid var(--theme-blue);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-section .faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-section .faq-body {
  padding: 0 0 1.5rem 0;
}
.faq-section .faq-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--black);
  opacity: 0.85;
  margin: 0;
}

/*---  detail page  ---*/
.detail-section {
  padding: 3.75rem 0;
  background-color: color-mix(in srgb, var(--theme-blue) 4%, var(--white));
  width: 100%;
}
.detail-section .detail-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.detail-section .detail-sidebar {
  position: sticky;
  top: 5.375rem;
}
.detail-section .detail-nav-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--theme-blue) 12%, transparent);
}
.detail-section .detail-nav-badge {
  background-color: var(--theme-blue);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: .5rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  text-align: center;
}
.detail-section .detail-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-section .detail-nav-link {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--theme-blue);
  text-decoration: none;
  padding: .5rem .75rem;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.detail-section .detail-nav-link:hover,
.detail-section .detail-nav-link.active {
  background-color: color-mix(in srgb, var(--theme-blue) 10%, transparent);
  color: var(--theme-blue);
  font-weight: 700;
  padding-left: 1rem;
}
.detail-section .detail-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.detail-section .detail-header-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.detail-section .detail-pill-badge {
  font-size: 0.8rem;
  font-weight: 700;
  padding: .5rem 1.125rem;
  border-radius: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.detail-section .detail-pill-badge--primary {
  background-color: var(--theme-yellow);
  color: var(--black);
}
.detail-section .detail-pill-badge--secondary {
  background-color: color-mix(in srgb, var(--theme-blue) 12%, transparent);
  color: var(--theme-blue);
}
.detail-section .detail-block-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.detail-section .detail-block-header {
  background: linear-gradient(135deg, var(--theme-blue) 0%, color-mix(in srgb, var(--theme-blue) 85%, var(--black)) 100%);
  padding: 16px 28px;
}
.detail-section .detail-block-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.detail-section .detail-block-body {
  padding: 28px;
  display: flex;
  gap: 28px;
  align-items: start;
}
.detail-section .detail-text-col {
  flex: 1;
}
.detail-section .detail-text-col p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--black);
  opacity: 0.85;
  margin: 0 0 16px 0;
}
.detail-section .detail-text-col p:last-child {
  margin-bottom: 0;
}
.detail-section .detail-media-col {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.detail-section .detail-image-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 8px;
}
.detail-section .detail-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.detail-section .detail-image-wrap:hover .detail-img {
  transform: scale(1.04);
}