/* =========================================================
   TITO PROMOTION — MAIN STYLESHEET
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS VARIABLES
   --------------------------------------------------------- */
:root {
  --color-primary: #ed3833;
  --color-primary-dark: #c92925;
  --color-primary-light: #ff6e69;
  --color-secondary: #0d4fc8;
  --color-secondary-dark: #093a9c;
  --color-secondary-light: #4778e0;
  --color-dark: #101828;
  --color-dark-2: #1a2236;
  --color-body: #5c6579;
  --color-light: #f5f7fb;
  --color-white: #ffffff;
  --color-border: #e7e9f1;

  --font-primary: 'Montserrat', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 100px;

  --shadow-sm: 0 4px 14px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 24, 40, 0.1);
  --shadow-lg: 0 20px 50px rgba(16, 24, 40, 0.14);
  --shadow-primary: 0 14px 30px rgba(237, 56, 51, 0.25);
  --shadow-secondary: 0 14px 30px rgba(13, 79, 200, 0.25);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding: 110px;
}

/* ---------------------------------------------------------
   2. BASE / RESET
   --------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  background: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-sm {
  padding: 70px 0;
}

.bg-light {
  background-color: var(--color-light) !important;
}

.bg-dark-custom {
  background-color: var(--color-dark) !important;
}

.text-primary-custom {
  color: var(--color-primary) !important;
}

.text-secondary-custom {
  color: var(--color-secondary) !important;
}

.overflow-hidden-x {
  overflow-x: hidden;
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   3. SECTION HEADING / SUBTITLE
   --------------------------------------------------------- */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(237, 56, 51, 0.08);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.section-subtitle::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--color-primary);
}

.section-desc {
  font-size: 17px;
  color: var(--color-body);
  max-width: 640px;
}

.mx-auto-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------
   4. BUTTONS
   --------------------------------------------------------- */
.btn {
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: none;
  z-index: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  top: var(--ripple-y, 50%);
  left: var(--ripple-x, 50%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

.btn-ripple.rippling::after {
  animation: ripple-anim 0.6s ease-out;
}

@keyframes ripple-anim {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(22); opacity: 0; }
}

.btn-primary-custom {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.btn-primary-custom:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(237, 56, 51, 0.32);
}

.btn-secondary-custom {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow-secondary);
}

.btn-secondary-custom:hover {
  background: var(--color-secondary-dark);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13, 79, 200, 0.32);
}

.btn-outline-custom {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-border);
}

.btn-outline-custom:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-4px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
  transform: translateY(-4px);
}

.btn-sm-custom {
  padding: 10px 22px;
  font-size: 13px;
}

.btn-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-primary);
  transition: var(--transition);
}

.btn-icon-circle:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* ---------------------------------------------------------
   5. TOP BAR
   --------------------------------------------------------- */
.topbar {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  padding: 10px 0;
  position: relative;
  z-index: 1050;
}

.topbar a {
  color: rgba(255, 255, 255, 0.85);
}

.topbar a:hover {
  color: var(--color-primary-light);
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 28px;
}

.topbar-item i {
  color: var(--color-primary-light);
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  margin-left: 8px;
  color: var(--color-white);
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

/* ---------------------------------------------------------
   6. HEADER / NAVIGATION
   --------------------------------------------------------- */
.main-header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1040;
  transition: var(--transition);
  padding: 14px 0;
}

.main-header.header-static {
  position: relative;
  top: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.main-header.header-scrolled {
  position: fixed;
  top: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar-brand img {
  height: 46px;
  transition: var(--transition);
}

.header-scrolled .navbar-brand img,
.header-static .navbar-brand img {
  height: 40px;
}

.logo-white {
  display: block;
}

.logo-dark {
  display: none;
}

.header-scrolled .logo-white,
.header-static .logo-white {
  display: none;
}

.header-scrolled .logo-dark,
.header-static .logo-dark {
  display: block;
}

.main-nav .nav-link {
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px !important;
  position: relative;
  transition: var(--transition);
}

.header-scrolled .main-nav .nav-link,
.header-static .main-nav .nav-link {
  color: var(--color-dark);
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 18px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  width: calc(100% - 36px);
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--color-primary) !important;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.navbar-toggler-custom {
  border: none;
  background: transparent;
  font-size: 26px;
  color: var(--color-white);
  padding: 4px;
  line-height: 1;
}

.header-scrolled .navbar-toggler-custom,
.header-static .navbar-toggler-custom {
  color: var(--color-dark);
}

/* Offcanvas mobile menu */
.offcanvas-custom {
  width: 320px;
  background: var(--color-dark);
}

.offcanvas-custom .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-custom .nav-link:hover,
.offcanvas-custom .nav-link.active {
  color: var(--color-primary-light);
  padding-left: 8px !important;
}

.offcanvas-custom .btn-close {
  filter: invert(1);
}

/* ---------------------------------------------------------
   7. HERO SLIDER
   --------------------------------------------------------- */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 980px;
}

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 980px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 40, 0.62) 10%, rgba(16, 24, 40, 0.4) 60%, rgba(16, 24, 40, 0.18) 100%);
 
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 720px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237, 56, 51, 1);
  border: 1px solid rgba(237, 56, 51, 0.4);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 62px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero-title span {
  color: var(--color-primary-light);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  max-width: 560px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-slider .swiper-pagination {
  bottom: 40px !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
  display: flex;
  gap: 10px;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 32px;
  border-radius: 8px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 3;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-scroll-indicator .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--color-primary);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { top: -30%; }
  100% { top: 100%; }
}

/* ---------------------------------------------------------
   8. PAGE HERO / BREADCRUMB (internal pages)
   --------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: 220px 0 110px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.6), rgba(16, 24, 40, 0.5));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  text-align: center;
}

.page-hero-title {
  font-size: 48px;
  color: var(--color-white);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 26px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-custom a:hover {
  color: var(--color-primary-light);
}

.breadcrumb-custom .divider {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-custom .current {
  color: var(--color-primary-light);
}

/* ---------------------------------------------------------
   9. TRUSTED CLIENTS
   --------------------------------------------------------- */
.clients-strip {
  padding: 50px 0;
  border-bottom: 1px solid var(--color-border);
}

.clients-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.clients-track img {
  height: 82px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.clients-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------------------------------------------------------
   10. ABOUT SECTION
   --------------------------------------------------------- */
.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  transition: transform 0.6s ease;
}

.about-img-wrap:hover .about-img-main img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  box-shadow: var(--shadow-primary);
  text-align: center;
  min-width: 170px;
}

.experience-badge .num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.experience-badge .label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  display: block;
}

.about-list {
  margin-top: 26px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--color-dark);
}

.about-list li i {
  color: var(--color-white);
  background: var(--color-secondary);
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}

/* ---------------------------------------------------------
   11. SERVICE CARDS
   --------------------------------------------------------- */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 44px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: rgba(237, 56, 51, 0.08);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 26px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotateY(360deg);
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 15px;
  margin-bottom: 22px;
}

.service-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-readmore i {
  transition: var(--transition);
}

.service-card:hover .service-readmore {
  color: var(--color-primary);
}

.service-card:hover .service-readmore i {
  transform: translateX(6px);
}

/* ---------------------------------------------------------
   12. WHY CHOOSE US
   --------------------------------------------------------- */
.why-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 34px;
}

.why-feature .icon-box {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: var(--radius-sm);
  background: rgba(13, 79, 200, 0.08);
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: var(--transition);
}

.why-feature:hover .icon-box {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: scale(1.08);
}

.why-feature h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-feature p {
  font-size: 14.5px;
}

.why-illustration {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-counter-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-counter-float .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-counter-float .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}

.why-counter-float .label {
  font-size: 12.5px;
  color: var(--color-body);
}

/* ---------------------------------------------------------
   13. STATISTICS
   --------------------------------------------------------- */
.stats-section {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(237, 56, 51, 0.15), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(13, 79, 200, 0.2), transparent 45%);
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 10px;
}

.stat-icon {
  font-size: 36px;
  color: var(--color-primary-light);
  margin-bottom: 16px;
}

.stat-number {
  font-size: 46px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  font-weight: 600;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------------------------------------------------------
   14. WAREHOUSING SHOWCASE
   --------------------------------------------------------- */
.showcase-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.showcase-img img {
  transition: transform 0.6s ease;
}

.showcase-img:hover img {
  transform: scale(1.06);
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--color-dark);
  font-size: 15.5px;
}

.feature-checklist li i {
  color: var(--color-white);
  background: var(--color-primary);
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ---------------------------------------------------------
   15. BRANDING ICON GRID
   --------------------------------------------------------- */
.icon-grid-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 100%;
  transition: var(--transition);
}

.icon-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.icon-grid-card .icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.icon-grid-card h4 {
  font-size: 16.5px;
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   16. EVENTS ALTERNATING SECTIONS
   --------------------------------------------------------- */
.event-feature-row {
  align-items: center;
}

.event-feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.event-feature-img img {
  transition: transform 0.6s ease;
}

.event-feature-img:hover img {
  transform: scale(1.05);
}

.event-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.event-tag-list span {
  background: rgba(13, 79, 200, 0.08);
  color: var(--color-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
}

/* ---------------------------------------------------------
   17. PRODUCT CARDS
   --------------------------------------------------------- */
.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-body {
  padding: 24px;
}

.product-body h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.product-body p {
  font-size: 14px;
}

/* ---------------------------------------------------------
   18. PROCESS TIMELINE
   --------------------------------------------------------- */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  gap: 30px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0 10px, transparent 10px 20px);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 150px;
}

.process-step .step-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .step-circle {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-6px);
}

.process-step .step-num {
  position: absolute;
  top: -6px;
  right: calc(50% - 44px);
  background: var(--color-secondary);
  color: var(--color-white);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-step h5 {
  font-size: 16px;
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   19. TESTIMONIALS
   --------------------------------------------------------- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin: 10px 6px 40px;
  height: auto;
}

.testimonial-rating {
  color: #ffb400;
  font-size: 15px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 26px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author .avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-author .name {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 15px;
}

.testimonial-author .role {
  font-size: 13px;
  color: var(--color-body);
}

.testimonial-quote-icon {
  font-size: 32px;
  color: rgba(237, 56, 51, 0.2);
  margin-bottom: 10px;
}

.swiper-testimonials .swiper-pagination-bullet {
  background: var(--color-border);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-testimonials .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 26px;
  border-radius: 8px;
}

/* ---------------------------------------------------------
   20. CTA BANNER
   --------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--color-secondary), var(--color-secondary-dark));
  border-radius: var(--radius-lg);
  padding: 70px;
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(237, 56, 51, 0.25);
  border-radius: 50%;
  top: -140px;
  right: -100px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -100px;
  left: 10%;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner .cta-btns {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------
   21. CONTACT SECTION
   --------------------------------------------------------- */
.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  height: 100%;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.contact-info-card .icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: rgba(237, 56, 51, 0.1);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-info-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-info-card p, .contact-info-card a {
  font-size: 14.5px;
  color: var(--color-body);
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-control-custom {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 14.5px;
  transition: var(--transition);
  background: var(--color-light);
}

.form-control-custom:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(13, 79, 200, 0.1);
  background: var(--color-white);
}

.form-label-custom {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark);
  margin-bottom: 8px;
  display: block;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.invalid-feedback-custom {
  color: var(--color-primary);
  font-size: 12.5px;
  margin-top: 6px;
  display: none;
}

.was-validated-custom .form-control-custom:invalid ~ .invalid-feedback-custom,
.form-control-custom.is-invalid ~ .invalid-feedback-custom {
  display: block;
}

.form-control-custom.is-invalid {
  border-color: var(--color-primary);
}

.form-control-custom.is-valid {
  border-color: #28a745;
}

/* ---------------------------------------------------------
   22. FOOTER
   --------------------------------------------------------- */
.main-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.65);
  padding-top: 90px;
  position: relative;
}

.footer-widget h5 {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 14px;
}

.footer-widget h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.footer-widget p {
  font-size: 14.5px;
  line-height: 1.8;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\F231';
  font-family: 'bootstrap-icons';
  font-size: 10px;
  color: var(--color-primary);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14.5px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact li a:hover {
  color: var(--color-white);
}

.footer-contact li i {
  color: var(--color-primary-light);
  font-size: 18px;
  margin-top: 3px;
}

.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border-radius: var(--radius-full);
  padding: 14px 20px;
  font-size: 14px;
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  border-color: var(--color-primary);
  color: var(--color-white);
}

.footer-newsletter-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: var(--transition);
}

.footer-newsletter-btn:hover {
  background: var(--color-secondary);
  transform: rotate(45deg);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 70px;
  padding: 26px 0;
  font-size: 13.5px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a:hover {
  color: var(--color-white);
}

/* ---------------------------------------------------------
   23. FLOATING BUTTONS
   --------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1060;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse-wa 2.2s infinite;
  z-index: -1;
}

@keyframes pulse-wa {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
  color: var(--color-white);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--color-dark);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1060;
  width: 48px;
  height: 48px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  transform: translateY(-6px);
}

.back-to-top svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.back-to-top svg circle {
  fill: none;
  stroke: var(--color-primary-light);
  stroke-width: 3;
  stroke-dasharray: 138;
  stroke-dashoffset: var(--progress, 138);
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  z-index: 1070;
  width: 0%;
  transition: width 0.1s ease;
}

/* ---------------------------------------------------------
   24. PAGE CONTENT / RELATED SERVICES / MISC
   --------------------------------------------------------- */
.related-service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
  height: 100%;
}

.related-service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
}

.related-service-card .icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-sm);
  background: rgba(13, 79, 200, 0.08);
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.related-service-card h5 {
  font-size: 15.5px;
  margin-bottom: 2px;
}

.related-service-card span {
  font-size: 13px;
  color: var(--color-body);
}

.content-block img {
  border-radius: var(--radius-md);
}

.content-block ul.check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--color-dark);
}

.content-block ul.check-list li i {
  color: var(--color-white);
  background: var(--color-primary);
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

.package-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.package-card.featured {
  border: 2px solid var(--color-primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.package-card h4 {
  font-size: 20px;
  margin: 10px 0 20px;
}

.package-card ul {
  text-align: left;
  margin-bottom: 26px;
}

.package-card ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14.5px;
}

.package-card ul li i {
  color: var(--color-primary);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  transition: transform 0.6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.error-404-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0 100px;
}

.error-404-num {
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------------------------------------------------
   25. UTILITIES
   --------------------------------------------------------- */
.rounded-custom { border-radius: var(--radius-md) !important; }
.shadow-custom { box-shadow: var(--shadow-md) !important; }
.z-1 { z-index: 1; }

.divider-line {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-bottom: 20px;
}

::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-light);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}
