/* ============================================
   CLEAN TREND - Main Stylesheet
   Navy Blue & Silver Theme
   ============================================ */

:root {
  --navy: #1a2456;
  --navy-dark: #0f1638;
  --navy-mid: #243070;
  --silver: #c8d0e0;
  --silver-light: #eef0f6;
  --silver-mid: #a8b4cc;
  --accent: #3a6fd8;
  --accent-light: #5588e8;
  --white: #ffffff;
  --text: #1a2030;
  --text-muted: #5a6070;
  --bg-light: #f4f6fb;
  --border: #dde2ef;
  --gold: #c8a84b;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(26,36,86,0.12);
  --shadow-lg: 0 12px 48px rgba(26,36,86,0.18);
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--navy-dark);
  color: var(--silver);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-right { display: flex; gap: 8px; }
.social-icon {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--silver);
  text-transform: uppercase;
  transition: var(--transition);
}
.social-icon:hover { background: var(--accent); color: #fff; }

/* ---- HEADER ---- */
.header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.25); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #fff; letter-spacing: 1px; line-height: 1;
}
.logo-sub {
  font-size: 10px; color: var(--silver);
  letter-spacing: 0.5px; text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  border-top: 3px solid var(--accent);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--navy);
  border-left-color: var(--accent);
  padding-left: 24px;
}
.header-cta { margin-left: 8px; flex-shrink: 0; }

.hamburger {
  display: none;
  background: none; border: none;
  color: #fff; font-size: 22px;
  cursor: pointer; margin-left: auto;
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  font-family: 'Barlow', sans-serif;
  display: inline-block;
  transition: var(--transition);
  border: 2px solid var(--accent);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,111,216,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  display: inline-block;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: var(--navy);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  display: inline-block;
  transition: var(--transition);
  border: 2px solid var(--navy);
}
.btn-outline-light:hover { background: var(--navy); color: #fff; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f1638 0%, #1a2456 40%, #243070 70%, #1a3070 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 40%, rgba(58,111,216,0.25) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(200,168,75,0.1) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 100px;
  max-width: 760px;
}
.hero-badge {
  display: inline-block;
  background: rgba(58,111,216,0.2);
  border: 1px solid rgba(58,111,216,0.5);
  color: var(--silver-light);
  font-size: 12px; font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-accent { color: var(--silver); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--silver);
  line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.5px; }

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- SERVICES STRIP ---- */
.services-strip {
  background: var(--navy-mid);
  padding: 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(255,255,255,0.07); }
.strip-icon { font-size: 24px; flex-shrink: 0; }
.strip-item h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.strip-item p { color: var(--silver); font-size: 12px; }

/* ---- SECTIONS ---- */
.section { padding: 90px 0; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}
.section-tag.light { color: var(--silver-light); }
.section-tag.light::before { background: var(--silver-light); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-title.light { color: #fff; }
.section-desc { color: var(--text-muted); font-size: 16px; max-width: 600px; }
.section-desc.light { color: rgba(255,255,255,0.7); }
.section-header.center .section-desc { margin: 0 auto; }

/* ---- ABOUT ---- */
.about-section { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.about-img-main::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(58,111,216,0.4) 0%, transparent 50%),
    linear-gradient(to bottom right, transparent 40%, rgba(200,168,75,0.15) 100%);
}
.about-img-main::after {
  content: 'Clean Trend';
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px; font-weight: 800;
  color: rgba(255,255,255,0.06);
  position: absolute;
  bottom: 20px; right: 20px;
  letter-spacing: 2px;
}
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 20px 24px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-num { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; line-height: 1; }
.badge-txt { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.about-text { padding-left: 8px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.about-features { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.feat-check { color: var(--accent); font-weight: 700; font-size: 16px; }

/* ---- BRANDS ---- */
.brands-section { background: var(--bg-light); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  display: block;
}
.brand-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.brand-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.brand-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.brand-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.brand-link { font-size: 13px; font-weight: 600; color: var(--accent); }

/* ---- SERVICES ---- */
.services-section { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.service-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.service-img-1 { background: linear-gradient(135deg, #1a2456 0%, #3a6fd8 100%); }
.service-img-2 { background: linear-gradient(135deg, #243070 0%, #1a5060 100%); }
.service-img-3 { background: linear-gradient(135deg, #0f1638 0%, #243070 100%); }
.service-card.featured .service-img { height: 240px; }
.service-body { padding: 24px; }
.service-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; line-height: 1.6; }
.service-link { color: var(--accent); font-size: 14px; font-weight: 600; }

/* ---- WHY US ---- */
.why-section { background: var(--bg-light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-points { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 24px; }
.why-point { display: flex; gap: 20px; }
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800;
  color: rgba(26,36,86,0.1);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.why-point h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-point p { font-size: 14px; color: var(--text-muted); }
.why-img-wrap {
  height: 500px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.why-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(58,111,216,0.4) 0%, transparent 60%);
}

/* ---- RENTAL TEASER ---- */
.rental-teaser {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.rental-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f1638 0%, #1a2456 60%, #243070 100%);
}
.rental-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(58,111,216,0.3) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(200,168,75,0.1) 0%, transparent 40%);
}
.rental-content {
  position: relative; z-index: 2;
  text-align: center;
}
.rental-content .section-title { margin-bottom: 12px; }
.rental-content .section-desc { margin: 0 auto 40px; }
.rental-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rental-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 28px 24px;
  min-width: 200px;
  transition: var(--transition);
}
.rental-item:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.rental-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.rental-item h4 { color: #fff; font-size: 14px; font-weight: 600; }

/* ---- BLOG ---- */
.blog-section { background: #fff; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-img { height: 180px; }
.blog-img-1 { background: linear-gradient(135deg, #1a3070 0%, #3a6fd8 100%); }
.blog-img-2 { background: linear-gradient(135deg, #1a5060 0%, #3a9070 100%); }
.blog-img-3 { background: linear-gradient(135deg, #301a50 0%, #6040a0 100%); }
.blog-body { padding: 20px; }
.blog-cat {
  display: inline-block;
  background: var(--silver-light);
  color: var(--navy);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 12px;
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-body h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.blog-link { font-size: 13px; font-weight: 600; color: var(--accent); }

/* ---- CTA ---- */
.cta-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cta-inner p { color: var(--text-muted); }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo .logo-main { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: #fff; }
.footer-logo .logo-sub { font-size: 11px; color: var(--silver); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-about p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--silver);
  text-transform: uppercase; transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--silver); padding-left: 4px; }
.footer-contact p { font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.footer-contact a { color: var(--silver); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(58,111,216,0.25) 0%, transparent 60%);
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; color: #fff;
  margin-bottom: 10px;
}
.breadcrumb { display: flex; gap: 8px; font-size: 14px; color: var(--silver); }
.breadcrumb a { color: var(--silver-mid); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #fff; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--accent); }
.value-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.value-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.team-info { padding: 18px; }
.team-info h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-info p { font-size: 13px; color: var(--text-muted); }

/* ============================================
   TRADING PAGE
   ============================================ */
.trading-nav {
  background: var(--bg-light);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 69px;
  z-index: 100;
}
.trading-nav-inner {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trading-nav a {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.trading-nav a:hover, .trading-nav a.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.brand-section { padding: 80px 0; }
.brand-section:nth-child(even) { background: var(--bg-light); }
.brand-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.brand-detail-grid.reverse { direction: rtl; }
.brand-detail-grid.reverse > * { direction: ltr; }
.brand-img-block {
  height: 380px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
}
.brand-name-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px; font-weight: 800;
  color: rgba(255,255,255,0.1);
  text-align: center;
}
.brand-detail h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.brand-detail .brand-type { color: var(--accent); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: block; }
.brand-detail p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.brand-products { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.brand-products span {
  background: var(--silver-light);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 14px;
  font-size: 13px; font-weight: 500;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.service-detail-grid:nth-child(even) { direction: rtl; }
.service-detail-grid:nth-child(even) > * { direction: ltr; }
.service-img-block {
  height: 420px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.service-img-block.blue { background: linear-gradient(135deg, #1a2456 0%, #3a6fd8 100%); }
.service-img-block.teal { background: linear-gradient(135deg, #0f3030 0%, #1a6060 100%); }
.service-steps { display: flex; flex-direction: column; gap: 16px; margin: 20px 0 28px; }
.service-step { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  width: 32px; height: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.step-text h5 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.step-text p { font-size: 13px; color: var(--text-muted); }

/* ============================================
   RENTAL PAGE
   ============================================ */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rental-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.rental-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.rental-card-img {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.rental-card-img.navy { background: linear-gradient(135deg, #0f1638 0%, #1a2456 100%); }
.rental-card-img.blue { background: linear-gradient(135deg, #1a2456 0%, #3a6fd8 100%); }
.rental-card-img.teal { background: linear-gradient(135deg, #0f2838 0%, #1a4868 100%); }
.rental-card-body { padding: 24px; }
.rental-card-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.rental-card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.rental-features { list-style: none; margin-bottom: 20px; }
.rental-features li { font-size: 14px; color: var(--text); padding: 4px 0; }
.rental-features li::before { content: '✓ '; color: var(--accent); font-weight: 700; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.blog-featured {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.blog-featured-img {
  height: 320px;
  background: linear-gradient(135deg, #1a2456 0%, #3a6fd8 100%);
}
.blog-featured-body { padding: 28px; }
.blog-featured-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.blog-list { display: flex; flex-direction: column; gap: 20px; }
.blog-list-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.blog-list-img { width: 80px; height: 80px; border-radius: 8px; flex-shrink: 0; }
.blog-list-img.c1 { background: linear-gradient(135deg, #1a3070, #3a6fd8); }
.blog-list-img.c2 { background: linear-gradient(135deg, #1a5060, #3a9070); }
.blog-list-img.c3 { background: linear-gradient(135deg, #301a50, #6040a0); }
.blog-list-img.c4 { background: linear-gradient(135deg, #502030, #a06040); }
.blog-list-text h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; line-height: 1.4; }
.blog-list-text p { font-size: 12px; color: var(--text-muted); }
.sidebar h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); }
.sidebar-cats { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sidebar-cats li a {
  display: flex; justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: 14px; color: var(--text);
  transition: var(--transition);
}
.sidebar-cats li a:hover { background: var(--navy); color: #fff; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 32px;
  color: #fff;
}
.contact-info-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.contact-info-card > p { color: var(--silver); font-size: 15px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item-text h5 { font-size: 12px; font-weight: 600; color: var(--silver); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 15px; color: #fff; }
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
}
.contact-form-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 14px; color: var(--text);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-section { margin-top: 56px; }
.map-embed {
  width: 100%; height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .why-grid { gap: 40px; }
  .brand-detail-grid { gap: 40px; }
  .service-detail-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dark); flex-direction: column; padding: 16px; gap: 0; }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(0,0,0,0.2); }
  .hamburger { display: block; }
  .header-cta { display: none; }
  .hero-content { padding: 80px 24px 60px; }
  .hero-stats { gap: 24px; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .why-grid, .brand-detail-grid, .service-detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .brand-detail-grid.reverse, .service-detail-grid:nth-child(even) { direction: ltr; }
  .about-badge-float { right: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .rental-grid { grid-template-columns: 1fr; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; }
  .strip-item { padding: 16px 14px; }
}

.topbar{background:#f0f2f8;border-bottom:1px solid #dde2ef;}
.topbar-left span{color:#3a4468;font-size:13px;}
.topbar-right .social-icon{background:rgba(26,36,86,0.08);color:#1a2456;border:1px solid rgba(26,36,86,0.12);}
.topbar-right .social-icon:hover{background:var(--accent);color:#fff;border-color:var(--accent);}
.header{background:#ffffff;box-shadow:0 2px 20px rgba(0,0,0,0.10);border-bottom:2px solid var(--accent);}
.header.scrolled{box-shadow:0 4px 30px rgba(0,0,0,0.15);}
.nav-link{color:#1a2456;font-weight:600;}
.nav-link:hover,.nav-link.active{background:rgba(26,36,86,0.07);color:var(--accent);}
.hamburger{color:var(--navy);}
.social-icon{width:32px;height:32px;border-radius:7px;display:flex;align-items:center;justify-content:center;transition:all 0.25s;}
.footer-social{display:flex;gap:10px;margin-top:20px;}
.footer-social .social-icon{width:38px;height:38px;border-radius:8px;background:rgba(255,255,255,0.1);color:var(--silver);border:1px solid rgba(255,255,255,0.08);}
.footer-social .social-icon:hover{background:var(--accent);color:#fff;transform:translateY(-2px);}
.whatsapp-float{position:fixed;bottom:28px;right:28px;width:56px;height:56px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 4px 20px rgba(37,211,102,0.5);z-index:999;transition:all 0.3s;animation:pulse-wa 3s infinite;}
.whatsapp-float:hover{transform:scale(1.12);}
@keyframes pulse-wa{0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4);}50%{box-shadow:0 4px 32px rgba(37,211,102,0.75);}}
@media(max-width:768px){.nav{background:#fff;border-top:2px solid var(--accent);}.nav-link{color:#1a2456;border-bottom:1px solid #eef0f6;}.dropdown-menu{background:#f4f6fb;}}

/* Service cards uniform fix */
.services-grid { align-items: stretch; }
.service-card { display: flex; flex-direction: column; }
.service-card .service-body { flex: 1; }
.service-card > div:first-child {
  height: 220px !important;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card > div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}


/* ── TOPBAR HIGHLIGHTED ── */
.topbar {
  background: linear-gradient(90deg, #0f1638 0%, #1a2456 50%, #0f1638 100%) !important;
  border-bottom: 2px solid var(--accent) !important;
  padding: 10px 0 !important;
}
.topbar-left a, .topbar-left span {
  color: #e8ecf8 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: color 0.2s;
}
.topbar-left a:hover { color: #fff !important; }
.topbar-left {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar-left a::before { opacity: 1 !important; }


/* ── NESTED SUBMENU ── */
.dropdown-menu .has-submenu { position: relative; }
.dropdown-menu .has-submenu > a {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.dropdown-menu .has-submenu > a::after {
  content: '›';
  font-size: 16px;
  margin-left: 8px;
  color: var(--accent);
}
.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: all 0.2s ease;
  z-index: 200;
  border-top: 3px solid var(--accent);
}
.dropdown-menu .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.submenu a {
  display: block !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  color: var(--text) !important;
  transition: var(--transition) !important;
  border-left: 3px solid transparent !important;
  white-space: nowrap !important;
}
.submenu a:hover {
  background: var(--bg-light) !important;
  color: var(--navy) !important;
  border-left-color: var(--accent) !important;
  padding-left: 24px !important;
}


/* ── OUR CLIENTS CAROUSEL ── */
.clients-section { background: var(--bg-light); padding-bottom: 60px; }
.clients-carousel-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 24px 0;
}
.clients-carousel-wrap::before,
.clients-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}
.clients-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scroll-clients 45s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes scroll-clients {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  min-width: 160px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin: 0 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.client-logo-item:hover {
  box-shadow: 0 6px 24px rgba(26,36,86,0.12);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.client-logo-item img {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.client-logo-item:hover img { filter: grayscale(0%); }
.client-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .clients-track { animation-duration: 30s; }
  .client-logo-item { padding: 12px 20px; min-width: 130px; }
}


/* ── HERO FONT & HEIGHT FIX ── */
.hero-title {
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 1.15 !important;
  margin-bottom: 14px !important;
}
section[style*="min-height:90vh"] {
  min-height: 65vh !important;
}
.hero-content {
  padding: 80px 24px 70px !important;
}
.hero-badge { margin-bottom: 12px !important; }
.hero-desc { font-size: 15px !important; margin-bottom: 24px !important; }
.hero-stats { padding-top: 20px !important; margin-bottom: 0 !important; }
.hero-btns { margin-bottom: 28px !important; }
.stat-num { font-size: 28px !important; }


/* ── INDUSTRIES WE SERVE ── */
.industries-section { background: #fff; padding: 90px 0; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.industry-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.industry-card:hover {
  border-left-color: var(--accent);
  box-shadow: 0 6px 24px rgba(26,36,86,0.1);
  transform: translateY(-3px);
  background: var(--bg-light);
}
.industry-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.industry-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.industry-text p {
  font-size: 12px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .industries-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
}


/* ══ HERO SLIDER ══════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 82vh;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 0;
  min-height: 82vh;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,15,45,0.48) 0%, rgba(20,35,90,0.32) 60%, rgba(26,36,86,0.20) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  padding: 110px 24px;
  max-width: 780px;
}
.slide-badge {
  display: inline-block;
  background: rgba(58,111,216,0.25);
  border: 1px solid rgba(58,111,216,0.5);
  color: #e8f0ff;
  font-size: 12px; font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.slide-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.slide-title span { color: var(--silver); }
.slide-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.slide-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--accent);
}
.slide-btn:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,111,216,0.4);
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #fff;
  font-size: 18px;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 10;
  animation: progress-bar 5s linear infinite;
  transform-origin: left;
}
@keyframes progress-bar {
  0%   { width: 0%; }
  100% { width: 100%; }
}

@media(max-width:768px){
  .slide-title { font-size: clamp(22px,6vw,36px); }
  .slide-content { padding: 60px 20px; }
  .slider-arrow { display: none; }
}


/* ── RENTAL SECTION FIX ── */
.rental-item div[style*="height:130px"] img,
.rental-item div[style*="height:140px"] img {
  object-fit: contain !important;
  background: #fff;
  padding: 8px;
}
.rental-item {
  background: rgba(255,255,255,0.92) !important;
  border-radius: 12px !important;
  padding: 12px !important;
}
.rental-item h4 { color: var(--navy) !important; }


/* ══ BEFORE & AFTER SECTION ══════════════════════════════════════════════ */
.ba-section { background: linear-gradient(135deg, #0f1638 0%, #1a2456 50%, #0f1638 100%); padding: 90px 0; }
.ba-section .section-tag { color: #c8d0e0; }
.ba-section .section-tag::before { background: #c8d0e0; }
.ba-section .section-title { color: #fff; }
.ba-section .section-desc { color: rgba(255,255,255,0.65); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ba-card {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(58,111,216,0.5);
}

/* Slider container */
.ba-slider {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-before img, .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
/* Labels */
.ba-label {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
}
.ba-label-before {
  left: 12px;
  background: rgba(0,0,0,0.6);
  color: #ffcccc;
  border: 1px solid rgba(255,100,100,0.4);
}
.ba-label-after {
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #ccffcc;
  border: 1px solid rgba(100,255,100,0.4);
}
/* Divider line */
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 6;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  z-index: 7;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}

/* Card info */
.ba-info {
  padding: 18px 20px;
}
.ba-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.ba-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}
.ba-tag {
  display: inline-block;
  background: rgba(58,111,216,0.25);
  color: #a0b8e8;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA strip */
.ba-cta {
  text-align: center;
  margin-top: 52px;
}
.ba-cta p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  font-size: 16px;
}

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


/* Social icon hover border for inner pages */
.inner-page .social-icon{border:1px solid transparent;}
