/*
Theme Name: Hasby Garment Theme
Theme URI: https://hasbygarment.com/
Author: Antigravity Assistant
Author URI: https://hasbygarment.com/
Description: Custom WordPress theme untuk hasbygarment.com, dibangun dengan clean vanilla CSS/JS (tanpa Elementor) berbasis desain kaoshasby.com.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hasbygarment
*/

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 15px; color: #222; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   CSS VARIABLES (Brand Identity)
============================================= */
:root {
  --primary:    #c8102e;   /* Merah utama brand */
  --primary-dk: #9e0b23;
  --dark:       #1a1a1a;
  --dark2:      #2c2c2c;
  --gray:       #f5f5f5;
  --gray2:      #ebebeb;
  --text:       #444;
  --white:      #ffffff;
  --wa-green:   #25d366;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;
  --transition: 0.28s ease;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --radius:     8px;
}

/* =============================================
   TOP BAR (Promo / Announcement)
============================================= */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 12px;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: 0.3px;
}
.top-bar strong { color: var(--white); }
.top-bar a { color: var(--primary); font-weight: 600; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 99999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo img { height: 48px; width: auto; object-fit: contain; }
.navbar-logo .logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.navbar-logo .logo-text span { color: var(--dark); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li { position: relative; }
.nav-menu a {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark2);
  padding: 8px 14px;
  border-radius: 6px;
  position: relative;
  transition: var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-menu a:hover { color: var(--primary); background: rgba(200,16,46,0.05); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--primary); }

/* Navigation Sub-menu */
.nav-menu ul.sub-menu {
  display: none;
  background: white;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  z-index: 100;
  border: 1px solid rgba(0,0,0,0.05);
}
.nav-menu ul.sub-menu a {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 0;
}
.nav-menu ul.sub-menu a::after { display: none; }
.nav-menu ul.sub-menu a:hover { background: rgba(0,0,0,0.03); color: var(--primary); }
.nav-menu li:hover > ul.sub-menu { display: block; }

.btn-cs {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-cs:hover { background: var(--primary-dk) !important; transform: translateY(-1px); }
.btn-cs::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* =============================================
   HERO SLIDER
============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  max-height: 860px;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1.0); }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-content p {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 7px; font-family: var(--font-head); font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.hero-arrows { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; }
.hero-dot.active { background: var(--white); transform: scale(1.3); }
.hero-prev, .hero-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: var(--transition);
  font-size: 15px;
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: var(--primary); border-color: var(--primary); }

/* =============================================
   SECTION COMMONS
============================================= */
section { padding: 80px 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.section-sub {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.6;
}
.text-center { text-align: center; }
.divider { width: 52px; height: 4px; background: var(--primary); border-radius: 4px; margin: 12px auto 36px; }
.divider.left { margin-left: 0; }

/* =============================================
   HASBY GARMENT GROUP
============================================= */
.group-section { background: white; }
.group-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 10px; }
.group-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.group-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.group-card-header {
  padding: 30px;
  text-align: center;
  color: white;
}
.group-card.parent .group-card-header { background: linear-gradient(135deg, #c8102e, #9e0b23); }
.group-card.child-kaos .group-card-header { background: linear-gradient(135deg, #ff6900, #e05c00); }
.group-card.child-global .group-card-header { background: linear-gradient(135deg, #0f2c59, #1c4b82); }

.group-card-header h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.group-card-header p { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.85; font-weight: 600; }
.group-card-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.group-card-features { margin-bottom: 24px; text-align: left; }
.group-card-features li { font-size: 14.5px; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.group-card-features li i { font-size: 16px; }
.group-card.parent .group-card-features li i { color: var(--primary); }
.group-card.child-kaos .group-card-features li i { color: #ff6900; }
.group-card.child-global .group-card-features li i { color: #0f2c59; }

.group-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  transition: var(--transition);
}
.group-card.parent .group-btn { background: var(--primary); color: white; }
.group-card.parent .group-btn:hover { background: var(--primary-dk); }
.group-card.child-kaos .group-btn { background: #ff6900; color: white; }
.group-card.child-kaos .group-btn:hover { background: #e05c00; }
.group-card.child-global .group-btn { background: #0f2c59; color: white; }
.group-card.child-global .group-btn:hover { background: #081a36; }

/* =============================================
   PRODUCTS & LAYANAN
============================================= */
.products-section { background: #fafafa; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-tab {
  padding: 8px 22px;
  border: 1.5px solid #ddd;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  font-family: var(--font-head);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card-img {
  aspect-ratio: 3/4;
  background: var(--gray2);
  overflow: hidden;
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: rgba(200,16,46,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay span { color: white; font-weight: 700; font-family: var(--font-head); font-size: 14px; }
.product-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #999;
  text-transform: uppercase;
  padding: 10px 14px 6px;
}
.product-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 0 14px 14px;
  font-family: var(--font-head);
}
.btn-katalog {
  display: block;
  text-align: center;
  margin: 36px auto 0;
  max-width: 200px;
  background: var(--primary);
  color: white;
  padding: 12px 32px;
  border-radius: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.btn-katalog:hover { background: var(--primary-dk); transform: translateY(-2px); }

/* =============================================
   KPP BANNER (Passive Income)
============================================= */
.kpp-banner {
  background: var(--dark);
  color: white;
  padding: 56px 0;
}
.kpp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 32px;
}
.kpp-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}
.kpp-title span { color: var(--primary); }
.kpp-desc { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.btn-join {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 13px 36px;
  border-radius: 7px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  text-align: center;
}
.btn-join:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,0.4); }

/* =============================================
   GALERI
============================================= */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.galeri-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/10;
  background: var(--gray2);
  position: relative;
  cursor: pointer;
}
.galeri-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.galeri-item:hover img { transform: scale(1.08); }
.galeri-item-overlay {
  position: absolute; inset: 0;
  background: rgba(200,16,46,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: 0.3s;
}
.galeri-item:hover .galeri-item-overlay { opacity: 1; }
.galeri-item-overlay i { color: white; font-size: 28px; }

/* =============================================
   MITRA
============================================= */
.mitra-section { background: var(--gray); }
.mitra-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mitra-img-wrap img { width: 100%; object-fit: cover; }

/* =============================================
   TESTIMONI
============================================= */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimoni-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimoni-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimoni-card img { width: 100%; object-fit: cover; }

/* =============================================
   SOSMED
============================================= */
.sosmed-section { background: var(--dark2); color: white; padding: 48px 0; }
.sosmed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sosmed-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.sosmed-card:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.sosmed-card i { font-size: 30px; }
.sosmed-card span { font-size: 13px; font-weight: 600; font-family: var(--font-head); }

/* =============================================
   FAQ
============================================= */
.faq-section { background: var(--gray); }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  gap: 12px;
}
.faq-q i { color: var(--primary); font-size: 14px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* =============================================
   MENGAPA HASBY
============================================= */
.why-section { background: white; }
.why-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.why-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 10px;
  text-align: center;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray2);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--primary); background: rgba(200,16,46,0.04); transform: translateY(-3px); }
.why-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(200,16,46,0.08); display: flex; align-items: center; justify-content: center; }
.why-icon i { font-size: 24px; color: var(--primary); }
.why-label { font-size: 12px; font-weight: 600; font-family: var(--font-head); color: var(--dark2); line-height: 1.4; }

/* =============================================
   ISO / SERTIFIKAT
============================================= */
.iso-section { background: var(--gray); }
.iso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.iso-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.iso-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}
.iso-badge {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  line-height: 1.2;
}
.iso-label { font-size: 12px; font-weight: 600; color: var(--text); font-family: var(--font-head); }
.muri-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
}
.muri-card .muri-icon { font-size: 48px; color: var(--primary); margin-bottom: 12px; }
.muri-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--dark); margin-bottom: 6px; }
.muri-card p { font-size: 13px; color: var(--text); line-height: 1.6; }

/* =============================================
   INQUIRY FORM STYLES
============================================= */
.inquiry-box {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
}
.inquiry-form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.inquiry-form-group label { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--dark); }
.inquiry-form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--gray2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--dark);
  transition: var(--transition);
  background: #fcfcfc;
}
.inquiry-form-control:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(200,16,46,0.1); }
.inquiry-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 576px) { .inquiry-form-row { grid-template-columns: 1fr; } }

/* =============================================
   JOBS / CAREER STYLES
============================================= */
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 30px; }
.job-card {
  background: white;
  border: 1.5px solid var(--gray2);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  text-align: left;
}
.job-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.job-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.job-meta { display: flex; gap: 16px; font-size: 12.5px; color: #888; margin-bottom: 16px; font-family: var(--font-head); }
.job-meta span { display: flex; align-items: center; gap: 6px; }
.job-desc { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 20px; }
.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 9px 20px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}
.job-apply-btn:hover { background: var(--primary-dk); }
@media (max-width: 768px) { .jobs-grid { grid-template-columns: 1fr; } }

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: var(--primary);
  padding: 64px 0;
  text-align: center;
  color: white;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-banner p { font-size: 16px; opacity: 0.88; margin-bottom: 32px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa-green);
  color: white;
  padding: 14px 36px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
}
.btn-wa:hover { background: #1aad53; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* =============================================
   FOOTER
============================================= */
footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 24px; }
.footer-brand .logo-text { font-size: 20px; font-family: var(--font-head); font-weight: 800; color: white; margin-bottom: 10px; }
.footer-brand .logo-text span { color: var(--primary); }
.footer-brand .tagline {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 13px; line-height: 1.75; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--primary); transform: translateY(-2px); }
.footer-col h5 { font-family: var(--font-head); font-weight: 700; color: white; font-size: 14px; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-contact-item i { color: var(--primary); margin-top: 2px; font-size: 14px; flex-shrink: 0; }
.footer-map {
  margin-top: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 130px;
  background: #333;
  display: flex; align-items: center; justify-content: center;
}
.footer-map span { color: rgba(255,255,255,0.4); font-size: 12px; }
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--primary); }

/* =============================================
   WA FLOAT BUTTON
============================================= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa-green);
  color: white;
  padding: 13px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: all 0.3s;
  animation: wa-bounce 2.8s ease-in-out infinite;
  text-decoration: none;
}
.wa-float:hover { background: #1aad53; transform: scale(1.05); box-shadow: 0 8px 32px rgba(37,211,102,0.5); animation: none; }
.wa-float i { font-size: 22px; }
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
}

/* =============================================
   SCROLL ANIMATE
============================================= */
.animate { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.show { opacity: 1; transform: translateY(0); }
.animate-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-left.show { 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; }

/* =============================================
   RESPONSIVE & MOBILE GLASSMORPHISM MENU
============================================= */
@media (max-width: 1024px) {
  .nav-menu { gap: 0; }
  .nav-menu a { padding: 8px 10px; font-size: 13px; }
  .kpp-inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .group-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 99999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    border-top: 1px solid rgba(0,0,0,0.06);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    width: 100%;
    padding: 14px 12px;
    font-size: 15.5px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: all 0.25s ease;
  }
  .nav-menu a::after { display: none; }
  .nav-menu a:hover {
    background: rgba(200,16,46,0.06);
    padding-left: 18px;
    color: var(--primary);
  }
  .nav-menu ul.sub-menu {
    position: static;
    display: none;
    background: rgba(0,0,0,0.02);
    box-shadow: none;
    padding-left: 16px;
    width: 100%;
    border: none;
    border-radius: 0;
  }
  .nav-menu ul.sub-menu a {
    font-size: 14.5px;
  }
  .nav-menu li:hover > ul.sub-menu { display: none; } /* Disable hover on mobile */
  .nav-menu li.open > ul.sub-menu { display: block; }
  
  .btn-cs {
    width: 100%;
    text-align: center;
    margin-top: 12px;
    padding: 12px 20px !important;
  }
  .hero { height: 65vh; }
  .kpp-inner { grid-template-columns: 1fr; text-align: center; }
  .btn-join { display: block; }
  .galeri-grid { grid-template-columns: 1fr; }
  .testimoni-grid { grid-template-columns: 1fr; }
  .sosmed-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .iso-grid { grid-template-columns: 1fr; }
  .iso-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .wa-float span { display: none; }
  .wa-float { padding: 13px; border-radius: 50%; }
  .group-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PRODUCT CATEGORY & BREADCRUMBS STYLES
============================================= */
.category-page {
  padding: 40px 0 80px;
}
.category-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--dark);
}
.breadcrumb-nav {
  margin-bottom: 25px;
  font-size: 13.5px;
}
.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777;
}
.breadcrumb-link {
  color: var(--primary);
  font-weight: 500;
  transition: color var(--transition);
}
.breadcrumb-link:hover {
  color: var(--primary-dk);
}
.breadcrumb-separator {
  font-size: 10px;
  color: #ccc;
}
.breadcrumb-current {
  color: #444;
  font-weight: 600;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.product-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.product-card:hover .product-image {
  transform: scale(1.04);
}
.product-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 12px;
  text-align: center;
}

/* =============================================
   HASBY GROUP OVERVIEW ADDITIONAL STYLES
============================================= */
.group-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: white;
  padding: 80px 0;
}
.group-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  margin: 15px 0;
}
.group-hero p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.group-cards-section {
  padding: 80px 0;
  background: #fafafa;
}

