/* ===== VARIABLES ===== */
:root {
  --primary-color: #13c3c9;
  --primary-dark: #0a989c;
  --primary-light: #b5f2f7;
  --secondary-color: #009baf;
  --secondary-dark: #006c8a;
  --background-light: #f6fdff;
  --background-white: #fff;
  --text-dark: #333;
  --text-light: #666;
  --text-lighter: #888;
  --border-color: #e0f7fa;
  --shadow-light: rgba(0,0,0,0.05);
  --shadow-medium: rgba(0,0,0,0.09);
  --shadow-primary: rgba(19,195,201,0.12);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-light: linear-gradient(135deg, #f6fdff 0%, #e8f7f8 100%);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(19, 195, 201, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(19, 195, 201, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 1);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -10deg);
  }
  to {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--background-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
  font-weight: bold;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Loading spinner styles removed */

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(19,195,201,0.3);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
  padding: 0;
  line-height: 1;
  text-align: center;
}

.back-to-top i {
  display: block;
  line-height: 1;
  transform: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(19,195,201,0.4);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: var(--transition);
  font-size: 14px;
  line-height: 1;
}

.whatsapp-float a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  background: #128C7E;
}

.whatsapp-float i {
  font-size: 24px;
  display: block;
  line-height: 1;
  transform: none;
}

/* ===== CHAT TOGGLE BUTTON ===== */
.chat-toggle {
  position: fixed;
  bottom: 100px; /* Beri jarak dari tombol back to top */
  right: 30px;
  background: var(--primary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(19,195,201,0.3);
  transition: var(--transition);
  z-index: 1000;
}

.chat-toggle:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ef4444;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== LIVE CHAT WIDGET ===== */
.live-chat-widget {
  position: fixed;
  bottom: 170px; /* Sesuaikan dengan posisi chat toggle */
  right: 30px;
  width: 350px;
  height: 400px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 1000;
  display: none;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.live-chat-widget.active,
.live-chat-widget.open {
  display: flex !important;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.chat-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  border-radius: 15px 15px 0 0;
  gap: 12px;
  position: relative;
  z-index: 100005;
}

.chat-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-info strong {
  display: block;
  font-size: 14px;
}

.status {
  font-size: 12px;
  opacity: 0.9;
}

.status.online {
  color: #4ade80;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: -8px -8px -8px 0;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
  z-index: 100010;
}

.close-chat:hover {
  background: rgba(255,255,255,0.15);
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  display: flex;
  max-width: 80%;
}

.message.bot {
  align-self: flex-start;
}

.message.user {
  align-self: flex-end;
}

.message-content {
  padding: 12px 16px;
  border-radius: 18px;
  position: relative;
}

.message.bot .message-content {
  background: var(--background-light);
  border-bottom-left-radius: 5px;
}

.message.user .message-content {
  background: var(--primary-color);
  color: white;
  border-bottom-right-radius: 5px;
}

.message-time {
  font-size: 11px;
  opacity: 0.7;
  display: block;
  margin-top: 5px;
}

.chat-input {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
}

.chat-input button {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.chat-input button i {
  display: block;
  line-height: 1;
  font-size: 16px;
  transform: none;
}

.chat-input button:hover {
  background: var(--primary-dark);
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.quick-option {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
}

.quick-option:hover {
  background: var(--primary-color);
  color: white;
}

.whatsapp-redirect {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.btn-whatsapp-chat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-whatsapp-chat:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--primary-color);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);

/* ===== Mobile small fixes (added 2025-11-29) ===== */
@media (max-width: 768px) {
  /* Compact WhatsApp floating button: show icon only and avoid overflow */
  .whatsapp-float {
    right: 16px !important;
    left: auto !important;
    bottom: calc(80px + env(safe-area-inset-bottom)) !important;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    border-radius: 999px !important;
  }

/* Strong mobile shrink: additional overrides to prevent overflow */
@media (max-width: 768px) {
  body { font-size: 13px !important; }
  html { font-size: 13px !important; }
  .header .headline h1 { font-size: 16px !important; }
  .header .subtitle, .section-subtitle { font-size: 13px !important; }
  h1 { font-size: 18px !important; }
  h2 { font-size: 16px !important; }
  h3 { font-size: 15px !important; }

  .quick-card .card-body h3 { font-size: 14px !important; }
  .quick-card .card-body p { font-size: 12px !important; }

  .menu-link { font-size: 14px !important; padding: 8px 10px !important; }
  .nav-container, .nav-actions { gap: 6px !important; }

  input, select, textarea, .tracking-container, label { font-size: 13px !important; }
  .btn, .btn-primary, .btn-secondary { font-size: 14px !important; padding: 8px 10px !important; }

  /* compact hero spacing */
  .header-container { padding-top: 18px !important; padding-bottom: 18px !important; }
  .highlight-box { padding: 8px 12px !important; font-size: 13px !important; }

  /* Keep long words from overflowing */
  .headline, .subtitle, p, a, li, span { word-break: break-word !important; overflow-wrap: break-word !important; }
}

/* Fix tracking input layout on mobile: stack label, input, and button */
@media (max-width: 768px) {
  .tracking-container .flex,
  .tracking-form > .flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
  .tracking-form label,
  .tracking-container label {
    display: block !important;
    white-space: normal !important;
    margin-bottom: 6px !important;
    font-size: 14px !important;
    max-width: 100% !important;
  }
  #trackingInput,
  .tracking-form input[type="text"] {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    height: 44px !important;
    padding-right: 12px !important;
  }
  .btn-track {
    width: 100% !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 44px !important;
    margin-top: 6px !important;
  }
  .btn-track i { margin: 0 !important; }
  #trackingInput::placeholder { opacity: 1 !important; }
}

@media (max-width: 480px) {
  /* very small screens tight settings */
  body { font-size: 12px !important; }
  html { font-size: 12px !important; }
  .header .headline h1 { font-size: 15px !important; }
  h1 { font-size: 16px !important; }
  h2 { font-size: 14px !important; }
  h3 { font-size: 13px !important; }

  .quick-card .card-body h3 { font-size: 13px !important; }
  .quick-card .card-body p { font-size: 11px !important; }

  .menu-link { font-size: 13px !important; padding: 7px 8px !important; }
  .btn, .btn-primary, .btn-secondary { font-size: 13px !important; padding: 8px 8px !important; }

  /* tighten layout to avoid overflow */
  .header-container { padding-left: 12px !important; padding-right: 12px !important; }
  .main-illustration img { max-width: 220px !important; width: 55% !important; }
}

  .whatsapp-float a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    overflow: hidden;
  }

  /* Hide the text on very small screens so the button won't expand */
  .whatsapp-float a span { display: none !important; }

  /* Reduce hero/header vertical padding on small screens */
  .header-container { padding-top: 28px !important; padding-bottom: 28px !important; }
  header .headline h1, header .headline .text-3xl { font-size: 22px !important; }

  /* Ensure chat/back-to-top buttons don't overlap too tightly */
  .chat-toggle, .back-to-top { right: 12px !important; }
}

@media (max-width: 480px) {
  .header-container { padding-top: 20px !important; padding-bottom: 20px !important; }
}

/* Additional mobile polish: keep these strictly for small viewports */
@media (max-width: 768px) {
  /* Stack header content cleanly */
  .header-container { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-left: 16px; padding-right: 16px; }
  .header .headline { width: 100%; text-align: center; }
  .header .illustration { width: 100%; display:flex; justify-content:center; }
  .main-illustration img { max-width: 260px !important; width: 60% !important; height: auto !important; }

  /* Make header copy smaller for compact screens */
  .header .headline h1 { font-size: 20px !important; line-height: 1.2 !important; }
  .header .subtitle, .header .subtitle p { font-size: 14px !important; }

  /* Make action buttons stack and full width for easier tapping */
  .header-actions { flex-direction: column !important; gap: 10px !important; width: 100%; }
  .header-actions .btn-primary, .header-actions .btn-secondary { width: 100%; max-width: 420px; }

  /* Mobile nav: hide full menu by default (JS should toggle .open) */
  .mobile-menu-toggle { display: inline-flex !important; }
  .menu { display: none !important; width: 100%; }
  .menu.open { display:flex !important; flex-direction: column; gap: 8px; padding: 8px 0; }
  .menu .menu-item, .menu .menu-link { display:block; width:100%; padding:8px 12px; }
  .nav-actions { width: 100%; display:flex; gap:8px; flex-direction: row; justify-content: flex-end; }
  .nav-actions .btn { flex: 0 0 auto; }

  /* Floating controls: keep them non-overlapping and aligned right */
  .whatsapp-float { right: 12px !important; left: auto !important; bottom: calc(120px + env(safe-area-inset-bottom)) !important; width:48px !important; height:48px !important; padding:0 !important; }
  .whatsapp-float a span { display: none !important; }
  .chat-toggle { right: 12px !important; bottom: calc(64px + env(safe-area-inset-bottom)) !important; width:56px !important; height:56px !important; }
  .back-to-top { right: 12px !important; bottom: calc(12px + env(safe-area-inset-bottom)) !important; }

  /* Chat widget: responsive width and limited height to avoid covering whole page */
  .live-chat-widget { width: min(360px, calc(100% - 32px)) !important; right: 16px !important; left: auto !important; bottom: calc(78px + env(safe-area-inset-bottom)) !important; max-height: 72vh !important; }

  /* Improve quick-grid spacing on mobile */
  .quick-grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* Prevent any large fixed-width elements causing horizontal scroll */
  img, video, iframe { max-width: 100% !important; height: auto !important; }
  .container { padding-left: 16px; padding-right: 16px; }

  /* Increase tappable area for small buttons/links */
  .menu-link, .btn, .quick-card { min-height: 44px; }
}
  z-index: 1000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 350px;
}

/* ===== AUTH STYLES ===== */
.auth-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 600px;
}

.auth-form-container {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.auth-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 15px;
  color: var(--text-light);
  font-size: 1rem;
  z-index: 2;
}

.input-group input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-group input::placeholder {
  color: #adb5bd;
}

.toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 5px;
  z-index: 2;
}

.toggle-password:hover {
  color: var(--primary-color);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-light);
  position: relative;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  height: 18px;
  width: 18px;
  background-color: #f8f9fa;
  border: 2px solid #e1e5e9;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.forgot-password {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-auth {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-auth:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.auth-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e1e5e9;
}

.auth-divider span {
  background: white;
  padding: 0 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-social:hover {
  border-color: var(--primary-color);
  background: #f8f9fa;
}

.btn-social.google {
  color: #db4437;
  border-color: #db4437;
}

.btn-social.google:hover {
  background: #fceaea;
}

.btn-social.facebook {
  color: #4267b2;
  border-color: #4267b2;
}

.btn-social.facebook:hover {
  background: #e8f0fe;
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e1e5e9;
}

.auth-footer p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.auth-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-image {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
}

.image-content {
  color: white;
  text-align: center;
  max-width: 400px;
}

.image-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.image-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.feature-item i {
  color: #4ade80;
  font-size: 1.2rem;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.alert-error {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.alert-success {
  background: #d1fae5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.alert-warning {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fde68a;
}

.toast.show {
  transform: translateX(0);
}

/* ============================================
   Slide-in Order Panel (Navbar only)
   ============================================ */
.order-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9998;
}
.order-panel-overlay.show {
  opacity: 1;
  visibility: visible;
}

.order-slide-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(460px, 100%);
  max-width: 100%;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.order-slide-panel.open {
  transform: translateX(0);
}
.order-slide-panel .panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}
.order-slide-panel .panel-header h3 {
  margin: 0;
  font-size: 18px;
  color: var(--primary-color);
}
.order-slide-panel .panel-close {
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.order-slide-panel .panel-close:hover { color: var(--primary-color); }
.order-slide-panel .panel-body {
  padding: 20px;
  overflow: auto;
}
.panel-form {
  display: grid;
  gap: 16px;
}
.panel-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .panel-form .form-row { grid-template-columns: 1fr; }
}
.panel-form .form-group label {
  display: block;
  margin-bottom: 6px;
  color: #555;
  font-weight: 600;
  font-size: 13px;
}
.panel-form .form-group input,
.panel-form .form-group select,
.panel-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  background: #f8f9fa;
  transition: border-color 0.25s;
}
.panel-form .form-group input:focus,
.panel-form .form-group select:focus,
.panel-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(19,195,201,0.12);
}
.panel-form textarea { resize: vertical; }
.panel-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: .5px;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.panel-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(19,195,201,0.25);
}
.panel-submit i { font-size: 18px; }

/* Prevent background scroll when panel open */
body.order-panel-open { overflow: hidden; }

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--background-white);
  padding: 18px 0;
  box-shadow: 0 2px 20px var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  overflow: visible;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: visible;
}

.logo {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: bold;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.menu a,
.menu .menu-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.menu a:hover,
.menu .menu-link:hover {
  color: var(--primary-color);
}

.menu a::after,
.menu .menu-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.menu a:hover::after,
.menu .menu-link:hover::after {
  width: 100%;
}

.menu-item { 
  position: relative;
}

.menu-item .menu-link { 
  display: inline-flex; 
  align-items: center; 
  gap: 5px;
}

.menu-item .menu-link i { 
  font-size: 10px; 
  color: var(--primary-color);
  transition: transform 0.3s;
}

.menu-item:hover .menu-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  padding: 12px 8px;
  display: none;
  z-index: 1100;
}

.dropdown-menu.open {
  display: block !important;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
}
.dropdown-menu a:hover { background: #f4fffd; color: #007a74; }
/* Desktop: show on hover | Mobile: controlled by JavaScript .open class */
@media (min-width: 769px) {
  .menu-item:hover .dropdown-menu { display: block; }
}
.menu-item.open .dropdown-menu { display: block; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(19,195,201,0.3);
}

.btn-primary {
  background: var(--primary-color);
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.btn-large {
  padding: 14px 48px !important; /* bigger horizontally */
  font-size: 15px;
  letter-spacing: 0.5px;
  min-width: 160px;            /* ensure visibly wide */
  text-align: center;
}

@media (max-width: 768px) {
  .btn-large {
    width: auto;               /* keep natural width in navbar */
    padding: 12px 28px !important;
    min-width: 0;
  }
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(19,195,201,0.4);
}

/* User Profile Dropdown Styles */
#userProfile {
  position: relative;
}

#profileButton {
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

#profileDropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 8px;
  min-width: 220px;
  max-width: 280px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  z-index: 9999 !important;
  overflow: visible;
}

#profileDropdown.hidden {
  display: none;
}

/* Ensure dropdown doesn't overflow viewport at 100% zoom */
@media (max-width: 1400px) {
  .nav-container {
    padding: 0 20px;
  }
  
  #profileDropdown {
    right: 0;
    left: auto;
  }
}

@media (max-width: 1200px) {
  #profileDropdown {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  #profileDropdown {
    min-width: 180px;
    right: -10px;
  }
}

/* User Dropdown Menu */
.user-dropdown {
  position: relative;
}

.user-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #d5d5d5;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s;
  line-height: 1;
}

.user-btn:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(19,195,201,0.2);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.user-name {
  color: var(--text-color);
  font-weight: 600; /* match button weight */
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: 0.5px; /* match .btn-large tracking */
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .user-btn { padding: 6px 12px; gap: 8px; }
  .user-avatar { width: 28px; height: 28px; font-size: 12px; }
  .user-name { font-size: 15px; max-width: 100px; }
}

.dropdown-arrow {
  font-size: 10px;
  color: #999;
}

.user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  gap: 8px;
  background: #fff;
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  padding: 16px 16px 12px 16px;
  min-width: 240px;
  z-index: 1000;
  box-shadow: 0 6px 24px -4px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.08);
  animation: fadeSlideDown .18s ease;
  transform-origin: top right;
}

.user-info {
  padding: 10px 4px 12px 4px;
  border-bottom: 1px solid #f1f3f5;
  margin-bottom: 12px;
}

.user-email {
  font-size: 13px;
  color: #666;
  margin: 0 0 8px 0;
}

.user-tier {
  font-size: 12px;
  color: #555;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tier-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.tier-badge.bronze { background: #cd7f32; color: white; }
.tier-badge.silver { background: #c0c0c0; color: white; }
.tier-badge.gold { background: #ffd700; color: #333; }
.tier-badge.platinum { background: #e5e4e2; color: #333; }

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
  font-size: 14px;
}

.menu-item:hover {
  background: #f0f4f8;
  color: var(--primary-color);
}

.menu-item.text-danger {
  color: #dc3545;
}

.menu-item.text-danger:hover {
  background: #fff5f5;
  color: #dc3545;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-6px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .user-menu {
    right: 8px;
    width: calc(100vw - 16px);
    max-width: 340px;
  }
}

.btn-reservasi {
  background: var(--primary-color);
  color: var(--background-white);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

.btn-reservasi:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(19,195,201,0.3);
}

/* ===== HEADER ===== */
.header {
  padding: 80px 0 60px 0;
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%2313c3c9" fill-opacity="0.03" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.headline h1 {
  font-size: 48px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.highlight-boxes {
  margin-bottom: 40px;
}

.highlight-box {
  background: var(--background-white);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 16px 28px;
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 16px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.highlight-box:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
  box-shadow: 0 6px 25px rgba(19,195,201,0.15);
}

.highlight-box i {
  font-size: 20px;
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19,195,201,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19,195,201,0.3);
}

.illustration {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}

.main-illustration {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 120px;
  animation: float 6s ease-in-out infinite;
}

.floating-element {
  position: absolute;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  animation: float 4s ease-in-out infinite;
}

.floating-element.element-1 {
  width: 80px;
  height: 80px;
  top: 20px;
  left: -20px;
  font-size: 30px;
  animation-delay: 0s;
}

.floating-element.element-2 {
  width: 60px;
  height: 60px;
  top: 120px;
  right: -10px;
  font-size: 24px;
  animation-delay: 1s;
  display: flex !important;
}

.floating-element.element-3 {
  width: 70px;
  height: 70px;
  bottom: 60px;
  left: -30px;
  font-size: 28px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Small utility used by payment logos in index.html */
.animate-float { animation: float 3s ease-in-out infinite; }
.payment-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* ===== QUICK ACTIONS ===== */
.quick-actions {
  padding: 2.25rem 0;
  background: linear-gradient(180deg, rgba(0,109,119,0.03), transparent 40%);
}

.quick-actions .quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.quick-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-decoration: none;
  color: #0b6b68;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quick-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 12px 28px rgba(0,0,0,0.10); 
}

.quick-card .card-icon {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: #e6fffb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #007a74;
}

.quick-card .card-body h3 { 
  margin: 0 0 6px; 
  font-size: 1.05rem; 
}

.quick-card .card-body p { 
  margin: 0; 
  color: #4b6b6a; 
  font-size: 0.95rem; 
}

/* ===== TRACKING SECTION ===== */
.tracking-section {
  background: var(--background-white);
  padding: 80px 0;
}

.tracking-container {
  max-width: 800px;
  margin: 0 auto;
}

.tracking-form {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tracking-form input {
  flex: 1;
  min-width: 300px;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}

.tracking-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(19,195,201,0.1);
}

.btn-track {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-track:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(19,195,201,0.3);
}

.tracking-result {
  background: var(--background-light);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.result-placeholder i {
  font-size: 60px;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.result-placeholder p {
  color: var(--text-light);
  font-size: 16px;
}

.tracking-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 20px;
}

/* Garis horizontal di desktop */
.tracking-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--border-color);
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border: 4px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition);
}

.step.active .step-icon {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.step span {
  font-weight: 500;
  text-align: center;
  font-size: 14px;
}

/* ===== SERVICES SECTION ===== */
.layanan-section {
  padding: 80px 0;
  background: var(--background-white);
}

.service-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--background-light);
  border: 2px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.layanan-item {
  background: var(--background-white);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  cursor: pointer;
}

.layanan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(19,195,201,0.15);
}

.layanan-item i {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.layanan-item span {
  display: block;
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.layanan-item p {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

/* Service GIF (Cuci & Setrika) - controlled here instead of inline styles */
.service-gif {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto 12px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .service-gif {
    width: 90px;
    height: 90px;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: var(--gradient-light);
  padding: 80px 0;
}

.pricing-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.pricing-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table tr:hover {
  background: var(--background-light);
}

.btn-order {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

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

/* ===== LOYALTY SECTION ===== */
.loyalty-section {
  background: var(--background-white);
  padding: 80px 0;
}

.loyalty-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.loyalty-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.loyalty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.loyalty-card.bronze::before {
  background: linear-gradient(135deg, #cd7f32, #b08d57);
}

.loyalty-card.silver::before {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

.loyalty-card.gold::before {
  background: linear-gradient(135deg, #ffd700, #daa520);
}

.loyalty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.level {
  font-size: 40px;
  margin-bottom: 20px;
}

.loyalty-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.points {
  background: var(--background-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: inline-block;
}

.loyalty-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.loyalty-card li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.loyalty-card li i {
  width: 20px;
}

.loyalty-card li i.fa-check {
  color: #22c55e;
}

.loyalty-card li i.fa-times {
  color: #ef4444;
}

.card-footer {
  margin-top: auto;
}

.card-footer span {
  font-weight: 600;
  color: var(--text-light);
}

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

.btn-loyalty {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-loyalty:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19,195,201,0.3);
}

/* ===== OUTLET SECTION ===== */
.outlet-section {
  background: var(--gradient-light);
  padding: 80px 0;
}

.outlet-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.outlet-info {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.outlet-details h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 28px;
}

.outlet-address,
.outlet-hours,
.outlet-phone,
.outlet-whatsapp {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.outlet-address i,
.outlet-hours i,
.outlet-phone i,
.outlet-whatsapp i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.outlet-address span,
.outlet-hours span,
.outlet-phone span,
.outlet-whatsapp span {
  line-height: 1.5;
}

.outlet-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.outlet-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--background-light);
  border-radius: 10px;
  transition: var(--transition);
}

.outlet-features .feature:hover {
  background: var(--primary-light);
  transform: translateX(5px);
}

.outlet-features .feature i {
  color: var(--primary-color);
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.outlet-map {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 500px;
}

.outlet-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--background-white);
  padding: 80px 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 0 !important;
  }
  
  .about-img {
    min-width: auto;
  }
  
  .about-content {
    min-width: auto;
  }
}

.about-img {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.placeholder-image {
  width: 100%;
  height: 400px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(19,195,201,0.2);
}

.placeholder-image i {
  font-size: 80px;
  margin-bottom: 20px;
}

.about-experience {
  position: absolute;
  left: 20px;
  bottom: -30px;
  width: 180px;
  height: 180px;
  background: var(--background-light);
  border: 8px solid #d4f0f7;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(19,195,201,0.15);
}

.about-experience-big {
  font-size: 56px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 8px;
}

.about-experience-text {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.about-content {
  flex: 1;
  min-width: 320px;
}

.about-title {
  font-size: 38px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.feature i {
  color: #22c55e;
  font-size: 18px;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--gradient-light);
  padding: 80px 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.why-card {
  background: var(--background-white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(19,195,201,0.1);
  transition: var(--transition);
  border: 2px solid transparent;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(19,195,201,0.2);
  border-color: var(--primary-color);
}

.why-icon {
  font-size: 50px;
  margin-bottom: 25px;
}

.why-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* ===== DELIVERY & PAYMENT SECTION ===== */
.delivery-payment-section {
  background: var(--background-white);
  padding: 80px 0;
}

.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.delivery-text h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: left;
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.delivery-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.delivery-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-icon {
  font-size: 20px;
  width: 30px;
  text-align: center;
}

.delivery-image {
  text-align: center;
}

.payment-content {
  background: var(--gradient-light);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.payment-text h3 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.payment-text p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.payment-options h4 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--text-dark);
  font-size: 18px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  justify-items: center;
}

.payment-content {
  background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.payment-text {
  text-align: center;
  margin-bottom: 50px;
}

.payment-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.2;
}

.payment-text p {
  color: #6b7280;
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.payment-methods-2row {
  display: grid;
  grid-template-rows: auto auto;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.payment-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.payment-item {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  padding: 35px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 130px;
  height: 130px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.payment-item:hover {
  border-color: #13c3c9;
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(19, 195, 201, 0.2);
}

.payment-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-logo img {
  width: 110px;
  height: 55px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.payment-item:hover .payment-logo img {
  transform: scale(1.1);
  filter: brightness(1.08);
}

@media (max-width: 992px) {
  .payment-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .payment-content {
    padding: 35px 24px;
    border-radius: 20px;
  }
  
  .payment-text {
    margin-bottom: 35px;
  }
  
  .payment-text h3 {
    font-size: 24px;
  }
  
  .payment-text p {
    font-size: 15px;
  }
  
  .payment-methods-2row {
    gap: 20px;
  }
  
  .payment-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .payment-item {
    padding: 20px 14px;
    min-height: 100px;
  }
  
  .payment-logo {
    height: 55px;
    padding: 6px;
  }
  
  .payment-logo img {
    max-width: 80px;
    max-height: 45px;
  }
}

/* ===== CALCULATOR SECTION ===== */
.calculator-section {
  background: var(--gradient-light);
  padding: 80px 0;
}

.calculator {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-inputs .input-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
  display: block;
}

.calc-inputs select,
.calc-inputs input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  background: var(--background-light);
}

.calc-inputs select:focus,
.calc-inputs input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
}

.btn-calculate {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.btn-calculate:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(19,195,201,0.3);
}

.calc-result {
  background: var(--background-light);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.result-header {
  text-align: center;
  margin-bottom: 25px;
}

.result-header h3 {
  color: var(--primary-color);
  margin: 0;
}

.result-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.detail-item.total {
  font-weight: bold;
  font-size: 18px;
  color: var(--primary-color);
  border-bottom: none;
  padding-top: 10px;
  border-top: 2px solid var(--border-color);
}

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

.btn-order-now {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.btn-order-now:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(19,195,201,0.3);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--background-white);
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

.faq-question {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  background: var(--background-light);
}

.faq-question:hover {
  background: #e8f7f8;
}

.faq-toggle {
  font-size: 20px;
  font-weight: normal;
  transition: var(--transition);
  color: var(--primary-color);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  background: var(--gradient-light);
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-image {
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 60px;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-dark);
}

/* ===== CONTACT & RESERVATION SECTION ===== */
.contact-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  color: white;
  text-align: left;
}

.contact-text p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
}

.contact-item span {
  opacity: 0.9;
  font-size: 14px;
}

.btn-hubungi {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: var(--transition);
  border: 2px solid white;
}

.btn-hubungi:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-size: 24px;
}

/* Modern Form Header */
.form-header-modern {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid #e5e7eb;
}

.form-icon-header {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #0d9488);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(19, 195, 201, 0.3);
}

.form-icon-header i {
  font-size: 32px;
  color: white;
}

.form-header-modern h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.form-header-modern p {
  color: #6b7280;
  font-size: 15px;
}

/* Form Sections */
.form-section {
  background: #f9fafb;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
}

.section-label i {
  font-size: 18px;
}

/* Form Elements */
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row:last-child {
  margin-bottom: 0;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-group label i {
  color: var(--primary-color);
  font-size: 14px;
}

.input-group input,
.input-group select,
.input-group textarea {
  padding: 14px 18px;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(19,195,201,0.1);
  transform: translateY(-1px);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #9ca3af;
}

.input-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.full-width {
  flex: 100%;
}

/* Form Actions */
.form-actions {
  margin-top: 30px;
  text-align: center;
}

.btn-pickup {
  background: linear-gradient(135deg, var(--primary-color), #0d9488);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(19,195,201,0.3);
  width: 100%;
  justify-content: center;
  max-width: 400px;
}

.btn-pickup:hover {
  background: linear-gradient(135deg, #0d9488, var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(19,195,201,0.4);
}

.btn-pickup:active {
  transform: translateY(-1px);
}

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

.form-footer-note {
  margin-top: 15px;
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-footer-note i {
  color: var(--primary-color);
}

/* Responsive Form */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .form-section {
    padding: 20px 15px;
  }
  
  .form-header-modern h3 {
    font-size: 24px;
  }
  
  .form-icon-header {
    width: 60px;
    height: 60px;
  }
  
  .form-icon-header i {
    font-size: 28px;
  }
  
  .btn-pickup {
    max-width: 100%;
    font-size: 16px;
    padding: 16px 30px;
  }
}

/* ===== TESTIMONIAL SECTION ===== */
.testimoni-section {
  background: linear-gradient(to bottom, rgba(240, 255, 255, 0.9), rgba(255, 255, 255, 1));
  padding: 80px 0;
  text-align: center;
}

.testimoni-title {
  font-size: 36px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 50px;
}

.testimoni-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimoni-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: var(--transition);
  text-align: left;
}

.testimoni-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(19,195,201,0.15);
}

.rating {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 14px;
}

.testimoni-card p {
  font-style: italic;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimoni-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.user-info h4 {
  margin: 0 0 5px 0;
  color: var(--text-dark);
  font-size: 16px;
}

.user-info span {
  color: var(--text-light);
  font-size: 13px;
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews-section {
  background: var(--background-white);
  padding: 80px 0;
}

.google-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.reviewer-info strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.reviewer-info .rating {
  margin: 0;
  font-size: 12px;
}

.review-date {
  color: var(--text-light);
  font-size: 12px;
}

.review-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}

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

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-google-reviews:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(19,195,201,0.3);
}

/* ===== REVIEW SECTION ===== */
.review-section {
  background: var(--gradient-light);
  padding: 80px 0;
}

.review-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.rating-input {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 5px;
}

.star {
  font-size: 30px;
  color: #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: inline-block;
}

.star:hover {
  color: #ffc107;
  transform: scale(1.15);
}

.star.active {
  color: #ffc107 !important;
  transform: scale(1.1);
}

.rating-text {
  color: var(--text-light);
  font-size: 14px;
}

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

.review-form textarea,
.review-form input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
  background: var(--background-light);
}

.review-form textarea:focus,
.review-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
}

.btn-submit-review {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.btn-submit-review:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(19,195,201,0.3);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--background-white);
  padding: 80px 0;
  text-align: center;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

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

.trust-item span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== APP SECTION ===== */
.app-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  color: white;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-text h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 20px;
  text-align: left;
}

.app-text p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.app-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.app-features .feature i {
  font-size: 18px;
  opacity: 0.9;
}

.app-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.app-store,
.play-store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--text-dark);
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  min-width: 160px;
}

.app-store:hover,
.play-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.app-store i,
.play-store i {
  font-size: 24px;
}

.app-store div,
.play-store div {
  display: flex;
  flex-direction: column;
}

.app-store span,
.play-store span {
  font-size: 10px;
}

.app-store strong,
.play-store strong {
  font-size: 14px;
}

.app-image {
  text-align: center;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: white;
  border-radius: 40px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
}

.phone-screen {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--background-light);
  border-radius: 30px;
  overflow: hidden;
}

.app-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  text-align: center;
  font-weight: 600;
}

.app-content {
  flex: 1;
  padding: 20px;
}

.order-status {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.status-item.completed i {
  color: #22c55e;
}

.status-item.current i {
  color: var(--primary-color);
  animation: pulse 2s infinite;
}

.status-item i {
  font-size: 18px;
}

.status-item span {
  font-size: 14px;
  font-weight: 500;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0a7a7e 0%, #066a6e 100%);
  color: white;
  padding: 60px 0 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
  color: white;
}

.footer-brand h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #b5f2f7;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 400px;
  margin-bottom: 25px;
}

.footer-brand strong {
  color: #b5f2f7;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.link-group h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.link-group a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.link-group a:hover {
  color: #b5f2f7;
  transform: translateX(5px);
}

.footer .contact-info {
  gap: 12px;
}

.footer .contact-item {
  gap: 10px;
  font-size: 13px;
}

.footer .contact-item i {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-methods span {
  font-size: 14px;
  opacity: 0.8;
}

.payment-icons {
  display: flex;
  gap: 10px;
}

.payment-icons i {
  font-size: 24px;
  opacity: 0.8;
  transition: var(--transition);
}

.payment-icons i:hover {
  opacity: 1;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

/* ===== MODALS ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: var(--text-dark);
}

.close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 30px;
}

/* Loyalty Modal */
.loyalty-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--background-light);
  border-radius: 12px;
}

.current-level {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.current-level.gold {
  color: #ffd700;
}

.points-balance {
  text-align: right;
}

.points-balance strong {
  display: block;
  font-size: 24px;
  color: var(--primary-color);
}

.points-balance span {
  font-size: 12px;
  color: var(--text-light);
}

.loyalty-progress {
  margin-bottom: 25px;
}

.progress-bar {
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress {
  height: 100%;
  background: var(--primary-color);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
}

.rewards-available {
  margin-bottom: 25px;
}

.rewards-available h4 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.rewards-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reward-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: var(--background-light);
  border-radius: 8px;
}

.reward-item span {
  font-weight: 500;
}

.reward-item small {
  color: var(--text-light);
  font-size: 12px;
}

.reward-item button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.reward-item button:hover {
  background: var(--primary-dark);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .header-container,
  .nav-container {
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .headline h1 {
    font-size: 36px;
  }
  
  .highlight-box {
    width: auto;
    justify-content: center;
  }
  
  .header-actions {
    justify-content: center;
  }
  
  .delivery-content,
  .contact-content,
  .app-content,
  .outlet-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .calculator {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Responsive for navbar and profile at different zoom levels */
@media (max-width: 1600px) {
  .nav-container {
    max-width: 100%;
    padding: 0 30px;
  }
  
  .menu {
    gap: 20px;
  }
}

@media (max-width: 1400px) {
  .nav-container {
    padding: 0 20px;
    gap: 20px;
  }
  
  .menu {
    gap: 16px;
  }
  
  .menu a,
  .menu .menu-link {
    font-size: 13px;
  }
  
  .btn-outline,
  .btn-primary {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  #profileButton {
    padding: 8px 16px !important;
    font-size: 14px;
  }
  
  #profileButton span {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 1200px) {
  .nav-container {
    gap: 15px;
  }
  
  .menu {
    gap: 12px;
  }
  
  .logo {
    font-size: 20px;
  }
  
  #profileButton {
    padding: 6px 12px !important;
    font-size: 13px;
  }
  
  #profileDropdown {
    min-width: 180px;
  }
}

@media (max-width: 1024px) {
  .nav-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .menu {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
  }
  
  .nav-actions {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  section {
    padding: 60px 0;
  }
  
  h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .nav-container {
    padding: 0 15px;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .logo {
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    order: 3;
  }
  
  .menu a,
  .menu .menu-link {
    font-size: 12px;
    padding: 6px 10px;
  }
  
  .nav-actions {
    flex-shrink: 0;
    gap: 8px;
    order: 2;
  }
  
  .btn-outline,
  .btn-primary {
    padding: 6px 12px;
    font-size: 12px;
    white-space: nowrap;
  }
  
  #profileButton {
    padding: 6px 10px !important;
    font-size: 12px;
  }
  
  #profileButton span {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  #profileDropdown {
    right: 0;
    min-width: 180px;
    font-size: 13px;
  }
  
  #userProfile {
    flex-shrink: 0;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .layanan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  
  .about-experience {
    position: static;
    margin: 0 auto;
    width: 150px;
    height: 150px;
  }
  
  .about-experience-big {
    font-size: 42px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .app-features {
    grid-template-columns: 1fr;
  }
  
  .app-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .trust-logos {
    gap: 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .tracking-form {
    flex-direction: column;
  }
  
  .tracking-form input {
    min-width: auto;
  }
  
  .pricing-table {
    overflow-x: auto;
  }
  
  .pricing-table table {
    min-width: 600px;
  }

  /* Responsive Chat */
  .live-chat-widget {
    width: 90vw;
    height: 70vh;
    right: 5vw;
    bottom: 120px;
  }
  
  .chat-toggle {
    bottom: 90px;
    right: 20px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .headline h1 {
    font-size: 10.5px;
  }
  
  .user-btn {
    padding: 5px 10px;
    gap: 5px;
  }
  .user-avatar {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  
  .highlight-box {
    font-size: 14px;
    padding: 12px 20px;
  }
  
  .header-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .layanan-grid {
    grid-template-columns: 1fr;
  }
  
  .layanan-item {
    padding: 30px 15px;
  }
  
  .layanan-item i {
    font-size: 40px;
  }
  
  .service-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    text-align: center;
  }
  
  .loyalty-cards {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .payment-item {
    padding: 15px 10px;
    min-width: 80px;
  }
  
  .payment-item i {
    font-size: 30px;
  }
  
  .contact-text h2 {
    font-size: 32px;
  }
  
  .app-text h2 {
    font-size: 32px;
  }
  
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .whatsapp-float {
    left: 20px;
    bottom: 90px;
  }
  
  .whatsapp-float a span {
    display: none;
  }
  
  /* Mobile Chat */
  .live-chat-widget {
    width: 95vw;
    height: 60vh;
    right: 2.5vw;
    bottom: 100px;
  }
  
  .chat-toggle {
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 15px;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.hidden {
  display: none;
}

.fade-in {
  animation: fadeIn 0.8s ease-in;
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

/* ===== ANIMATED ELEMENTS ===== */

/* Header animations */
.header {
  animation: fadeInDown 0.8s ease-out;
}

.header .headline {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.header h1 {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.header .subtitle {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.highlight-boxes {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.highlight-box {
  animation: scaleIn 0.6s ease-out;
  transition: var(--transition);
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(19, 195, 201, 0.2);
}

.header-actions {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.header .illustration {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Floating elements animation */
.floating-element {
  animation: float 3s ease-in-out infinite;
  will-change: transform;
}

.floating-element.element-1 {
  animation-delay: 0s;
}

.floating-element.element-2 {
  animation-delay: 0.6s;
}

.floating-element.element-3 {
  animation-delay: 1.2s;
}

/* Quick actions cards */
.quick-card {
  animation: scaleIn 0.6s ease-out;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

.quick-card:nth-child(1) { animation-delay: 0.1s; }
.quick-card:nth-child(2) { animation-delay: 0.2s; }
.quick-card:nth-child(3) { animation-delay: 0.3s; }
.quick-card:nth-child(4) { animation-delay: 0.4s; }
.quick-card:nth-child(5) { animation-delay: 0.5s; }
.quick-card:nth-child(6) { animation-delay: 0.6s; }

.quick-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quick-card .card-icon {
  animation: pulse 2s ease-in-out infinite;
  will-change: opacity;
}

/* Section headings */
section h2 {
  animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Service items */
.layanan-item {
  animation: scaleIn 0.6s ease-out;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

.layanan-item:nth-child(1) { animation-delay: 0.1s; }
.layanan-item:nth-child(2) { animation-delay: 0.2s; }
.layanan-item:nth-child(3) { animation-delay: 0.3s; }
.layanan-item:nth-child(4) { animation-delay: 0.4s; }

.layanan-item:hover {
  transform: translate3d(0, -5px, 0) scale3d(1.05, 1.05, 1);
  box-shadow: 0 15px 40px rgba(19, 195, 201, 0.2);
}

/* Pricing table animation */
.pricing-table {
  animation: fadeInUp 0.8s ease-out;
}

.pricing-table tr {
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: background-color, transform;
}

.pricing-table tbody tr:hover {
  background-color: rgba(19, 195, 201, 0.05);
  transform: scale3d(1.01, 1.01, 1);
}

/* Cards and content boxes */
.card, .why-card, .blog-card {
  animation: fadeInUp 0.6s ease-out;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }

.why-card:hover {
  transform: translate3d(0, -10px, 0);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-icon {
  animation: bounce 2s ease-in-out infinite;
  will-change: transform;
}

/* Blog cards */
.blog-card {
  animation: fadeInUp 0.6s ease-out;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }

.blog-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonial cards */
.testimoni-card {
  animation: scaleIn 0.6s ease-out;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

.testimoni-card:nth-child(1) { animation-delay: 0.1s; }
.testimoni-card:nth-child(2) { animation-delay: 0.2s; }
.testimoni-card:nth-child(3) { animation-delay: 0.3s; }

.testimoni-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.rating i {
  animation: glow 2s ease-in-out infinite;
  color: #ffc107;
  will-change: box-shadow;
}

/* Button animations */
.btn-primary, .btn-secondary, .btn-track, .btn-order, .btn-hubungi {
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-track:hover,
.btn-order:hover,
.btn-hubungi:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 10px 25px rgba(19, 195, 201, 0.3);
}

.btn-primary:active,
.btn-secondary:active,
.btn-track:active,
.btn-order:active,
.btn-hubungi:active {
  transform: translate3d(0, -1px, 0);
}

/* Contact section animation */
.contact-section {
  animation: fadeInUp 0.8s ease-out;
}

.contact-text {
  animation: slideInLeft 0.8s ease-out;
}

.contact-form {
  animation: slideInRight 0.8s ease-out;
}

/* Payment logos animation */
.payment-item {
  animation: fadeInUp 0.6s ease-out;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.payment-item:nth-child(1) { animation-delay: 0.1s; }
.payment-item:nth-child(2) { animation-delay: 0.2s; }
.payment-item:nth-child(3) { animation-delay: 0.3s; }
.payment-item:nth-child(4) { animation-delay: 0.4s; }
.payment-item:nth-child(5) { animation-delay: 0.5s; }
.payment-item:nth-child(6) { animation-delay: 0.6s; }

.payment-item:hover {
  transform: scale3d(1.1, 1.1, 1);
}

/* Navigation animations */
.navbar {
  animation: fadeInDown 0.6s ease-out;
}

.menu-link {
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: color, transform;
}

.menu-link:hover {
  color: var(--primary-color);
  transform: translate3d(0, -2px, 0);
}

/* Back to top button animation */
.back-to-top {
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

.back-to-top:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 8px 25px rgba(19, 195, 201, 0.4);
}

/* Chat toggle animation */
.chat-toggle {
  animation: pulse 2s ease-in-out infinite;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

.chat-toggle:hover {
  transform: scale3d(1.1, 1.1, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.notification-badge {
  animation: bounce 1.5s ease-in-out infinite;
  will-change: transform;
}

/* WhatsApp button animation */
.whatsapp-float {
  animation: float 3s ease-in-out infinite;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

.whatsapp-float:hover {
  transform: translate3d(0, -25px, 0) scale3d(1.1, 1.1, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Form inputs animation */
input, select, textarea {
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

input:focus, 
select:focus, 
textarea:focus {
  transform: scale3d(1.01, 1.01, 1);
  box-shadow: 0 0 0 3px rgba(19, 195, 201, 0.1);
}

/* About section */
.about-img {
  animation: slideInLeft 0.8s ease-out;
}

.about-content {
  animation: slideInRight 0.8s ease-out;
}

.about-experience {
  animation: scaleIn 0.6s ease-out 0.3s both;
}

/* Outlet info animation */
.outlet-details {
  animation: fadeInUp 0.8s ease-out;
}

.outlet-map {
  animation: fadeInRight 0.8s ease-out;
}

/* Review cards */
.review-card {
  animation: fadeInUp 0.6s ease-out;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }

.review-card:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats animation */
.stat-item {
  animation: scaleIn 0.6s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
  animation: pulse 2s ease-in-out infinite;
  font-weight: bold;
}

/* Footer animation */
.footer {
  animation: fadeInUp 0.8s ease-out;
}

.footer-links a {
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== DYNAMIC STYLES FOR TRACKING ===== */
.tracking-loading,
.tracking-error,
.tracking-success {
  text-align: center;
  padding: 20px;
}

.tracking-loading i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.tracking-error i {
  font-size: 40px;
  color: #e74c3c;
  margin-bottom: 15px;
}

.tracking-success .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-badge.received { 
  background: #e3f2fd; 
  color: #1976d2; 
}
.status-badge.washing { 
  background: #fff3e0; 
  color: #f57c00; 
}
.status-badge.ironing { 
  background: #fce4ec; 
  color: #c2185b; 
}
.status-badge.delivery { 
  background: #e8f5e8; 
  color: #388e3c; 
}
.status-badge.completed { 
  background: #e8f5e8; 
  color: #388e3c; 
}

.order-details {
  display: grid;
  gap: 10px;
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
}

.detail-item .price {
  font-weight: 600;
  color: var(--primary-color);
}

.order-timeline {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.order-timeline h5 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  margin-top: 5px;
  flex-shrink: 0;
}

.timeline-item.received .timeline-marker { 
  background: #1976d2; 
}
.timeline-item.washing .timeline-marker { 
  background: #f57c00; 
}
.timeline-item.ironing .timeline-marker { 
  background: #c2185b; 
}
.timeline-item.delivery .timeline-marker { 
  background: #388e3c; 
}
.timeline-item.completed .timeline-marker { 
  background: #388e3c; 
}

.timeline-content strong {
  display: block;
  margin-bottom: 5px;
}

.timeline-content span {
  font-size: 12px;
  color: var(--text-light);
}

/* Quick Actions Responsive */
@media (max-width: 1100px) {
  .quick-actions .quick-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .quick-actions .quick-grid { grid-template-columns: 1fr; }
  .quick-card { padding: 0.95rem; }
  .quick-card .card-icon { width: 48px; height: 48px; font-size: 1.1rem; }
}

/* Accessibility */
.sr-only { 
  position: absolute !important; 
  height: 1px; 
  width: 1px; 
  overflow: hidden; 
  clip: rect(1px, 1px, 1px, 1px); 
  white-space: nowrap; 
}