/* =============================================
   KARTIKA ACCESSORIES - MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables (Design Tokens) ---- */
:root {
  --red-primary: #E31E24;
  --red-dark: #C1191F;
  --red-light: #FF4D52;
  --red-soft: #FDECEC;
  --dark: #111111;
  --dark-2: #222222;
  --grey-dark: #333333;
  --grey-mid: #666666;
  --grey-light: #999999;
  --grey-border: #EEEEEE;
  --white: #FFFFFF;
  --bg-primary: #FFFFFF;
  --bg-section: #F8F9FA;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-red: 0 8px 30px rgba(227,30,36,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.35; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--grey-mid); line-height: 1.75; }

/* ---- Layout Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--dark); margin-bottom: 14px; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-primary);
  background: var(--red-soft);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red-primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(227,30,36,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--grey-border);
}
.btn-outline:hover {
  border-color: var(--red-primary);
  color: var(--red-primary);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}
.btn-white {
  background: var(--white);
  color: var(--red-primary);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---- Card ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo .logo-main {
  height: 48px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-dark);
  transition: var(--transition-fast);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--red-primary);
  background: var(--red-soft);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 88px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--grey-border);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--grey-border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--red-primary); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F5 60%, #FEF0EE 100%);
  position: relative;
  overflow: hidden;
  padding-top: 88px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(227,30,36,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(227,30,36,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-soft);
  border: 1px solid rgba(227,30,36,0.2);
  color: var(--red-primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--red-primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 { color: var(--dark); margin-bottom: 22px; }
.hero h1 .highlight {
  color: var(--red-primary);
  position: relative;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--grey-mid);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 36px;
}
.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.hero-stat .number span { color: var(--red-primary); }
.hero-stat .label {
  font-size: 0.78rem;
  color: var(--grey-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-image-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-image-badge .icon {
  width: 44px; height: 44px;
  background: var(--red-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.hero-image-badge .text .val { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.hero-image-badge .text .lbl { font-size: 0.72rem; color: var(--grey-light); font-weight: 500; }

/* ============================================
   HIGHLIGHTS / FITUR UNGGULAN
   ============================================ */
.highlights { background: var(--dark); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.highlight-item {
  padding: 48px 32px;
  background: var(--dark);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.highlight-item:hover { background: var(--dark-2); }
.highlight-item .hi-icon {
  width: 64px; height: 64px;
  background: rgba(227,30,36,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  transition: var(--transition);
  color: var(--red-primary);
}
.highlight-item .hi-icon i {
  display: block;
}
.highlight-item:hover .hi-icon {
  background: var(--red-primary);
  transform: scale(1.08);
}
.highlight-item h3 { color: white; margin-bottom: 8px; font-size: 1.1rem; }
.highlight-item p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products { background: var(--bg-section); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.product-card-img {
  aspect-ratio: 1;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover .product-card-img { background: var(--red-soft); }
.product-card-body { padding: 16px 20px 20px; }
.product-card-body h4 { color: var(--dark); font-size: 0.95rem; margin-bottom: 6px; }
.product-card-body p { font-size: 0.8rem; color: var(--grey-light); line-height: 1.5; }

/* ============================================
   SERVICE SECTION
   ============================================ */
.service-preview {
  background: white;
}
.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-img-wrap {
  position: relative;
}
.service-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.service-badge-float {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--red-primary);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  text-align: center;
}
.service-badge-float .num { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.service-badge-float .lbl { font-size: 0.7rem; font-weight: 500; opacity: 0.85; }
.service-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.service-item:hover {
  background: var(--red-soft);
  transform: translateX(4px);
}
.service-item .si-icon {
  width: 44px; height: 44px;
  background: var(--red-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--red-primary);
}
.service-item .si-icon i {
  display: block;
}
.service-item:hover .si-icon { background: var(--red-primary); }
.service-item h4 { color: var(--dark); font-size: 0.95rem; margin-bottom: 3px; }
.service-item p { font-size: 0.82rem; color: var(--grey-light); line-height: 1.5; }

/* ============================================
   OUTLETS SECTION
   ============================================ */
.outlets { background: var(--bg-section); }
.outlets-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
}
.outlet-stat-item { text-align: center; }
.outlet-stat-item .num { font-size: 3rem; font-weight: 800; color: var(--red-primary); line-height: 1; }
.outlet-stat-item .lbl { font-size: 0.85rem; font-weight: 500; color: var(--grey-mid); margin-top: 6px; }
.outlet-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.city-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--grey-border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-dark);
  transition: var(--transition);
}
.city-chip:hover {
  border-color: var(--red-primary);
  color: var(--red-primary);
  background: var(--red-soft);
  transform: translateY(-2px);
}
.city-chip .dot {
  width: 8px; height: 8px;
  background: var(--red-primary);
  border-radius: 50%;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--red-primary) 0%, #8B1A0F 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -50px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { color: white; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: white;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-about .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-about .logo-footer {
  height: 44px;
  width: auto;
  display: block;
}
.footer-about p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--red-primary); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; color: white; margin-bottom: 18px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: var(--transition-fast); }
.footer-col ul li a:hover { color: var(--red-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item .icon { font-size: 1rem; color: var(--red-light); margin-top: 4px; flex-shrink: 0; width: 20px; text-align: center; }
.footer-contact-item .icon i { display: block; }
.footer-contact-item p { color: rgba(255,255,255,0.5); font-size: 0.84rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}
.wa-tooltip {
  background: var(--dark);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 148px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(227,30,36,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { color: white; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 550px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--transition-fast); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--red-light); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { background: white; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.since-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--red-primary);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  text-align: center;
}
.since-badge .year { font-size: 2rem; font-weight: 800; line-height: 1; }
.since-badge .lbl { font-size: 0.72rem; font-weight: 500; opacity: 0.85; letter-spacing: 0.5px; }
.about-content { padding-left: 20px; }
.about-content h2 { margin-bottom: 20px; }
.about-content > p { margin-bottom: 28px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.tag {
  padding: 8px 18px;
  background: var(--bg-section);
  border: 1px solid var(--grey-border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey-dark);
  transition: var(--transition);
}
.tag:hover { background: var(--red-soft); border-color: var(--red-primary); color: var(--red-primary); }
.about-vision { background: var(--bg-section); }
.vision-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.vision-card .icon { font-size: 3rem; margin-bottom: 20px; }
.vision-card h2 { margin-bottom: 16px; color: var(--dark); }
.vision-card p { font-size: 1.1rem; max-width: 500px; margin: 0 auto; }
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.commitment-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  transition: var(--transition);
}
.commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-primary);
}
.commitment-card .icon { font-size: 2.2rem; margin-bottom: 16px; }
.commitment-card h4 { color: var(--dark); font-size: 1rem; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.product-categories { background: white; }
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.cat-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-dark);
  background: var(--bg-section);
  border: 1px solid var(--grey-border);
  transition: var(--transition);
  cursor: pointer;
}
.cat-tab:hover, .cat-tab.active {
  background: var(--red-primary);
  color: white;
  border-color: var(--red-primary);
}
.category-section { margin-bottom: 60px; }
.category-section h3 { margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--grey-border); color: var(--dark); }
.category-section h3 span { color: var(--red-primary); }
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============================================
   BRANDS PAGE
   ============================================ */
.brands-section { background: white; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.brand-card {
  background: var(--bg-section);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
  padding: 24px;
}
.brand-card:hover {
  background: white;
  border-color: var(--red-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.brand-card .brand-icon { font-size: 2.5rem; }
.brand-card .brand-name { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.brand-card .brand-sub { font-size: 0.72rem; color: var(--grey-light); text-align: center; }

/* ============================================
   SERVICE PAGE
   ============================================ */
.service-page { background: white; }
.service-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-highlights-list { display: flex; flex-direction: column; gap: 16px; }
.service-hl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--red-primary);
  transition: var(--transition);
}
.service-hl-item:hover {
  background: var(--red-soft);
  transform: translateX(4px);
}
.service-hl-item .icon { font-size: 1.6rem; flex-shrink: 0; }
.service-hl-item h4 { color: var(--dark); margin-bottom: 4px; }
.service-hl-item p { font-size: 0.82rem; color: var(--grey-light); }
.sparepart-section { background: var(--bg-section); }
.sparepart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sparepart-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  transition: var(--transition);
}
.sparepart-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sparepart-card .icon { font-size: 2.4rem; margin-bottom: 14px; }
.sparepart-card h4 { color: var(--dark); margin-bottom: 8px; }
.sparepart-card p { font-size: 0.82rem; color: var(--grey-light); }
.brands-support { background: white; }
.brand-support-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.brand-support-item {
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-dark);
  border: 1px solid var(--grey-border);
  transition: var(--transition);
}
.brand-support-item:hover { background: var(--red-soft); border-color: var(--red-primary); color: var(--red-primary); }

/* ============================================
   OUTLET PAGE
   ============================================ */
.outlet-page { background: white; }
.outlet-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.outlet-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(227,30,36,0.2); }
.outlet-card .oc-icon {
  width: 52px; height: 52px;
  background: var(--red-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.outlet-card:hover .oc-icon { background: var(--red-primary); }
.outlet-card .oc-info { flex: 1; }
.outlet-card .oc-name { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.outlet-card .oc-city { font-size: 0.8rem; font-weight: 600; color: var(--red-primary); margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.outlet-card .oc-address { font-size: 0.875rem; color: var(--grey-mid); line-height: 1.6; margin-bottom: 10px; }
.outlet-card .oc-since { font-size: 0.75rem; color: var(--grey-light); font-weight: 500; }
.outlets-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.map-section { background: var(--bg-section); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { background: white; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-border);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ci-icon {
  width: 46px; height: 46px;
  background: var(--red-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-item h4 { color: var(--dark); font-size: 0.9rem; margin-bottom: 5px; font-weight: 600; }
.contact-info-item p { font-size: 0.875rem; color: var(--grey-mid); line-height: 1.7; }
.contact-info-item a:hover p { color: var(--red-primary); }
.contact-form-box {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-form-box h3 { color: var(--dark); margin-bottom: 8px; }
.contact-form-box > p { color: var(--grey-mid); font-size: 0.9rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(227,30,36,0.08);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .highlights-grid, .grid-4, .products-grid, .commitments-grid, .products-page-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .brand-support-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 60px 0; }
  .hero-inner, .service-inner, .about-inner, .service-page-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { display: none; }
  .hero-stats { gap: 22px; }
  .grid-2, .grid-3, .outlets-list-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid, .products-page-grid, .sparepart-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-support-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .outlets-stats { gap: 32px; flex-wrap: wrap; }
  .commitments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-badge { font-size: 0.72rem; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .highlights-grid { grid-template-columns: 1fr; }
  .products-grid, .products-page-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-support-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .sparepart-grid { grid-template-columns: 1fr; }
}
