/* ============================================================
   Mr Screen On — Premium Design v2
   Same blue color theme, upgraded with depth & polish
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #0a84ff;
  --primary-dark: #0060c7;
  --primary-light: #e8f4ff;
  --primary-glow: rgba(10, 132, 255, 0.18);
  --primary-mid: #3b9eff;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow: 0 2px 8px rgba(0, 0, 0, .07), 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, .13);
  --shadow-blue: 0 8px 24px rgba(10, 132, 255, .22);
  --radius: 14px;
  --radius-sm: 9px;
  --radius-xs: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .18s;
}

a:hover {
  color: var(--primary-dark);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
}

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, #0f172a 0%, #1a2d4a 100%);
  padding: 9px 0;
  font-size: .8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar-link {
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  transition: .18s;
  font-size: .8rem;
  font-weight: 500;
}

.topbar-link:hover {
  color: #fff;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.main-nav {
  background: rgba(255, 255, 255, .97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05), var(--shadow-xs);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 200;
}

.navbar-brand {
  font-weight: 900;
  font-size: 1.22rem;
  color: var(--primary) !important;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -.03em;
  width:190px;
}

.navbar-toggler {
  border: 1.5px solid var(--border);
  background: none;
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text);
  font-size: 1rem;
  transition: .18s;
}

.navbar-toggler:hover {
  background: var(--bg-alt);
}

.navbar-collapse {
  padding: 0;
}

.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-muted) !important;
  font-size: .87rem;
  font-weight: 600;
  padding: 10px 13px !important;
  border-radius: var(--radius-sm);
  display: block;
  transition: .18s;
  white-space: nowrap;
  letter-spacing: -.01em;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary) !important;
  background: var(--primary-light);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px;
  z-index: 1000;
  list-style: none;
  animation: fadeDown .18s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

.dropdown-menu.show,
.dropdown:hover .dropdown-menu,
.dropdown.show .dropdown-menu {
  display: block;
}

.dropdown-menu-end {
  right: 0;
  left: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  font-size: .87rem;
  font-weight: 500;
  color: var(--text);
  transition: .15s;
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.dropdown-item.text-warning {
  color: #d97706 !important;
}

.dropdown-item.text-danger {
  color: var(--danger) !important;
}

.dropdown-divider {
  border-top: 1px solid var(--border);
  margin: 4px 0;
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--primary);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  min-width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(10, 132, 255, .4);
}

.cart-count:empty {
  display: none;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
/* ── HERO CAROUSEL ── */
.hero-section {
  background: #0a1628;
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  display: none;
}

/* Bootstrap carousel full-screen fix */
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  width: 100%;
}

.carousel-item {
  position: relative;
}

.hero-slide {
  width: 100%;
  min-height: 88vh;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #0a1628;
  display: flex;
  align-items: center;
  position: relative;
}

/* Dark overlay on top of banner image */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(8, 16, 34, .88) 0%,
      rgba(8, 20, 44, .70) 40%,
      rgba(8, 16, 34, .30) 100%);
  z-index: 1;
}

/* Subtle grid texture */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

/* Spare parts store - taller product image */
.prod-img {
  height: 240px !important;
}

.hero-content {
  max-width: 660px;
}

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.3rem;
  letter-spacing: -.04em;
}

.hero-title span {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 2.2rem;
  line-height: 1.75;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   TRACK BAR
══════════════════════════════════════════ */
.track-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  box-shadow: var(--shadow);
}

.track-form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 580px;
  margin: 0 auto;
}

.track-input {
  flex: 1;
  padding: 11px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: .2s;
  font-family: inherit;
}

.track-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.track-input::placeholder {
  color: var(--text-light);
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(90deg, var(--primary) 0%, #1a6fd4 100%);
  padding: 22px 0;
  box-shadow: 0 4px 20px rgba(10, 132, 255, .3);
}

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 10px 44px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  flex: 1;
  min-width: 150px;
}

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

.stat-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
}

.stat-lbl {
  display: block;
  font-size: .78rem;
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section-pad {
  padding: 80px 0;
}

.bg-light-section {
  background: var(--bg-alt);
}

.sec-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.sec-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .73rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .8rem;
}

.sec-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: .65rem;
}

.sec-title span {
  color: var(--primary);
}

.sec-sub {
  color: var(--text-muted);
  font-size: .97rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════ */
.srv-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: .3s cubic-bezier(.25, .8, .25, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.srv-card:hover {
  box-shadow: var(--shadow-md), 0 0 0 1.5px var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), #d0e8ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(10, 132, 255, .15);
  transition: .3s;
}

.srv-card:hover .srv-icon {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.srv-name {
  font-size: .97rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.srv-desc {
  color: var(--text-muted);
  font-size: .87rem;
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.srv-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.srv-price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.02em;
}

.srv-price-na {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   BRAND TILES
══════════════════════════════════════════ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.brand-tile {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transition: .25s;
  text-decoration: none;
}

.brand-tile:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

.brand-logo {
  height: 44px;
  object-fit: contain;
  width: 100%;
}

.brand-initial {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-light), #c7dcff);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--primary);
  font-size: 1rem;
}

.brand-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), #d0e8ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.5rem;
  color: var(--primary);
  transition: .3s;
  box-shadow: 0 4px 14px rgba(10, 132, 255, .15);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.why-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.why-desc {
  color: var(--text-muted);
  font-size: .88rem;
  margin: 0;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════ */
.prod-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s cubic-bezier(.25, .8, .25, 1);
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  box-shadow: var(--shadow-md), 0 0 0 1.5px var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.prod-img {
  height: 200px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

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

.prod-img-ph {
  color: var(--text-light);
  font-size: 2.5rem;
}

.sale-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--danger), #ff6b6b);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, .35);
}

.prod-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-name {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
  line-height: 1.35;
  letter-spacing: -.01em;
}

.prod-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .9rem;
}

.prod-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.02em;
}

.prod-orig {
  font-size: .82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.prod-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

/* ══════════════════════════════════════════
   REVIEW CARDS
══════════════════════════════════════════ */
.review-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: .25s;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 4rem;
  color: var(--primary-light);
  font-weight: 900;
  line-height: 1;
  font-family: Georgia, serif;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #c5deff;
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: .8rem;
  letter-spacing: .05em;
}

.review-text {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-style: italic;
}

.review-author {
  font-weight: 800;
  color: var(--text);
  font-size: .88rem;
  letter-spacing: -.01em;
}

/* ══════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════ */
.blog-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: #c5deff;
}

.blog-thumb {
  height: 200px;
  background: var(--bg-alt);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.07);
}

.blog-thumb-ph {
  color: var(--text-light);
}

.blog-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(10, 132, 255, .3);
}

.blog-body {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .65rem;
}

.blog-title {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .5rem;
  flex: 1;
  letter-spacing: -.01em;
}

.blog-title a {
  color: var(--text);
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: .5rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255, 255, 255, .06) 0%, transparent 70%),
    linear-gradient(135deg, var(--primary) 0%, #0051b5 50%, #003f8f 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: #fff;
  font-weight: 900;
  margin-bottom: .9rem;
  letter-spacing: -.03em;
  position: relative;
}

.cta-sub {
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
  margin-bottom: 2.2rem;
  position: relative;
}

/* ══════════════════════════════════════════
   PAGE BANNER
══════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0f2444 60%, #0a1628 100%);
  padding: 55px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.page-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: .4rem;
  letter-spacing: -.03em;
}

.page-sub {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  margin: 0;
}

/* ══════════════════════════════════════════
   CARD BOX
══════════════════════════════════════════ */
.card-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

/* ══════════════════════════════════════════
   FORMS
══════════════════════════════════════════ */
.form-label {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.form-control,
.form-select {
  width: 100%;
  padding: 11px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  transition: .2s;
  outline: none;
  font-family: inherit;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-control-sm {
  padding: 7px 11px;
  font-size: .83rem;
}

textarea.form-control {
  resize: vertical;
}

/* Step form */
.section-form-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.3rem;
  padding-bottom: .85rem;
  border-bottom: 2px solid var(--border-light);
  letter-spacing: -.01em;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(10, 132, 255, .3);
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: .2s cubic-bezier(.25, .8, .25, 1);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0070e0 100%);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(10, 132, 255, .28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0055b3 100%);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10, 132, 255, .38);
  transform: translateY(-1px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 132, 255, .3);
}

.btn-outline-secondary {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.btn-outline-secondary:hover {
  background: var(--bg-alt);
  color: var(--text);
  border-color: #c0ccd9;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.btn-success {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
  box-shadow: 0 4px 12px rgba(34, 197, 94, .25);
}

.btn-success:hover {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 6px 18px rgba(34, 197, 94, .35);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-sm {
  padding: 7px 16px;
  font-size: .83rem;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
}

.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none !important;
}

.w-100 {
  width: 100%;
}

.d-grid {
  display: grid;
}

/* ══════════════════════════════════════════
   ALERTS
══════════════════════════════════════════ */
.alert {
  padding: 13px 17px;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: .9rem;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border-left: 4px solid transparent;
}

.alert-danger {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-left-color: var(--danger);
  color: #991b1b;
}

.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left-color: var(--success);
  color: #166534;
}

.alert-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left-color: var(--warning);
  color: #92400e;
}

.alert-info {
  background: var(--primary-light);
  border: 1px solid #bfdbfe;
  border-left-color: var(--primary);
  color: #1e40af;
}

/* ══════════════════════════════════════════
   BADGES
══════════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: .71rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .02em;
}

.bg-primary {
  background: var(--primary) !important;
  color: #fff !important;
}

.bg-success {
  background: var(--success) !important;
  color: #fff !important;
}

.bg-danger {
  background: var(--danger) !important;
  color: #fff !important;
}

.bg-warning {
  background: var(--warning) !important;
  color: #fff !important;
}

.bg-info {
  background: #0ea5e9 !important;
  color: #fff !important;
}

.bg-secondary {
  background: #64748b !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════
   ACCORDION
══════════════════════════════════════════ */
.accordion-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  margin-bottom: 8px;
}

.accordion-button {
  background: #fff !important;
  color: var(--text) !important;
  font-weight: 700;
  padding: 17px 20px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: .18s;
}

.accordion-button::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--primary);
  transition: .2s;
  font-weight: 900;
}

.accordion-button:not(.collapsed)::after {
  content: '−';
}

.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: var(--primary-light) !important;
}

.accordion-body {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
  background: #fff;
}

.accordion-collapse {
  display: none;
}

.accordion-collapse.show {
  display: block;
}

/* ══════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════ */
.cart-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.cart-row:last-child {
  border-bottom: none;
}

.cart-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
}

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

.cart-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
}

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

.cart-name {
  font-weight: 700;
  color: var(--text);
  font-size: .93rem;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.cart-price {
  color: var(--primary);
  font-weight: 700;
  font-size: .85rem;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .15s;
}

.qty-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 3px 8px rgba(10, 132, 255, .25);
}

.qty-num {
  font-weight: 800;
  color: var(--text);
  min-width: 24px;
  text-align: center;
}

.cart-line-total {
  font-weight: 800;
  color: var(--text);
  min-width: 80px;
  text-align: right;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: .9rem;
  padding: 5px;
  transition: .15s;
  border-radius: 6px;
}

.cart-remove:hover {
  color: var(--danger);
  background: #fef2f2;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.summary-total {
  font-weight: 900;
  color: var(--text);
  font-size: 1.1rem;
  border-bottom: 2px solid var(--border);
}

/* ══════════════════════════════════════════
   SIDEBAR WIDGETS
══════════════════════════════════════════ */
.sidebar-title {
  font-size: .88rem;
  font-weight: 800;
  color: var(--text);
  border-bottom: 2.5px solid var(--primary);
  padding-bottom: 8px;
  margin-bottom: 14px;
  display: inline-block;
  letter-spacing: -.01em;
}

.sidebar-cat-link {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: .88rem;
  border-bottom: 1px solid var(--border-light);
  transition: .15s;
}

.sidebar-cat-link:hover,
.sidebar-cat-link.active {
  color: var(--primary);
  font-weight: 700;
}

.sidebar-cat-link span {
  color: var(--text-light);
  font-size: .8rem;
}

.recent-post {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.recent-post:last-child {
  border-bottom: none;
}

.recent-post-title {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.4;
}

.recent-post-title:hover {
  color: var(--primary);
}

.recent-post-date {
  font-size: .76rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   FILTER CARD
══════════════════════════════════════════ */
.filter-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  margin-bottom: 1rem;
}

.filter-title {
  font-size: .84rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.filter-link {
  display: block;
  padding: 7px 0;
  color: var(--text-muted);
  font-size: .88rem;
  border-bottom: 1px solid var(--border-light);
  transition: .15s;
}

.filter-link:last-child {
  border-bottom: none;
}

.filter-link:hover,
.filter-link.active {
  color: var(--primary);
  font-weight: 700;
}

/* ══════════════════════════════════════════
   BOOKING SUCCESS
══════════════════════════════════════════ */
.booking-id-box {
  background: linear-gradient(135deg, var(--primary-light), #dceeff);
  border: 2px dashed var(--primary);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.booking-id-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .1em;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 7px 0;
  font-size: .88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.info-list li:last-child {
  border: none;
}

/* ══════════════════════════════════════════
   TRACK PAGE
══════════════════════════════════════════ */
.track-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}

.progress-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
}

.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  margin-top: 2px;
}

.step-dot.done {
  background: var(--success);
  color: #fff;
}

.step-dot.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(10, 132, 255, .18);
}

.step-dot.pending {
  background: var(--bg-alt);
  border: 2px solid var(--border);
}

.step-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

.step-label.done {
  color: var(--success);
}

.step-label.active {
  color: var(--primary);
}

.step-label.pending {
  color: var(--text-light);
}

.step-time {
  font-size: .76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #0f1e33 0%, #0a1628 100%);
  color: rgba(255, 255, 255, .78);
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.site-footer h6,
.footer-heading {
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
  text-decoration: none;
  transition: .18s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  background: rgba(0, 0, 0, .25);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

/* ══════════════════════════════════════════
   WA FLOAT
══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .45);
  z-index: 9999;
  transition: .3s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.12);
  color: #fff;
  box-shadow: 0 6px 30px rgba(37, 211, 102, .55);
}

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.mso-toast {
  position: fixed;
  bottom: 92px;
  right: 22px;
  background: #1e293b;
  color: #fff;
  border-left: 4px solid var(--primary);
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  transition: .3s;
  max-width: 300px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
}

.mso-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.mso-toast-success {
  border-color: var(--success);
}

.mso-toast-danger {
  border-color: var(--danger);
}

/* ══════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════ */
.pagination {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: .18s;
  font-weight: 700;
}

.page-link:hover,
.page-link.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 3px 10px rgba(10, 132, 255, .3);
}

/* ══════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb-item {
  font-size: .85rem;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  margin-right: 6px;
  color: var(--text-light);
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   DASHBOARD
══════════════════════════════════════════ */
.dash-sidebar {
  width: 250px;
  background: #fff;
  border-right: 1px solid var(--border);
  height: 100vh;
  position: sticky;
  top: 0;
  overflow-y: auto;
  flex-shrink: 0;
}

.dash-main {
  flex: 1;
  min-width: 0;
  background: var(--bg);
}

.dash-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: var(--shadow-xs);
}

.dash-content {
  padding: 24px;
}

.dash-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  transition: .18s;
  text-decoration: none;
}

.dash-sidebar-link:hover,
.dash-sidebar-link.active {
  background: var(--primary-light);
  color: var(--primary);
}

.dash-stat {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: .25s;
}

.dash-stat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dash-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.dash-stat-icon.blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.dash-stat-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

.dash-stat-icon.orange {
  background: #fef3c7;
  color: #d97706;
}

.dash-stat-icon.purple {
  background: #f3e8ff;
  color: #9333ea;
}

.dash-stat-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.03em;
}

.dash-stat-lbl {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
}

.dash-table th {
  background: var(--bg-alt);
  padding: 11px 15px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  font-weight: 800;
}

.dash-table td {
  padding: 11px 15px;
  border-bottom: 1px solid var(--border-light);
  font-size: .88rem;
  color: var(--text);
  vertical-align: middle;
}

.dash-table tr:last-child td {
  border: none;
}

.dash-table tr:hover td {
  background: var(--bg-alt);
}

/* ══════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════ */
.empty-state h4 {
  color: var(--text);
  margin: .6rem 0;
  letter-spacing: -.02em;
}

.empty-state p {
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.text-primary {
  color: var(--primary) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

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

.text-end {
  text-align: right;
}

.fw-bold,
.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.small {
  font-size: .85rem;
}

.ms-1 {
  margin-left: .25rem
}

.ms-2 {
  margin-left: .5rem
}

.ms-3 {
  margin-left: .75rem
}

.me-1 {
  margin-right: .25rem
}

.me-2 {
  margin-right: .5rem
}

.me-3 {
  margin-right: .75rem
}

.mb-0 {
  margin-bottom: 0
}

.mb-1 {
  margin-bottom: .25rem
}

.mb-2 {
  margin-bottom: .5rem
}

.mb-3 {
  margin-bottom: .75rem
}

.mb-4 {
  margin-bottom: 1.25rem
}

.mb-5 {
  margin-bottom: 2.5rem
}

.mt-1 {
  margin-top: .25rem
}

.mt-2 {
  margin-top: .5rem
}

.mt-3 {
  margin-top: .75rem
}

.mt-4 {
  margin-top: 1.25rem
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem
}

.py-3 {
  padding-top: .75rem;
  padding-bottom: .75rem
}

.py-4 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem
}

.py-5 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem
}

.px-4 {
  padding-left: 1.25rem;
  padding-right: 1.25rem
}

.px-5 {
  padding-left: 2.5rem;
  padding-right: 2.5rem
}

.pt-5 {
  padding-top: 2.5rem
}

.pb-5 {
  padding-bottom: 2.5rem
}

.gap-2 {
  gap: .5rem
}

.gap-3 {
  gap: .75rem
}

.gap-4 {
  gap: 1.25rem
}

.h-100 {
  height: 100%
}

.flex-fill {
  flex: 1
}

.flex-wrap {
  flex-wrap: wrap
}

.flex-shrink-0 {
  flex-shrink: 0
}

.d-block {
  display: block
}

.d-flex {
  display: flex
}

.d-none {
  display: none
}

.d-grid {
  display: grid
}

.position-relative {
  position: relative
}

.position-sticky {
  position: sticky
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 100
}

.overflow-hidden {
  overflow: hidden
}

.rounded {
  border-radius: var(--radius-sm)
}

.img-fluid {
  max-width: 100%;
  height: auto
}

.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0
}

.text-decoration-none {
  text-decoration: none
}

.text-decoration-line-through {
  text-decoration: line-through
}

.border-bottom {
  border-bottom: 1px solid var(--border)
}

.file-preview {
  max-height: 80px;
  border-radius: var(--radius-sm);
  display: block;
  margin-top: 8px
}

.input-group {
  display: flex
}

.input-group .form-control {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  flex: 1
}

.input-group .btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0
}

.min-vh-75 {
  min-height: 75vh
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:991px) {
  .navbar-collapse {
    display: none !important
  }

  .navbar-collapse.show {
    display: block !important;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 10px 0
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0
  }

  .d-flex.align-items-center.gap-2 {
    flex-wrap: wrap;
    padding: 10px 0
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg-alt);
    padding: 0 0 0 16px
  }
}

@media(max-width:767px) {

  .hero-section,
  .hero-slide {
    min-height: 65vh;
    padding: 65px 0
  }

  .hero-title {
    font-size: 1.85rem
  }

  .stat-item {
    padding: 10px 20px;
    min-width: 120px
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .section-pad {
    padding: 55px 0
  }

  .cta-section {
    padding: 65px 0
  }
}

@media(max-width:575px) {
  .track-form {
    flex-direction: column;
    align-items: stretch
  }

  .stats-grid {
    flex-direction: column;
    align-items: center
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    width: 100%
  }
}

/* ══════════════════════════════════════════
   GRID COLS
══════════════════════════════════════════ */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px
}

.row>[class*="col-"] {
  padding: 10px
}

.col-12 {
  width: 100%
}

.col-6 {
  width: 50%
}

.col-4 {
  width: 33.33%
}

@media(min-width:576px) {
  .col-sm-6 {
    width: 50%
  }

  .col-sm-4 {
    width: 33.33%
  }
}

@media(min-width:768px) {
  .col-md-2 {
    width: 16.66%
  }

  .col-md-3 {
    width: 25%
  }

  .col-md-4 {
    width: 33.33%
  }

  .col-md-5 {
    width: 41.66%
  }

  .col-md-6 {
    width: 50%
  }

  .col-md-7 {
    width: 58.33%
  }

  .col-md-8 {
    width: 66.66%
  }

  .col-md-9 {
    width: 75%
  }

  .col-md-12 {
    width: 100%
  }
}

@media(min-width:992px) {
  .col-lg-2 {
    width: 16.66%
  }

  .col-lg-3 {
    width: 25%
  }

  .col-lg-4 {
    width: 33.33%
  }

  .col-lg-5 {
    width: 41.66%
  }

  .col-lg-6 {
    width: 50%
  }

  .col-lg-7 {
    width: 58.33%
  }

  .col-lg-8 {
    width: 66.66%
  }

  .col-lg-9 {
    width: 75%
  }

  .col-lg-12 {
    width: 100%
  }
}

@media(max-width:767px) {

  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-12 {
    width: 100%
  }
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(32px);
}

[data-aos="fade-down"] {
  transform: translateY(-32px);
}

[data-aos="fade-left"] {
  transform: translateX(32px);
  opacity: 0;
}

[data-aos="fade-right"] {
  transform: translateX(-32px);
  opacity: 0;
}

[data-aos="zoom-in"] {
  transform: scale(.9);
  opacity: 0;
}

[data-aos].aos-animate {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}