:root {
  --primary: #6B136F;
  --primary-dark: #4A0E50;
  --secondary: #E91E63;
  --purple: #6B136F;
  --purple-dark: #4A0E50;
  --accent: #AD1FBF;
  --text-dark: #1a1a1a;
  --text-light: #4b5563;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border: #e5e7eb;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  color: #333;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

/* Memastikan gambar dan media tidak melebihi lebar viewport */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Logo image khusus - jangan diubah display */
.main-header .logo-img,
.header-top .logo-img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.main-header .logo,
.header-top .logo {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.main-header .logo h1,
.header-top .logo h1 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--primary) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

/* Memastikan logo container terlihat */
.main-header .logo,
.header-top .logo {
  min-width: auto !important;
  max-width: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Responsive container padding */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}

/* ===== HEADER ===== */
.main-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 0;
  padding: 0;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 0;
  gap: 20px;
  width: 100%;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .header-top {
    padding: 13px 0 12px 0;
  }
  
  .logo h1 {
    font-size: 20px;
  }
  
  .logo-img {
    width: 55px;
    height: 55px;
  }
  
  .main-nav a {
    padding: 10px 15px;
    font-size: 13px;
  }
}

.logo {
  display: flex !important;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10;
  position: relative;
}

.logo-img {
  width: 60px !important;
  height: 60px !important;
  object-fit: contain;
  border-radius: 8px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: 60px;
  max-height: 60px;
}

.logo-img[src=""] {
  display: none;
}

.logo h1 {
  font-size: 24px;
  color: var(--primary) !important;
  font-weight: 700;
  margin: 0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  flex-shrink: 0;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  position: relative;
}

.main-nav a:not(.btn-nav):hover {
  color: var(--primary);
}

.main-nav a:not(.btn-nav):hover {
  background: rgba(107, 19, 111, 0.06);
  border-radius: 6px;
}

.main-nav a.active {
  color: var(--primary);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav .btn-nav {
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
}

.main-nav .btn-nav:hover {
  background: var(--primary-dark);
}

.main-nav .btn-nav::after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s ease;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

/* Pastikan tombol muncul di layar kecil */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .main-nav {
    display: none;
  }
}

.mobile-menu-toggle:hover {
  background: rgba(107, 19, 111, 0.08);
}

.mobile-menu-toggle:active {
  background: rgba(107, 19, 111, 0.12);
  transform: scale(0.96);
}

.mobile-menu-toggle:focus {
  outline: 2px solid rgba(107, 19, 111, 0.3);
  outline-offset: 2px;
}

/* Hamburger Lines */
.hamburger-line {
  display: block !important;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: all 0.25s ease;
  transform-origin: center;
  pointer-events: none;
  visibility: visible !important;
  opacity: 1 !important;
}

.mobile-menu-toggle:hover .hamburger-line {
  background: var(--primary-dark);
}

.mobile-menu-toggle:focus .hamburger-line {
  background: var(--primary-dark);
}

/* Animasi saat menu aktif (menjadi X) */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--primary);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--primary);
}

.mobile-menu-toggle.active {
  background: rgba(107, 19, 111, 0.1);
}

/* Aksesibilitas fokus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(107, 19, 111, 0.35);
  outline-offset: 2px;
}

/* ===== HERO SECTION =====
   Tinggi mengikuti gambar (intrinsik); tidak ada min/max height paksa — JS set .hero-slider height = tinggi gambar aktif */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  line-height: 0;
  isolation: isolate;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Cegah kolaps total jika JS/hosting mengembalikan lebar 0 sesaat */
  min-height: 1px;
}

.hero-track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  /* Geser ke kiri halus antar gambar */
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  box-sizing: border-box;
}

.hero-slide {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  min-width: 0;
}

.hero-slide__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-section,
  .hero-slider {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 1;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  font-weight: 500;
}

.hero-btn {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Hero Navigation Buttons */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.hero-nav button {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  padding: 0;
  margin: 0;
  transition: none;
}

.hero-nav button:hover,
.hero-nav button:focus,
.hero-nav button:active {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-nav button {
    width: 44px;
    height: 44px;
    font-size: 18px;
    -webkit-tap-highlight-color: transparent;
  }
}


/* ===== HEADER/TOPBAR ===== */
.topbar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  min-height: 60px;
}

/* Logo untuk topbar - berbeda dengan main-header */
.topbar .logo {
  font-weight: 700;
  color: #000;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.topbar nav {
  display: flex;
  gap: 0;
  align-items: center;
}

.topbar nav a {
  color: #333;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.topbar nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.topbar nav a:hover {
  color: var(--primary);
}

.topbar nav a:hover::after {
  transform: scaleX(1);
}

/* ===== BANNER ===== */
.banner-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.banner-section h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.banner-section p {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.95;
}

/* ===== BRAND TAGLINE ===== */
.brand-tag {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 0 0 48px;
  margin: 0;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.services-section .section-header {
  margin-bottom: 1.25rem;
  margin-top: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border: 2px solid var(--border);
  padding: 40px 25px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 19, 111, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 32px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--accent);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
  min-height: 60px;
}

.service-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.service-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(107, 19, 111, 0.3);
}

/* ===== PRODUCTS ===== */
.products-section {
  padding: 60px 0;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-header p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Memastikan card memiliki tinggi yang konsisten */
@media (max-width: 768px) {
  .product-card {
    display: flex;
    flex-direction: column;
  }
  
  .product-image {
    height: 200px;
  }
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .product-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .product-image {
    height: 180px;
  }
}

.img-placeholder {
  font-size: 80px;
  color: var(--primary);
  opacity: 0.3;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.product-features {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-features span {
  background: #f0f0f0;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-features span i {
  color: var(--primary);
}

.product-price {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.product-price span {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.product-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  margin-top: 20px;
}

.product-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(107, 19, 111, 0.3);
}

/* ===== WHY US ===== */
.why-us-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-us-box {
  background: #fff;
  padding: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.why-us-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 600;
}

.why-us-box p {
  color: #666;
  font-size: 13px;
  line-height: 1.8;
}

/* ===== PROMO SECTION ===== */
.promo-section {
  padding: 60px 0;
  background: radial-gradient(circle at top left, rgba(107, 19, 111, 0.06), transparent 55%),
    radial-gradient(circle at bottom right, rgba(251, 140, 0, 0.06), transparent 55%),
    #fff;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 40px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 40px rgba(107, 19, 111, 0.25);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(107, 19, 111, 0.35);
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.promo-banner:hover::before {
  opacity: 1;
}

.promo-badge {
  position: absolute;
  top: 18px;
  left: 24px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.promo-badge-alt {
  left: auto;
  right: 24px;
}

.promo-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.18), transparent 60%);
}

.promo-icon-circle i {
  font-size: 30px;
}

.promo-content h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.promo-content p {
  font-size: 18px;
  opacity: 0.95;
}

.promo-list {
  list-style: none;
  margin-top: 18px;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  border-left: 3px solid var(--primary);
}

.promo-list li {
  position: relative;
  padding-left: 20px;
  text-align: left;
}

.promo-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 16px;
}

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

.promo-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
}

.promo-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 19, 111, 0.3);
}

/* ===== QUICK ACTIONS ===== */
.quick-actions-section {
  padding: 60px 0;
  background: #f9fafb;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.action-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.action-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.action-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.action-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.action-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== WHY US ===== */
.why-us-section {
  padding: 60px 0;
  background: #fff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.why-us-card {
  background: #fff;
  border: 2px solid var(--border);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}

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

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  font-weight: 700;
  transition: all 0.3s;
}

.why-us-card:hover .why-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.why-us-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.why-us-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

.benefits-list {
  background: #f9fafb;
  padding: 50px;
  border-radius: 15px;
  margin-top: 50px;
}

.benefits-list h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.benefit-item:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.benefit-item i {
  font-size: 24px;
  color: var(--primary);
}

.benefit-item span {
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 60px 0;
  background: #f9fafb;
}

.contact-form {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 19, 111, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.submit-btn {
  width: 100%;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(107, 19, 111, 0.3);
}

.form-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.form-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.form-links a:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.main-footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
  color: #fff;
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-section h4 {
  display: inline-block;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 18px;
}

.company-info {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
  text-align: center;
}

.company-info strong {
  color: #fff;
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

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

.contact-info p {
  margin-bottom: 15px;
  color: #cbd5e1;
}

.contact-info strong {
  color: #fff;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  justify-content: center;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(107, 19, 111, 0.3);
}

.hours-info {
  line-height: 2.2;
  color: #cbd5e1;
  text-align: center;
}

.hours-item {
  margin-bottom: 20px;
  color: #cbd5e1;
}

.hours-item strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

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

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

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transition: all 0.3s;
  color: var(--primary);
}

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

.footer-links a:hover::before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 35px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}


/* ===== LOGIN ===== */
.login-box {
  max-width: 450px;
  margin: 50px auto;
  padding: 45px 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.login-box h2 {
  text-align: center;
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 28px;
  font-weight: 700;
}

.login-box label {
  display: block;
  margin-top: 16px;
  margin-bottom: 7px;
  font-weight: 600;
  color: #333;
  font-size: 13px;
}

.login-box input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s;
}

.login-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 19, 111, 0.1);
}

button, .btn {
  background: var(--primary);
  color: #fff;
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  margin-top: 18px;
}

button:hover, .btn:hover {
  background: var(--primary-dark);
}

/* ===== FORMS ===== */
form {
  background: #fff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

form label {
  display: block;
  margin-top: 16px;
  margin-bottom: 7px;
  font-weight: 600;
  color: #333;
  font-size: 13px;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 19, 111, 0.1);
}

form textarea {
  resize: vertical;
  min-height: 90px;
}

.error {
  background: #fee2e2;
  color: #b91c1c;
  padding: 12px 18px;
  border-radius: 5px;
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 13px;
}

.success {
  background: #d1fae5;
  color: #065f46;
  padding: 12px 18px;
  border-radius: 5px;
  margin-bottom: 18px;
  font-size: 13px;
}

/* ===== DASHBOARD ===== */
.dash-header {
  background: var(--primary);
  color: #fff;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.dash-header a {
  color: #fff;
  text-decoration: none;
  padding: 9px 18px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}

.dash-header a:hover {
  background: rgba(255,255,255,0.3);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

table th {
  background: var(--primary);
  color: #fff;
  padding: 14px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

table td {
  padding: 14px;
  border-bottom: 1px solid #f0f0f0;
}

table tr:hover {
  background: #f9f9f9;
}

.small-card {
  background: #fff;
  padding: 22px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s;
}

.small-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

ul {
  list-style: none;
}

ul li {
  padding: 14px;
  background: #fff;
  margin-bottom: 8px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border-left: 3px solid var(--primary);
}

ul li a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

/* ===== DASHBOARD PROFESIONAL ===== */
body.dash-page {
  background: #f1f5f9;
  min-height: 100vh;
}
.dash-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(107, 19, 111, 0.25);
}
.dash-header .dash-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.dash-header .dash-user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.dash-header .dash-user span {
  font-size: 14px;
  opacity: 0.95;
}
.dash-header .dash-user .role-badge {
  background: rgba(255,255,255,0.25);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.dash-header a.dash-logout {
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.3);
}
.dash-header a.dash-logout:hover {
  background: rgba(255,255,255,0.3);
}
.dash-header a.dash-back {
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 8px;
  transition: background 0.2s;
  opacity: 0.95;
}
.dash-header a.dash-back:hover {
  background: rgba(255,255,255,0.2);
}
main.dash-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}
.dash-main .page-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}
.dash-main .page-subtitle {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 28px 0;
}
.dash-main .section-title {
  font-size: 18px;
  font-weight: 600;
  color: #334155;
  margin: 28px 0 16px 0;
}
.dash-main .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.dash-main .small-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  text-align: center;
  transition: box-shadow 0.2s;
  border: 1px solid #e2e8f0;
}
.dash-main .small-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.dash-main .small-card .stat-icon {
  font-size: 28px;
  margin-bottom: 10px;
  opacity: 0.9;
}
.dash-main .small-card .stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}
.dash-main .small-card .stat-label {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}
.dash-main .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.dash-main .menu-grid li {
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.dash-main .menu-grid li:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left-color: var(--primary-dark);
}
.dash-main .menu-grid li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.dash-main .menu-grid li a:hover {
  color: var(--primary);
}
.dash-main .menu-grid li a .menu-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: rgba(107, 19, 111, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.dash-main .table-wrapper {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  margin-top: 12px;
}
.dash-main .table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.dash-main .table-wrapper table th {
  background: #f8fafc;
  color: #475569;
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #e2e8f0;
}
.dash-main .table-wrapper table td {
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: #334155;
}
.dash-main .table-wrapper table tr:last-child td {
  border-bottom: none;
}
.dash-main .table-wrapper table tbody tr:hover {
  background: #f8fafc;
}
.dash-main .table-wrapper table select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 13px;
}
.dash-main .table-wrapper table .btn-update {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.dash-main .table-wrapper table .btn-update:hover {
  background: var(--primary-dark);
}
.dash-main .dash-section {
  margin-bottom: 36px;
}
.dash-main .dash-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-main .form-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}
.dash-main .form-card label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}
.dash-main .form-card input,
.dash-main .form-card textarea,
.dash-main .form-card select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
}
.dash-main .form-card input:focus,
.dash-main .form-card textarea:focus,
.dash-main .form-card select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 19, 111, 0.1);
}
.dash-main .form-card label:first-of-type { margin-top: 0; }

h1 { font-size: 36px; margin-bottom: 15px; font-weight: 700; }
h3 { font-size: 22px; margin: 18px 0 10px; font-weight: 600; }
h4 { font-size: 17px; margin: 16px 0 8px; font-weight: 600; }

/* ===== STATUS BADGES ===== */
.status-new { background: #dbeafe; color: #1e40af; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.status-confirmed { background: #d1fae5; color: #065f46; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.status-done { background: #d1fae5; color: #065f46; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.status-cancelled { background: #fee2e2; color: #991b1b; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.status-closed { background: #d1fae5; color: #065f46; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.status-pending { background: #fef3c7; color: #92400e; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-header p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  /* HEADER - Tablet */
  .main-header {
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  
  .header-top {
    padding: 12px 0;
    position: relative;
    min-height: 60px;
    gap: 15px;
  }
  
  .logo {
    gap: 10px;
    min-width: 0;
    align-items: center;
    flex: 0 1 auto;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .logo h1 {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    visibility: visible;
    opacity: 1;
    display: block;
    color: var(--primary);
  }
  
  .logo {
    visibility: visible;
    opacity: 1;
  }
  
  /* Sembunyikan menu desktop di mobile */
  .main-nav:not(.active) {
    display: none !important;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 0;
    z-index: 1000;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    border-top: 2px solid var(--primary);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .main-nav.active {
    display: flex !important;
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }
  
  .main-nav a {
    padding: 16px 24px;
    font-size: 15px;
    display: block;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    transition: all 0.2s ease;
    margin: 0;
    color: #374151;
    font-weight: 500;
    position: relative;
  }
  
  .main-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.2s ease;
  }
  
  .main-nav a:hover {
    background: rgba(107, 19, 111, 0.08);
    color: var(--primary);
    padding-left: 28px;
  }
  
  .main-nav a:hover::before {
    transform: scaleY(1);
  }
  
  .main-nav a:last-child {
    border-bottom: none;
  }
  
  .main-nav .btn-nav {
    margin: 12px 20px;
    text-align: center;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    padding: 14px 20px;
    font-weight: 600;
  }
  
  .main-nav .btn-nav:hover {
    background: var(--primary-dark);
    padding-left: 20px;
  }
  
  .main-nav .btn-nav::before {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    width: 38px;
    height: 38px;
    padding: 8px;
    margin-left: auto;
    flex-shrink: 0;
    order: 3;
    gap: 5px;
    margin-bottom: 4px;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  .hero-nav {
    padding: 0 15px;
  }
  
  .hero-nav button {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  
  .hero-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  /* SECTIONS */
  .products-section,
  .promo-section,
  .quick-actions-section,
  .why-us-section,
  .contact-section {
    padding: 50px 0;
  }

  .services-section {
    padding: 0 0 44px;
  }
  
  .banner-section {
    height: 240px;
    padding: 60px 20px;
  }
  
  .banner-section h1 {
    font-size: 32px;
  }
  
  .banner-section p {
    font-size: 13px;
  }
  
  .contact-form {
    padding: 40px 30px;
  }
  
  .section-header {
    margin-bottom: 35px;
  }

  .services-section .section-header {
    margin-bottom: 18px;
  }
  
  .section-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  
  .section-header p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* GRIDS */
  .services-grid,
  .quick-actions-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .products-grid,
  .why-us-grid,
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  /* CARDS */
  .product-card,
  .service-card,
  .action-card,
  .why-us-card {
    padding: 25px 20px;
  }
  
  .product-card h3,
  .service-card h3,
  .action-card h3,
  .why-us-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }
  
  .product-card p,
  .service-card p,
  .action-card p,
  .why-us-card p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  /* FORMS */
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-form {
    padding: 30px 25px;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  /* PROMO */
  .promo-banner {
    padding: 35px 25px;
  }
  
  .promo-content h3 {
    font-size: 26px;
  }
  
  /* FOOTER */
  .main-footer {
    padding: 50px 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 35px;
  }
  
  .footer-section h4 {
    font-size: 17px;
    margin-bottom: 18px;
  }
  
  .footer-section p {
    font-size: 13px;
    line-height: 1.7;
  }
  
  .social-links {
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  /* HEADER - Mobile - Lebih compact dan rapi */
  .main-header {
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  }
  
  .header-top {
    padding: 10px 0;
    min-height: 55px;
    gap: 10px;
  }
  
  .logo {
    gap: 8px;
    min-width: 0;
    align-items: center;
    flex: 0 1 auto;
    visibility: visible;
    opacity: 1;
    z-index: 1;
  }
  
  .logo h1 {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    max-width: calc(100vw - 120px);
    visibility: visible;
    opacity: 1;
    display: block;
    color: var(--primary);
  }
  
  .logo-img {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    width: 36px;
    height: 36px;
    padding: 7px;
    margin-left: auto;
    flex-shrink: 0;
    order: 3;
    gap: 5px;
    margin-bottom: 4px;
  }
  
  .hamburger-line {
    width: 18px;
    height: 2px;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  .main-nav {
    top: 60px;
    padding: 0;
    max-height: calc(100vh - 60px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-top: 2px solid var(--primary);
  }
  
  .main-nav a {
    padding: 14px 20px;
    font-size: 14px;
    display: block;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .main-nav a:hover {
    padding-left: 24px;
  }
  
  .main-nav a:last-child {
    border-bottom: none;
  }
  
  .main-nav .btn-nav {
    margin: 10px 18px;
    padding: 12px 18px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
  }
  
  .main-nav .btn-nav:hover {
    padding-left: 18px;
  }
  
  .hero-nav {
    padding: 0 10px;
  }
  
  .hero-nav button {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .hero-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  /* SECTIONS - Spacing lebih konsisten */
  .products-section,
  .promo-section,
  .quick-actions-section,
  .why-us-section,
  .contact-section {
    padding: 40px 0;
  }

  .services-section {
    padding: 0 0 36px;
  }
  
  .banner-section {
    height: 220px;
    padding: 60px 20px;
  }
  
  .banner-section h1 {
    font-size: 28px;
  }
  
  .banner-section p {
    font-size: 13px;
  }
  
  .contact-form {
    padding: 30px 25px;
  }
  
  .section-header {
    margin-bottom: 25px;
    padding: 0 5px;
  }

  .services-section .section-header {
    margin-bottom: 14px;
  }
  
  .section-header h2 {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .section-header p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  /* CARDS - Lebih compact dan rapi */
  .product-card,
  .service-card,
  .action-card,
  .why-us-card {
    padding: 20px 15px;
    margin-bottom: 0;
  }
  
  .product-card h3,
  .service-card h3,
  .action-card h3,
  .why-us-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  
  .product-card p,
  .service-card p,
  .action-card p,
  .why-us-card p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .why-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  /* PRODUCT FEATURES */
  .product-features {
    gap: 8px;
    margin-bottom: 15px;
  }
  
  .product-features span {
    padding: 4px 10px;
    font-size: 11px;
  }
  
  .product-price {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .product-price span {
    font-size: 22px;
  }
  
  /* PROMO */
  .promo-banner {
    padding: 30px 20px;
    border-radius: 12px;
  }
  
  .promo-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .promo-content p {
    font-size: 14px;
  }
  
  /* FORMS */
  .contact-form {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .form-row {
    gap: 12px;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .form-group input,
  .form-group select {
    padding: 11px 14px;
    font-size: 14px;
    border-radius: 6px;
  }
  
  .form-links {
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .form-links a {
    font-size: 12px;
    gap: 5px;
  }
  
  /* BENEFITS */
  .benefits-list {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .benefits-list h3 {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.4;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .benefit-item {
    padding: 15px;
    font-size: 12px;
    gap: 12px;
  }
  
  .benefit-item i {
    font-size: 20px;
  }
  
  /* BUTTONS */
  .submit-btn,
  .product-btn,
  .service-btn,
  .action-btn,
  .promo-btn {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 6px;
    width: 100%;
    text-align: center;
  }
  
  .promo-btn {
    width: auto;
    display: inline-block;
  }
  
  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer-section p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 12px;
  }
  
  .company-info {
    font-size: 12px;
    margin-top: 15px;
  }
  
  .social-links {
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .main-footer {
    padding: 35px 0 20px;
  }
  
  .footer-bottom {
    padding-top: 25px;
    font-size: 12px;
  }
  
  /* GRID GAPS */
  .services-grid,
  .products-grid,
  .quick-actions-grid,
  .why-us-grid,
  .promo-grid {
    gap: 15px;
  }
  
  /* Memastikan alignment konsisten */
  .product-info,
  .service-card,
  .action-card,
  .why-us-card {
    display: flex;
    flex-direction: column;
  }
  
  .product-info h3,
  .service-card h3,
  .action-card h3,
  .why-us-card h3 {
    flex-shrink: 0;
  }
  
  .product-info p,
  .service-card p,
  .action-card p,
  .why-us-card p {
    flex: 1;
  }
  
  /* Text alignment */
  .section-header {
    text-align: center;
  }
  
  /* Spacing konsisten */
  .product-btn,
  .service-btn,
  .action-btn {
    margin-top: auto;
  }
}

/* ===== DASHBOARD IMPROVEMENTS ===== */
/* Responsive Tables */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

table {
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 14px;
}

table th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 16px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 10;
}

table td {
  padding: 16px 14px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  word-wrap: break-word;
}

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

table tr:hover {
  background: #f9fafb;
  transition: background 0.2s;
}

table tr:nth-child(even) {
  background: #fafbfc;
}

table tr:nth-child(even):hover {
  background: #f1f3f5;
}

/* Table Actions */
table td:last-child {
  white-space: nowrap;
}

table form {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  background: none;
  padding: 0;
  box-shadow: none;
  margin: 0;
}

table select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 2px solid #e5e7eb;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  color: #374151;
  transition: all 0.2s;
  min-width: 140px;
}

table select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 19, 111, 0.1);
}

table button[type="submit"] {
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  width: auto;
  margin: 0;
}

table button[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 19, 111, 0.3);
}

table a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-block;
}

table a:hover {
  background: rgba(107, 19, 111, 0.1);
  color: var(--primary-dark);
}

/* Dashboard Main Container */
main.container {
  padding: 30px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

main.container h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  font-weight: 700;
  color: var(--text-dark);
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

main.container h4 {
  font-size: 18px;
  margin: 30px 0 15px 0;
  font-weight: 600;
  color: var(--text-dark);
}

main.container section {
  margin-bottom: 40px;
}

/* Dashboard Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.small-card {
  background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
  padding: 28px 22px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #f0f0f0;
}

.small-card:hover {
  box-shadow: 0 8px 24px rgba(107, 19, 111, 0.15);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.small-card strong {
  display: block;
  font-size: 36px;
  color: var(--primary);
  margin: 10px 0;
  font-weight: 700;
}

/* Dashboard Lists */
main.container ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

main.container ul li {
  padding: 16px 18px;
  background: #fff;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  border-left: 4px solid var(--primary);
  transition: all 0.2s;
}

main.container ul li:hover {
  box-shadow: 0 4px 12px rgba(107, 19, 111, 0.12);
  transform: translateX(4px);
  border-left-width: 6px;
}

main.container ul li a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

main.container ul li a:hover {
  color: var(--primary);
}

/* Form Improvements */
form {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin: 25px 0;
  border: 1px solid #f0f0f0;
}

form label {
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

form label:first-child {
  margin-top: 0;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="password"],
form input[type="number"],
form input[type="date"],
form textarea,
form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  font-family: inherit;
  background: #fff;
  color: #374151;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(107, 19, 111, 0.1);
  background: #fff;
}

form textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

form button[type="submit"],
form .btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  width: auto;
  margin-top: 24px;
  box-shadow: 0 4px 12px rgba(107, 19, 111, 0.2);
}

form button[type="submit"]:hover,
form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 19, 111, 0.3);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* Dashboard Header Improvements */
.dash-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dash-header h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.3px;
}

.dash-header a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.2);
}

.dash-header a:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Empty State */
table tr td[colspan] {
  text-align: center;
  color: #6b7280;
  padding: 40px 20px;
  font-style: italic;
}

/* Status Badges Improvements */
.status-new,
.status-confirmed,
.status-done,
.status-closed,
.status-cancelled,
.status-pending {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Topbar Improvements */
.topbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  min-height: 64px;
  flex-wrap: wrap;
  gap: 15px;
}

.topbar .logo {
  font-weight: 700;
  color: var(--primary);
  font-size: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.topbar nav {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar nav a {
  color: #374151;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  position: relative;
  border-radius: 6px;
}

.topbar nav a:hover {
  color: var(--primary);
  background: rgba(107, 19, 111, 0.05);
}

/* Login Box Improvements */
.login-box {
  max-width: 480px;
  margin: 60px auto;
  padding: 50px 45px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid #f0f0f0;
}

.login-box h2 {
  text-align: center;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Banner Section Improvements */
.banner-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.banner-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.banner-section p {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE DASHBOARD ===== */
@media (max-width: 1024px) {
  main.container {
    padding: 25px 15px;
  }
  
  .dash-header {
    padding: 18px 20px;
    flex-wrap: wrap;
  }
  
  .dash-header h2 {
    font-size: 20px;
  }
  
  table {
    font-size: 13px;
  }
  
  table th,
  table td {
    padding: 12px 10px;
  }
  
  table form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  table select {
    width: 100%;
    min-width: auto;
  }
  
  table button[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Dashboard Mobile */
  main.container {
    padding: 20px 12px;
  }
  
  main.container h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }
  
  main.container h4 {
    font-size: 16px;
    margin: 25px 0 12px 0;
  }
  
  .dash-header {
    padding: 15px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .dash-header h2 {
    font-size: 18px;
  }
  
  .dash-header a {
    padding: 8px 16px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
  
  /* Table Mobile - Horizontal Scroll */
  .table-wrapper {
    margin: 15px -12px;
    border-radius: 0;
  }
  
  table {
    min-width: 800px;
    font-size: 12px;
  }
  
  table th {
    padding: 12px 10px;
    font-size: 11px;
  }
  
  table td {
    padding: 12px 10px;
    font-size: 12px;
  }
  
  table form {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }
  
  table select {
    width: 100%;
    padding: 8px 10px;
    font-size: 12px;
  }
  
  table button[type="submit"] {
    width: 100%;
    padding: 8px 14px;
    font-size: 12px;
  }
  
  /* Forms Mobile */
  form {
    padding: 25px 20px;
    margin: 20px 0;
  }
  
  form label {
    font-size: 13px;
    margin-top: 16px;
  }
  
  form input,
  form textarea,
  form select {
    padding: 11px 14px;
    font-size: 14px;
  }
  
  form button[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    margin-top: 20px;
  }
  
  /* Cards Mobile */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .small-card {
    padding: 24px 20px;
  }
  
  .small-card strong {
    font-size: 32px;
  }
  
  /* Login Mobile */
  .login-box {
    margin: 40px auto;
    padding: 35px 25px;
    max-width: 100%;
  }
  
  .login-box h2 {
    font-size: 24px;
    margin-bottom: 28px;
  }
  
  /* Banner Mobile */
  .banner-section {
    height: 250px;
    padding: 70px 20px;
  }
  
  .banner-section h1 {
    font-size: 32px;
  }
  
  .banner-section p {
    font-size: 14px;
  }
  
  /* Topbar Mobile */
  .topbar .container {
    padding: 12px 15px;
    min-height: 60px;
  }
  
  .topbar .logo {
    font-size: 18px;
  }
  
  .topbar nav {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  
  .topbar nav a {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  /* Dashboard Small Mobile */
  main.container {
    padding: 15px 10px;
  }
  
  main.container h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  
  .dash-header {
    padding: 12px 15px;
  }
  
  .dash-header h2 {
    font-size: 16px;
  }
  
  table {
    min-width: 700px;
    font-size: 11px;
  }
  
  table th {
    padding: 10px 8px;
    font-size: 10px;
  }
  
  table td {
    padding: 10px 8px;
    font-size: 11px;
  }
  
  form {
    padding: 20px 15px;
  }
  
  .login-box {
    margin: 30px 15px;
    padding: 30px 20px;
  }
  
  .login-box h2 {
    font-size: 22px;
  }
  
  .banner-section {
    height: 220px;
    padding: 60px 15px;
  }
  
  .banner-section h1 {
    font-size: 26px;
  }
  
  .banner-section p {
    font-size: 13px;
  }
}

/* ===== CROSS-BROWSER COMPATIBILITY ===== */
/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
  .hero-section,
  .banner-section {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* Print Styles */
@media print {
  .dash-header,
  .main-header,
  .topbar,
  .mobile-menu-toggle,
  button,
  form,
  .hero-nav {
    display: none !important;
  }
  
  table {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  table th {
    background: #f0f0f0 !important;
    color: #000 !important;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary: #000;
    --primary-dark: #000;
    --border: #000;
  }
  
  button,
  .btn,
  .submit-btn {
    border: 2px solid #000;
  }
}

/* ===== NEW SECTION STYLES FOR BOOKING FOCUS ===== */

/* FLOW DIAGRAM (ALUR BOOKING) */
.flow-section {
  padding: 70px 0;
  background: radial-gradient(circle at top left, #eef2ff 0, #f9fafb 40%, #ffffff 100%);
}

.flow-diagram {
  position: relative;
  margin-top: 32px;
  padding: 24px 22px 10px 52px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  border: 1px solid #e5e7eb;
}

.flow-diagram::before {
  content: '';
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 45px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(107, 19, 111, 0.35), rgba(107, 19, 111, 0.05));
}

.flow-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.step-circle {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 14px rgba(107, 19, 111, 0.40);
  flex-shrink: 0;
  border: 2px solid #fefefe;
}

.step-content {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
  border-left: 3px solid rgba(107, 19, 111, 0.35);
  flex: 1;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.flow-step:hover .step-content {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
  transform: translateY(-2px);
  border-left-color: var(--primary);
}

.flow-step:hover .step-circle {
  box-shadow: 0 10px 24px rgba(107, 19, 111, 0.55);
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-title i {
  color: var(--primary);
}

.step-text {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
}

@media (min-width: 992px) {
  .flow-diagram {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .flow-diagram {
    padding: 20px 16px 8px 42px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  }

  .flow-diagram::before {
    left: 36px;
  }

  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .step-content {
    padding: 12px 12px;
  }

  .step-title {
    font-size: 14px;
  }

  .step-text {
    font-size: 12px;
  }
}

/* CTA Booking Section */
.cta-booking-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.cta-box {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 3px solid rgba(255,255,255,0.3);
}

.cta-icon i {
  font-size: 42px;
  color: #fff;
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-box p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--primary);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-btn i {
  font-size: 20px;
}

/* Quick Booking Section */
.quick-booking-section {
  padding: 80px 0;
  background: #f8fafc;
}

.booking-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}

.booking-form-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 35px 40px;
  text-align: center;
  color: #fff;
}

.booking-form-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.booking-form-header h2 i {
  font-size: 28px;
}

.booking-form-header p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0;
}

.quick-booking-form {
  padding: 40px;
  box-shadow: none;
  border-radius: 0;
}

.quick-booking-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.quick-booking-form .form-group {
  margin-bottom: 20px;
}

.quick-booking-form .form-group:first-child {
  margin-top: 0;
}

.quick-booking-form label {
  display: block;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
  margin-bottom: 8px;
}

.quick-booking-form input,
.quick-booking-form select,
.quick-booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s;
  font-family: inherit;
}

.quick-booking-form input:focus,
.quick-booking-form select:focus,
.quick-booking-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(107, 19, 111, 0.1);
}
