/* 
   Suzuki Community Indonesia (SCI) - Design System & Styling
   Theme: Deep Racing Navy (#0A2540), Sport Red (#E31B23), Metallic Grey (#1E293B), Pure White (#FFFFFF)
*/

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

:root {
  --primary: #0A2540;
  --primary-dark: #051528;
  --primary-light: #163C66;
  --accent: #E31B23;
  --accent-hover: #C5131A;
  --accent-glow: rgba(227, 27, 35, 0.35);
  --secondary: #2563EB;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #06B6D4;
  
  --bg-main: #0B1120;
  --bg-card: #131C31;
  --bg-card-hover: #1A2642;
  --bg-light: #F8FAFC;
  --bg-surface: #1E293B;
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-dark: #0F172A;
  --text-dark-muted: #475569;
  
  --border-color: rgba(255, 255, 255, 0.1);
  --border-light: #E2E8F0;
  --glass-bg: rgba(19, 28, 49, 0.85);
  --glass-border: rgba(255, 255, 255, 0.12);
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
  --shadow-accent: 0 8px 20px rgba(227, 27, 35, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #B91C1C 100%);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #EF4444 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(227, 27, 35, 0.45);
}

.btn-secondary {
  background: var(--primary-light);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
  background: #1E4976;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(227, 27, 35, 0.05);
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-accent { background: rgba(227, 27, 35, 0.2); color: #FF4D56; border: 1px solid rgba(227, 27, 35, 0.4); }
.badge-success { background: rgba(16, 185, 129, 0.2); color: #34D399; border: 1px solid rgba(16, 185, 129, 0.4); }
.badge-warning { background: rgba(245, 158, 11, 0.2); color: #FBBF24; border: 1px solid rgba(245, 158, 11, 0.4); }
.badge-info { background: rgba(6, 182, 212, 0.2); color: #38BDF8; border: 1px solid rgba(6, 182, 212, 0.4); }

/* Header & Navigation */
.top-bar {
  background: linear-gradient(90deg, #05101F 0%, #0A1B30 100%);
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-bar-notice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-bar-badge {
  background: rgba(227, 27, 35, 0.2);
  color: #FF4D56;
  border: 1px solid rgba(227, 27, 35, 0.4);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.top-bar-text {
  color: #E2E8F0;
  font-weight: 500;
  font-size: 0.8rem;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}
.top-emergency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
}
.top-emergency-pill:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #fff;
  border-color: rgba(239, 68, 68, 0.6);
}
.pulse-dot {
  width: 7px;
  height: 7px;
  background: #EF4444;
  border-radius: 50%;
  box-shadow: 0 0 8px #EF4444;
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.top-admin-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: #F8FAFC;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
}
.top-admin-pill:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 15, 28, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.01em;
  transition: var(--transition);
}
.logo-brand:hover {
  transform: translateY(-1px);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, #0A2540 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.35rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(227, 27, 35, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.logo-text span {
  color: var(--accent);
}
.logo-sub {
  display: block;
  font-size: 0.6rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-top: -3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-link {
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}
.nav-link.active {
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--accent) 0%, #B91C1C 100%);
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.35);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cart-trigger {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.cart-trigger:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent);
  transform: scale(1.05);
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(227, 27, 35, 0.6);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 9px;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: radial-gradient(circle at 70% 20%, rgba(227, 27, 35, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(10, 37, 64, 0.8) 0%, transparent 60%),
              var(--bg-main);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(227, 27, 35, 0.15);
  border: 1px solid rgba(227, 27, 35, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero-title span {
  background: linear-gradient(135deg, #FF4D56 0%, #FF8A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}
.stat-item h3 {
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 0.15rem;
}
.stat-item h3 span {
  color: var(--accent);
}
.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}
.car-showcase-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.car-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
}
.car-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #000;
}
.car-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.car-showcase-card:hover .car-img-wrap img {
  transform: scale(1.04);
}
.car-badge-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.car-card-info h4 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.car-card-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.car-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.spec-box {
  text-align: center;
}
.spec-box small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.spec-box span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

/* Quick Features Section */
.features-section {
  padding: 4rem 0;
  background: var(--bg-main);
}
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}
.section-subtitle {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}
.section-title {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(227, 27, 35, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(227, 27, 35, 0.25);
}
.feature-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Suzuki Models Catalog */
.catalog-section {
  padding: 5rem 0;
  background: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.model-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}
.model-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #000;
}
.model-content {
  padding: 1.25rem;
}
.model-category {
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.model-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.model-desc {
  font-size: 0.825rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Chapter & Regional Section */
.chapter-section {
  padding: 5rem 0;
  background: var(--bg-main);
}
.chapter-search-box {
  max-width: 450px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.chapter-search-box input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}
.chapter-search-box input:focus {
  border-color: var(--accent);
}

.chapter-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.chapter-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.chapter-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 2px solid var(--accent);
}
.chapter-title h4 {
  font-size: 1.1rem;
  color: #fff;
}
.chapter-title p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.chapter-info-list {
  font-size: 0.825rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.chapter-info-list div {
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Event & Kopdar Section */
.events-section {
  padding: 5rem 0;
  background: var(--bg-surface);
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.event-banner {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.event-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  box-shadow: var(--shadow-sm);
}
.event-date-badge span {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}
.event-date-badge small {
  font-size: 0.65rem;
  text-transform: uppercase;
}
.event-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.event-title {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.event-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.event-meta div {
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Bengkel Mitra Directory */
.bengkel-section {
  padding: 5rem 0;
  background: var(--bg-main);
}
.bengkel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}
.bengkel-card:hover {
  border-color: var(--success);
  transform: translateY(-4px);
}
.bengkel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.bengkel-name {
  font-size: 1.15rem;
  color: #fff;
}
.bengkel-discount-pill {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.bengkel-address {
  font-size: 0.825rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Klinik Suzuki / Forum */
.klinik-section {
  padding: 5rem 0;
  background: var(--primary-dark);
}
.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.post-card:hover {
  border-color: var(--primary-light);
}
.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.post-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.75rem;
}

/* Official Store & FJB */
.store-section {
  padding: 5rem 0;
  background: var(--bg-main);
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.product-img-wrap {
  position: relative;
  height: 200px;
  background: #000;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Registration & Modal Forms */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  background: var(--accent);
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.2);
}
select.form-control option {
  background: var(--bg-main);
  color: #fff;
}

/* KTA Digital Card Styling */
.kta-card-wrapper {
  perspective: 1000px;
  margin: 1.5rem 0;
}
.kta-card-inner {
  background: linear-gradient(135deg, #0A2540 0%, #051528 50%, #163C66 100%);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-accent);
}
.kta-card-inner::before {
  content: 'SUZUKI COMMUNITY INDONESIA';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.1em;
  white-space: nowrap;
  pointer-events: none;
}
.kta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}
.kta-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
.kta-logo-text span {
  color: var(--accent);
}
.kta-body {
  display: grid;
  grid-template-columns: 100px 1fr 90px;
  gap: 1.25rem;
  align-items: center;
}
.kta-photo {
  width: 90px;
  height: 110px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: var(--shadow-md);
}
.kta-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}
.kta-nra {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.kta-info-grid {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.kta-info-grid span {
  color: #fff;
  font-weight: 600;
}
.kta-qr {
  background: #fff;
  padding: 6px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.footer-links h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .top-bar-text {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 17, 32, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0.5rem;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0,0,0,0.85);
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    text-align: left;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4, .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .top-bar-notice {
    font-size: 0.75rem;
  }
  .top-bar-text {
    display: none;
  }
  .kta-nav-btn {
    display: none;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .kta-body {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .kta-photo {
    margin: 0 auto;
  }
}
