/* ==========================================================================
   GHAZA ADVENTURE - Flawless Organic Wave Transitions & Premium UI
   ========================================================================== */

/* Design Tokens & Custom Color System */
:root {
  --primary: #1F5D42;           /* Forest Green */
  --primary-dark: #0F3625;      /* Deep Pine */
  --primary-light: #2E7D5B;     /* Emerald Leaf */
  --primary-soft: rgba(31, 93, 66, 0.08);
  
  --secondary: #3D6B35;         /* Olive Green */
  --accent: #F59E0B;            /* Warm Amber Accent */
  --accent-hover: #D97706;
  --accent-soft: rgba(245, 158, 11, 0.12);

  --bg-main: #FFFFFF;
  --bg-alt: #F8FAF7;            /* Organic Light Tint */
  --bg-dark: #0B1C14;           /* Deep Outdoor Dark */
  --bg-card: #FFFFFF;
  
  --text-dark: #0F172A;         /* Slate 900 */
  --text-muted: #475569;        /* Slate 600 */
  --text-light: #94A3B8;       /* Slate 400 */
  --text-white: #F8FAFC;

  --border-light: #E2E8F0;
  --border-focus: #1F5D42;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 20px -5px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 30px -10px rgba(31, 93, 66, 0.12), 0 8px 12px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);

  /* Organic Wave & Soft Curve System */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-organic: 28px 14px 28px 28px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.45rem 1.35rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(31, 93, 66, 0.18);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Seamless Wave Divider Container */
.section-wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 3;
}

.section-wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
}

/* Ambient Floating Background Blobs */
.ambient-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: linear-gradient(135deg, rgba(31, 93, 66, 0.1), rgba(245, 158, 11, 0.06));
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: floatBlob 14s ease-in-out infinite alternate;
}

@keyframes floatBlob {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(30px, -20px) rotate(10deg) scale(1.08); }
  100% { transform: translate(-20px, 30px) rotate(-10deg) scale(0.95); }
}

/* Badges & Buttons */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-green {
  background: rgba(31, 93, 66, 0.12);
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(31, 93, 66, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(31, 93, 66, 0.45);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-accent {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Header Navigation Bar
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(31, 93, 66, 0.3);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cart-btn-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  height: 42px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 2px solid #F59E0B;
  color: #92400E;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.22);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.cart-btn-trigger:hover {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-color: #D97706;
  color: #78350F;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.38);
}

.cart-btn-trigger svg {
  color: #D97706;
  transition: transform 0.3s ease;
}

.cart-btn-trigger:hover svg {
  transform: rotate(-8deg) scale(1.1);
}

.cart-btn-label {
  display: inline-block;
  white-space: nowrap;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.725rem;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: 0 3px 10px rgba(239, 68, 68, 0.45);
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  padding: 0.4rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 70px 0;
  background: linear-gradient(135deg, rgba(11, 28, 20, 0.82) 0%, rgba(15, 54, 37, 0.75) 100%), 
              url('../assets/images/hero_compressed.jpg') center/cover no-repeat;
  color: #FFFFFF;
  overflow: hidden;
}

/* Wavy Bottom Shape attached directly to Header Navbar */
.header-wave-bottom {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 10;
}

.header-wave-bottom svg {
  display: block;
  width: 100%;
  height: 28px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.header-wave-bottom path {
  fill: rgba(255, 255, 255, 0.95);
  transition: var(--transition);
}

.header.scrolled .header-wave-bottom path {
  fill: rgba(255, 255, 255, 0.98);
}

/* Radial Glow Behind Hero Content */
.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -10%;
  width: 55%;
  height: 65%;
  background: radial-gradient(circle, rgba(46, 125, 91, 0.4) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-left {
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #FBBF24;
  padding: 0.5rem 1.35rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(241, 245, 249, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-trust-strip {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-trust-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBBF24;
  flex-shrink: 0;
}

.hero-trust-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.3;
}

/* Glassmorphism Showcase Card */
.hero-showcase-card {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-organic);
  padding: 2.25rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 1.5rem;
}

.hero-card-title {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  background: rgba(34, 197, 94, 0.25);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #4ADE80;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.hero-quick-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-quick-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.hero-quick-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(6px);
}

.hero-quick-item-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-quick-item-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.hero-quick-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

.hero-quick-item-price {
  font-size: 0.85rem;
  color: #FBBF24;
  font-weight: 700;
}

.hero-card-cta {
  width: 100%;
}

/* ==========================================================================
   Tentang Kami (About Us) Section
   ========================================================================== */
.about {
  background: var(--bg-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-organic);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-owner-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: #FFFFFF;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 320px;
}

.about-owner-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-owner-logo {
  height: 48px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.about-owner-text h5 {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.about-owner-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-content {
  padding-left: 1rem;
}

.about-content-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat-card {
  background: var(--bg-alt);
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ==========================================================================
   Keunggulan Section - Bento Grid
   ========================================================================== */
.advantages {
  background: var(--bg-alt);
  padding: 3.25rem 0;
}

.advantages .container {
  max-width: 1040px;
}

.advantages .section-header {
  margin-bottom: 1.75rem;
}

.advantages .section-title {
  font-size: 1.85rem;
}

.advantages .section-desc {
  font-size: 0.925rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.advantages-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.bento-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.bento-card.bento-featured {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #FFFFFF;
  border: none;
}

.bento-card.bento-featured h3,
.bento-card.bento-featured p {
  color: #FFFFFF;
}

.bento-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: var(--transition);
}

.bento-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.bento-featured .bento-icon-wrapper {
  background: rgba(255, 255, 255, 0.15);
  color: #FBBF24;
}

.bento-card:hover .bento-icon-wrapper {
  transform: scale(1.08) rotate(-3deg);
}

.bento-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.bento-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.bento-featured .bento-desc {
  color: rgba(241, 245, 249, 0.9);
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.85rem;
}

.bento-featured .bento-tag {
  color: #FBBF24;
}

/* ==========================================================================
   Katalog Produk Section
   ========================================================================== */
.products {
  background: var(--bg-main);
}

.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.category-tabs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.45rem;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}

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

.tab-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(31, 93, 66, 0.28);
}

.search-box-wrapper {
  position: relative;
  width: 320px;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-alt);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 93, 66, 0.12);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-organic);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(31, 93, 66, 0.3);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
  background: #F1F5F9;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-container img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.badge-available {
  background: rgba(31, 93, 66, 0.88);
  color: #FFFFFF;
}

.product-rating {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-content {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.product-name {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.35;
}

.product-price-tag {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.price-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.price-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-card-actions {
  display: flex;
  gap: 0.65rem;
}

.product-card-actions .btn {
  flex: 1;
}

/* ==========================================================================
   Cara Penyewaan Section
   ========================================================================== */
.rental-process {
  background: var(--bg-alt);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-card {
  background: #FFFFFF;
  border-radius: var(--radius-organic);
  padding: 2rem 1.25rem;
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(31, 93, 66, 0.35);
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.75rem auto 1.25rem auto;
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Form Booking & Ringkasan Booking Section
   ========================================================================== */
.booking-section {
  background: var(--bg-main);
}

.booking-container-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.booking-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-organic);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-block-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-soft);
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.form-block-header h4 {
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.required-star {
  color: #EF4444;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-alt);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 93, 66, 0.12);
}

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

.checkbox-agreement-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.checkbox-agreement-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.checkbox-agreement-label a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* Digital Receipt Ticket Summary Card */
.booking-summary-card {
  background: #FFFFFF;
  border-radius: var(--radius-organic);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 2px dashed var(--border-light);
  margin-bottom: 1.5rem;
}

.summary-header h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.summary-row span {
  color: var(--text-muted);
}

.summary-products-box {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin: 1rem 0;
  max-height: 220px;
  overflow-y: auto;
}

.summary-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border-light);
}

.summary-product-item:last-child {
  border-bottom: none;
}

.summary-check-icon {
  color: var(--primary);
  font-weight: bold;
  margin-right: 4px;
}

.empty-summary-text {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  padding: 1rem 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
  background: var(--bg-alt);
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-header {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}

.faq-icon-toggle {
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

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

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-body p {
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

/* ==========================================================================
   Basecamp & Kontak Section
   ========================================================================== */
.contact {
  background: var(--bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-info-card {
  background: #FFFFFF;
  border-radius: var(--radius-organic);
  padding: 2.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.contact-detail-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-detail-text a {
  color: var(--primary);
  font-weight: 600;
}

.operating-hours-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803D;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
}

.status-dot-closed {
  background: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3);
}

.map-container {
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius-organic);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 420px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  color: #94A3B8;
  padding: 5rem 0 2.5rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94A3B8;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 6px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: #64748B;
}

/* ==========================================================================
   Modals & Drawers
   ========================================================================== */
.modal-backdrop, .drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.open, .drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.95);
  width: 90%;
  max-width: 600px;
  background: #FFFFFF;
  border-radius: var(--radius-organic);
  padding: 2.25rem;
  z-index: 1100;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

.modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.modal-header-product {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.modal-product-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.calculator-box {
  background: var(--bg-alt);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-top: 1rem;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.25rem 0;
}

.terms-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.terms-icon {
  color: var(--primary);
  margin-top: 2px;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1100;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y. auto;
}

.empty-cart-view {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-light);
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--border-light);
}

.cart-item-info h5 {
  font-size: 0.95rem;
}

.cart-item-info p {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-qty-num {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: #EF4444;
  padding: 0.2rem 0.5rem;
  font-size: 0.9rem;
}

.drawer-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-alt);
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

/* Floating WhatsApp Action Button */
.float-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.float-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Responsive Breakpoints Optimization across All Devices
   ========================================================================== */

/* Large Laptops & Desktops (1025px to 1200px) */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
}

/* Tablets & Medium Screens (769px to 1024px) */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .booking-container-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .advantages-bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-card.bento-featured {
    grid-column: span 1;
  }

  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices & Small Tablets (< 768px) - Space-Optimized Mobile Experience */
@media (max-width: 768px) {
  .section-padding {
    padding: 2.25rem 0;
  }

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

  .section-subtitle {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .section-title {
    font-size: 1.55rem;
    margin-bottom: 0.35rem;
  }

  .section-desc {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .section-wave-divider svg {
    height: 28px;
  }

  .header-container {
    height: 64px;
    padding: 0 1rem;
  }

  .cart-btn-trigger {
    padding: 0.35rem 0.65rem;
    height: 36px;
    font-size: 0.775rem;
  }

  .cart-btn-label {
    display: inline-block;
    font-size: 0.775rem;
  }

  .logo {
    font-size: 1.05rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .header-wave-bottom {
    top: 63px;
  }

  .header-wave-bottom svg {
    height: 20px;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-menu.open {
    clip-path: circle(140% at 100% 0);
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero {
    padding: 95px 0 45px 0;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-title {
    font-size: 1.85rem;
    margin-bottom: 0.85rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
  }

  .hero-trust-strip {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 0.5rem;
    padding-top: 1.25rem;
  }

  .hero-trust-item {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }

  .hero-trust-icon {
    width: 34px;
    height: 34px;
    margin: 0 auto;
  }

  .hero-trust-text {
    font-size: 0.725rem;
    line-height: 1.2;
  }

  /* About Section Compact Mobile Layout */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .stat-card {
    padding: 0.75rem 0.4rem;
    text-align: center;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.675rem;
    margin-top: 0.15rem;
  }

  /* Keunggulan Section Compact Mobile Layout */
  .advantages-bento-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .bento-card {
    padding: 1.15rem 1rem;
    border-radius: 14px;
  }

  .bento-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-bottom: 0.65rem;
  }

  .bento-title {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }

  .bento-desc {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .bento-tag {
    margin-top: 0.65rem;
    font-size: 0.725rem;
  }

  /* Products 2-Column Grid Side-by-Side on Mobile */
  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .search-box-wrapper {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-image-container {
    height: 115px;
  }

  .product-badge {
    top: 0.35rem;
    left: 0.35rem;
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }

  .product-rating {
    bottom: 0.35rem;
    right: 0.35rem;
    font-size: 0.65rem;
    padding: 0.15rem 0.35rem;
  }

  .product-content {
    padding: 0.6rem 0.55rem;
  }

  .product-category-tag {
    font-size: 0.625rem;
    margin-bottom: 0.15rem;
  }

  .product-name {
    font-size: 0.825rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.1em;
  }

  .product-price-tag {
    padding-top: 0.35rem;
    margin-bottom: 0.45rem;
    gap: 0.15rem;
  }

  .price-val {
    font-size: 0.9rem;
  }

  .price-unit {
    font-size: 0.675rem;
  }

  .product-card-actions {
    gap: 0.3rem;
  }

  .product-card-actions .btn {
    padding: 0.35rem 0.3rem;
    font-size: 0.7rem;
    height: 30px;
  }

  .product-card-actions .quick-add-cart-btn {
    width: 30px;
    padding: 0;
    flex-shrink: 0;
  }

  /* 5 Langkah Penyewaan Kilat Compact Layout on Mobile */
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .step-card {
    padding: 1.25rem 0.75rem 0.85rem 0.75rem;
    border-radius: 12px;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.725rem;
    top: -14px;
  }

  .step-icon {
    width: 36px;
    height: 36px;
    margin: 0.25rem auto 0.5rem auto;
  }

  .step-icon svg {
    width: 18px;
    height: 18px;
  }

  .step-title {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }

  .step-desc {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  /* Booking Section & Form Compact Layout */
  .booking-container-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .booking-form-card, .booking-summary-card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .form-group {
    margin-bottom: 0.75rem;
  }

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

  .float-wa-btn {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }

  .modal {
    width: 95%;
    padding: 1.15rem;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
