:root {
  --red: #E53935;
  --red-dark: #C62828;
  --red-light: #FFEBEE;
  --navy: #1E3A8A;
  --navy-light: #EFF4FF;
  --navy-mid: #2d4fa3;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --surface: #EEF2FF;
  --border: #DDE3F0;
  --gray: #64748B;
  --text-dark: #1A2340;
  --text-mid: #3D4F6E;
  --ff: 'Poppins', sans-serif;
}

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

a {
  text-decoration: none !important;
}

body {
  font-family: var(--ff);
  font-size: 15px;
  color: var(--text-dark);
  margin: 0;
  padding: 0 !important;
  background: var(--off-white);
  overflow-x: hidden;
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes animUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(40px);
  }
}

/* TOP BAR */
#topbar {
  background: var(--navy);
  padding: 7px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.topbar-contact a .fa-icon {
  color: #93C5FD;
  font-size: 13px;
}

.topbar-contact a:hover {
  color: #fff;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color 0.2s;
  display: inline-flex;
}

.topbar-social a:hover {
  color: #fff;
}

/* HEADER */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 16px rgba(30, 58, 138, 0.10);
  transition: box-shadow 0.3s;
}

#main-header.scrolled {
  box-shadow: 0 4px 28px rgba(30, 58, 138, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--red);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1);
  overflow: hidden;
  flex-shrink: 0;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link:hover .logo-img-wrap {
  box-shadow: 0 0 0 7px rgba(229, 57, 53, 0.15);
  transform: scale(1.05);
}

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

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
}

.logo-main span {
  color: var(--red);
}

.logo-sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.logo-svg-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 50%;
  color: #fff;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.desktop-nav .nav-link {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-mid) !important;
  padding: 8px 14px !important;
  border-radius: 6px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}

.desktop-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  color: var(--navy) !important;
  background: var(--navy-light);
}

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

.desktop-nav .dropdown-toggle .fa-chevron-down {
  font-size: 10px;
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.desktop-nav .nav-item.dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
  opacity: 1;
}

.desktop-nav .dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 14px 36px rgba(30, 58, 138, 0.13);
  padding: 8px 0;
  min-width: 235px;
  animation: dropFade 0.18s ease forwards;
  margin-top: 0 !important;
  top: 100% !important;
}

.desktop-nav .nav-item.dropdown:hover>.dropdown-menu {
  display: block;
}

.desktop-nav .dropdown-item {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
}

.desktop-nav .dropdown-item:hover {
  background: var(--navy-light);
  color: var(--navy);
  padding-left: 22px;
}

.desktop-nav .dropdown-item:hover .cat-icon {
  background: var(--red-light);
}

.desktop-nav .dropdown-item:hover .cat-icon .fa-icon {
  color: var(--red);
}

.cat-icon {
  width: 30px;
  height: 30px;
  background: var(--navy-light);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cat-icon .fa-icon {
  color: var(--navy);
  font-size: 13px;
  transition: color 0.2s;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-mid);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: color 0.2s, background 0.2s;
}

.icon-btn .fa-icon {
  font-size: 18px;
}

.icon-btn:hover {
  color: var(--navy);
  background: var(--navy-light);
}

.icon-btn.cart-btn:hover {
  color: var(--red);
  background: var(--red-light);
}

.cart-pill {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  border: 2px solid var(--white);
}

.search-collapse-wrap {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 10px 0;
}

.search-collapse-wrap .form-control {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  font-family: var(--ff);
  height: 42px;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
}

.search-collapse-wrap .form-control:focus {
  border-color: var(--navy);
  box-shadow: none;
}

.search-collapse-wrap .btn-search {
  background: var(--navy);
  border: none;
  color: #fff;
  font-size: 15px;
  width: 48px;
  border-radius: 0 8px 8px 0;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.search-collapse-wrap .btn-search:hover {
  background: var(--red);
}

.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}

.mobile-logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
}

.mobile-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--red);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-brand {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.8px;
  line-height: 1.1;
}

.mobile-brand small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media(max-width:991.98px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-header {
    display: flex !important;
  }

  #topbar {
    display: none;
  }
}

@media(min-width:992px) {
  .mobile-only {
    display: none !important;
  }
}

/* OFFCANVAS */
#navCanvas {
  background: var(--white);
  max-width: 300px;
}

#navCanvas .offcanvas-header {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  padding: 14px 16px;
}

#navCanvas .offcanvas-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

#navCanvas .offcanvas-title img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--red);
}

#navCanvas .btn-close {
  filter: invert(1) brightness(0.7);
}

#navCanvas .offcanvas-body {
  padding: 0;
}

.oc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.oc-link:hover {
  background: var(--navy-light);
  color: var(--navy);
  padding-left: 28px;
}

.oc-icon {
  width: 30px;
  height: 30px;
  background: var(--surface);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.oc-icon .fa-icon {
  color: var(--navy);
  font-size: 13px;
}

.oc-link:hover .oc-icon {
  background: var(--red-light);
}

.oc-link:hover .oc-icon .fa-icon {
  color: var(--red);
}

.oc-cat-btn {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  color: var(--text-mid);
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.oc-cat-btn:hover,
.oc-cat-btn[aria-expanded="true"] {
  background: var(--navy-light);
  color: var(--navy);
}

.oc-cat-btn[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.oc-cat-btn .oc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.oc-cat-btn .chevron-fa {
  color: var(--gray);
  font-size: 12px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
}

.oc-cat-btn[aria-expanded="true"] .chevron-fa {
  transform: rotate(180deg);
  color: var(--red);
}

.oc-sub {
  background: var(--off-white);
}

.oc-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 54px;
  color: var(--gray);
  font-size: 13.5px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.25s, background 0.2s;
}

.oc-sub a .sub-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  opacity: 0.5;
}

.oc-sub a:hover {
  color: var(--navy);
  padding-left: 62px;
  background: var(--navy-light);
}

.oc-social-section {
  padding: 20px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

.oc-social-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.oc-social-row {
  display: flex;
  gap: 10px;
}

.s-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: opacity 0.2s;
}

.s-btn:hover {
  opacity: 0.88;
}

.s-btn.fb {
  background: #1877F2;
}

.s-btn.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
}

.s-btn.wa {
  background: #25D366;
}

/* CART OFFCANVAS */
#cartCanvas {
  background: var(--off-white);
  /* max-width: 360px; */
}

#cartCanvas .offcanvas-header {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}

#cartCanvas .offcanvas-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

#cartCanvas .btn-close {
  filter: invert(1) brightness(0.7);
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
}

.cart-empty-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-empty-icon i {
  font-size: 36px;
  color: var(--navy);
  opacity: 0.25;
}

.cart-empty h6 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin: 0;
}

.cart-empty p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
}

#cartItemsList {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.cart-item-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}

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

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-cat {
  font-size: 10.5px;
  color: var(--gray);
  font-weight: 500;
  text-transform: capitalize;
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.cart-item-remove:hover {
  background: var(--red-light);
  border-color: var(--red);
}

.cart-item-remove i {
  font-size: 11px;
  color: var(--gray);
}

.cart-item-remove:hover i {
  color: var(--red);
}

.cart-footer {
  padding: 16px 20px;
  background: var(--white);
  border-top: 2px solid var(--border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.cart-total-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
}

.cart-total-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
}

.btn-checkout {
  background: var(--navy);
  border: none;
  color: #fff;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 0;
  width: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-checkout:hover {
  background: var(--red);
}

/* HERO */
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 6s ease;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
}

.slide-inner {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.sl-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sl-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 8vw, 118px);
  color: #fff;
  line-height: 0.85;
  margin: 0;
}

.sl-h1 .outline {
  -webkit-text-stroke: 2.5px rgba(255, 255, 255, 0.4);
  color: transparent;
}

.sl-h1 .accent {
  color: var(--red);
}

.sl-divider {
  width: 70px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 22px auto;
}

.sl-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto;
}

.sl-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 26px 0;
}

.sl-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s;
}

.sl-pill:hover {
  background: rgba(229, 57, 53, 0.25);
  border-color: rgba(229, 57, 53, 0.5);
}

.sl-pill i {
  color: #fbbf24;
  font-size: 10px;
}

.swiper-slide-active .sl-eyebrow {
  animation: animUp 0.7s ease 0.10s both;
}

.swiper-slide-active .sl-h1 {
  animation: animUp 0.7s ease 0.25s both;
}

.swiper-slide-active .sl-divider {
  animation: animUp 0.7s ease 0.38s both;
}

.swiper-slide-active .sl-desc {
  animation: animUp 0.7s ease 0.50s both;
}

.swiper-slide-active .sl-pills {
  animation: animUp 0.7s ease 0.63s both;
}

.swiper-button-prev,
.swiper-button-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #fff !important;
  transition: all 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--red);
  border-color: var(--red);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px !important;
  font-weight: 900;
}

@media(max-width:991.98px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

@media(max-width:600px) {
  .hero-swiper {
    height: 100vh;
  }

  .sl-h1 {
    font-size: clamp(46px, 13vw, 78px);
  }

  .sl-pills {
    gap: 8px;
  }

  .sl-pill {
    font-size: 10px;
    padding: 6px 12px;
  }
}

/* SHARED */
.sec-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.sec-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--navy);
  line-height: 1;
  margin: 0 0 4px;
}

.sec-h2 span {
  color: var(--red);
}

.sec-div {
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 12px 0 16px;
}

.sec-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 500px;
}

/* D7 */
.d7-sec {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.d7-sec .swiper-d7 {
  overflow: hidden;
}

.d7-sec .swiper-d7 .swiper-wrapper {
  align-items: stretch;
}

.d7-sec .swiper-d7 .swiper-slide {
  height: auto;
  display: flex;
}

.d7-card {
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 130px 1fr;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  width: 100%;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.d7-card:hover {
  box-shadow: 0 12px 34px rgba(30, 58, 138, 0.12);
  border-color: var(--red);
}

.d7-img {
  overflow: hidden;
  height: 200px;
}

.d7-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.d7-card:hover .d7-img img {
  transform: scale(1.08);
}

.d7-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.d7-ic {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: background 0.3s;
}

.d7-card:hover .d7-ic {
  background: var(--red-light);
}

.d7-ic i {
  font-size: 14px;
  color: var(--navy);
  transition: color 0.3s;
}

.d7-card:hover .d7-ic i {
  color: var(--red);
}

.d7-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.d7-sub {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.5;
}

/* PRODUCTS */
.prod-section {
  padding: 60px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.prod-section .sec-header {
  text-align: center;
  margin-bottom: 46px;
}

.sec-tag-inline {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.filter-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.filter-btn {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.22s;
}

.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--navy-light);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.22);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media(max-width:1199px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:767px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media(max-width:479px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

.prod-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.prod-card:hover {
  box-shadow: 0 16px 48px rgba(30, 58, 138, 0.14);
  border-color: rgba(229, 57, 53, 0.3);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-new {
  background: var(--navy);
  color: #fff;
}

.badge-sale {
  background: #f59e0b;
  color: #fff;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 195px;
  background: var(--surface);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.prod-card:hover .card-img-wrap img {
  transform: scale(1.07);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 58, 138, 0.07) 100%);
  pointer-events: none;
}

.card-quick {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 58, 138, 0.88);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px;
  transform: translateY(100%);
  transition: transform 0.28s ease;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.prod-card:hover .card-quick {
  transform: translateY(0);
}

.card-body-wrap {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.card-name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 5px;
}

.card-desc {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 11px;
  flex: 1;
}

.card-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  border: none;
  font-family: var(--ff);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s;
  flex: 1;
  justify-content: center;
}

.btn-contact:hover {
  background: var(--red);
  box-shadow: 0 4px 14px rgba(229, 57, 53, 0.28);
}

.btn-contact i {
  font-size: 12px;
}

.btn-cart-bottom {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.22s;
}

.btn-cart-bottom i {
  font-size: 14px;
  color: var(--navy);
  transition: color 0.2s;
}

.btn-cart-bottom:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.btn-cart-bottom:hover i {
  color: #fff;
}

.btn-cart-bottom.added {
  background: var(--red);
  border-color: var(--red);
}

.btn-cart-bottom.added i {
  color: #fff;
}

/* TOAST */
.toast-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-item {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.35s ease forwards;
  border-left: 4px solid var(--red);
}

.toast-item i {
  color: #fbbf24;
  font-size: 14px;
}

.toast-item.out {
  animation: toastOut 0.3s ease forwards;
}

/* MODAL */
.modal-backdrop-custom {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 40, 0.65);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.modal-backdrop-custom.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 32px 80px rgba(10, 15, 40, 0.32);
  overflow: hidden;
  transform: scale(0.93) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop-custom.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header-custom {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 3px solid var(--red);
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 13px;
}

.modal-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-header-icon i {
  font-size: 20px;
  color: #fff;
}

.modal-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}

.modal-title-main {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.modal-title-prod {
  font-size: 13px;
  font-weight: 600;
  color: #93C5FD;
  margin-top: 2px;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  color: #fff;
  font-size: 15px;
}

.modal-close-btn:hover {
  background: rgba(229, 57, 53, 0.5);
  border-color: var(--red);
}

.modal-body-custom {
  padding: 24px 24px 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-label-custom {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.req-star {
  color: var(--red);
  font-size: 13px;
}

.form-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 0 14px;
  font-family: var(--ff);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
  background: #fff;
}

.form-input.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.form-textarea {
  width: 100%;
  min-height: 84px;
  resize: vertical;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 11px 14px;
  font-family: var(--ff);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
  background: #fff;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media(max-width:480px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.modal-footer-custom {
  padding: 16px 24px 22px;
  display: flex;
  gap: 10px;
}

.btn-submit {
  flex: 1;
  height: 46px;
  background: var(--navy);
  border: none;
  border-radius: 10px;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.22s, box-shadow 0.22s;
}

.btn-submit:hover {
  background: var(--red);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.32);
}

.btn-submit.submitting {
  opacity: 0.7;
  pointer-events: none;
}

.btn-cancel {
  height: 46px;
  padding: 0 20px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cancel:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.modal-success {
  padding: 44px 24px;
  text-align: center;
  display: none;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.28);
}

.success-icon i {
  font-size: 30px;
  color: #fff;
}

.success-h {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.success-p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto 22px;
}

.btn-success-close {
  background: var(--navy);
  border: none;
  color: #fff;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-success-close:hover {
  background: var(--red);
}

/* CTA */
.sbs-cta-section {
  background: #080F22;
  position: relative;
  overflow: hidden;
}

.sbs-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.sbs-cta-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.sbs-glow-left {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.cta-top {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.cta-eyebrow-line {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #E53935, rgba(229, 57, 53, 0.3));
  border-radius: 2px;
  flex-shrink: 0;
}

.cta-eyebrow-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E53935;
}

.cta-heading {
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.cta-heading em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
}

.cta-heading span {
  color: #E53935;
}

.cta-subtext {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 36px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.trust-badge i {
  font-size: 11px;
  color: #4ADE80;
}

.cta-contact-card {
  background: #0D1830;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.cta-contact-header {
  background: linear-gradient(135deg, #1E3A8A 0%, #162f74 100%);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-contact-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(229, 57, 53, 0.2);
  border: 1.5px solid rgba(229, 57, 53, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact-header-icon i {
  color: #E53935;
  font-size: 18px;
}

.cta-contact-header-text {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.cta-contact-header-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 2px;
}

.cta-contact-body {
  padding: 22px 26px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-row:last-of-type {
  border-bottom: none;
}

.contact-row:hover {
  opacity: 0.78;
}

.cr-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cr-icon i {
  font-size: 14px;
  color: #93C5FD;
}

.cr-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 3px;
}

.cr-value {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  word-break: break-word;
}

.cr-value.small {
  font-size: 12.5px;
}

.cta-card-footer {
  padding: 18px 26px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 10px;
}

.btn-wa-card {
  flex: 1;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 11px 14px;
  border-radius: 8px;
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-wa-card:hover {
  background: #1ebe5a;
  color: #fff;
  transform: translateY(-1px);
}

.btn-fb-card {
  flex: 1;
  background: #1877F2;
  color: #fff;
  border: none;
  padding: 11px 14px;
  border-radius: 8px;
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-fb-card:hover {
  background: #1565C0;
  color: #fff;
  transform: translateY(-1px);
}

.gst-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gst-strip i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.gst-strip-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
}

.gst-strip-num {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

.cta-stats-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-stats-strip .row {
  align-items: stretch;
}

.cta-stats-strip [class*="col-"] {
  display: flex;
}

.stat-cell {
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
  width: 100%;
  min-height: 100%;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell:hover {
  background: rgba(255, 255, 255, 0.025);
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(229, 57, 53, 0.12);
  border: 1.5px solid rgba(229, 57, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  color: #E53935;
  font-size: 19px;
}

.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

@media(max-width:991px) {
  .cta-top {
    padding: 72px 0 56px;
  }

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-cell.stat-bottom {
    border-bottom: none;
  }
}

@media(max-width:767px) {
  .stat-cell {
    padding: 24px 16px;
    gap: 12px;
    border-right: none;
    border-bottom: none;
  }

  .stat-cell.stat-left {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-cell.stat-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .stat-icon i {
    font-size: 16px;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }
}

@media(max-width:575px) {
  .cta-top {
    padding: 52px 0 40px;
  }

  .cta-heading {
    font-size: 28px;
  }

  .stat-cell {
    padding: 20px 12px;
    gap: 10px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .stat-icon i {
    font-size: 14px;
  }

  .stat-num {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10.5px;
    line-height: 1.35;
  }
}

/* FOOTER */
#main-footer {
  background: var(--white);
  border-top: 4px solid var(--navy);
}

.footer-top {
  padding: 60px 0;
}

.footer-col+.footer-col {
  border-left: 1px solid var(--border);
  padding-left: 40px;
}

@media(max-width:991px) {
  .footer-col+.footer-col {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 36px;
    margin-top: 8px;
  }
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 3px solid var(--red);
  box-shadow: 0 0 0 5px rgba(229, 57, 53, 0.1);
  overflow: hidden;
  flex-shrink: 0;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-link:hover .footer-logo-img {
  box-shadow: 0 0 0 8px rgba(229, 57, 53, 0.15);
  transform: scale(1.04);
}

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

.footer-brand {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.footer-brand span {
  color: var(--red);
}

.footer-brand small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-summary {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.f-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  transition: opacity 0.2s;
}

.f-social-btn:hover {
  opacity: 0.85;
}

.f-social-btn.fb {
  background: #1877F2;
}

.f-social-btn.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
}

.f-social-btn.wa {
  background: #25D366;
}

.footer-heading {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
  white-space: nowrap;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-wrap-mode: nowrap;
}

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

.footer-links a {
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color 0.2s, gap 0.2s;
}

.footer-links a .link-arrow {
  font-size: 11px;
  color: var(--navy);
}

.footer-links a:hover {
  color: var(--navy);
  gap: 13px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.contact-icon-wrap {
  width: 38px;
  height: 38px;
  background: var(--navy-light);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap .fa-icon {
  color: var(--navy);
  font-size: 15px;
}

.contact-text {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}

.contact-text a {
  color: var(--text-mid);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-text a:hover {
  color: var(--navy);
}

.footer-map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.08);
  transition: box-shadow 0.3s;
}

.footer-map:hover {
  box-shadow: 0 8px 28px rgba(30, 58, 138, 0.14);
}

.footer-map iframe {
  width: 100%;
  height: 170px;
  border: none;
  display: block;
}

.footer-bottom {
  background: var(--navy);
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 500;
}

.footer-copy strong {
  color: #93C5FD;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.2);
}

@media(max-width:575px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-top {
    padding: 40px 0;
  }

  .footer-summary {
    max-width: 100%;
  }

  .logo-main {
    font-size: 18px;
  }

  .logo-sub {
    font-size: 8px;
  }
}

/* ABOUT */
#about-section {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.about-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(30, 58, 138, 0.15);
}

.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.about-years-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.35);
}

.about-years-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 1;
  color: #fff;
}

.about-years-num span {
  color: var(--red);
}

.about-years-txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.about-red-circle {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.08;
  pointer-events: none;
}

.about-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.about-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  color: var(--navy);
  line-height: 1;
  margin: 0 0 4px;
}

.about-h2 span {
  color: var(--red);
}

.about-divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 14px 0 18px;
}

.about-desc {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.about-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--red-light);
  border: 1.5px solid rgba(229, 57, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feat-icon i {
  color: var(--red);
  font-size: 16px;
}

.about-feat-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-feat-desc {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.6;
}

.btn-about-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: #fff;
  border: none;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s;
  text-decoration: none;
}

.btn-about-primary:hover {
  background: var(--red);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.28);
  color: #fff;
}

.btn-about-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
}

.btn-about-outline:hover {
  background: var(--navy);
  color: #fff;
}

@media(max-width:575px) {
  .about-img-wrap img {
    height: 280px;
  }
}

/* BACK TO TOP */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.35);
  cursor: pointer;
  font-size: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}

#backToTop.btt-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#backToTop:hover {
  background: var(--red);
}

@media(max-width:767px) {
  .d7-img {
    height: 320px;
  }
}

@media(max-width:575px) {
  .d7-img {
    height: 240px;
  }
}
@media(max-width:480px) {
  .modal-body-custom{
    overflow-y: scroll;
    height: 295px;
  }
}

label.error{
    font-size:12px;
    color:red;
}