/* Enhanced UMKM Coaching Home Page Styles */

/* Base Styles */
:root {
  --primary-blue: #0058ab;
  --secondary-blue: #0070e0;
  --accent-green: #4CAF50;
  --accent-orange: #ff6b35;
  --text-dark: #1e3c72;
  --text-gray: #666;
  --background-light: #f8f9fa;
  --shadow-light: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-medium: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-heavy: 0 20px 60px rgba(0,0,0,0.15);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0;
}

/* Hero Section Enhancements */
.tp-hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.tp-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,88,171,0.8), rgba(0,112,224,0.6)), var(--bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.8s ease-in-out;
}

.tp-slide.active {
  opacity: 1;
  transform: scale(1);
}

.tp-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  animation: heroContentSlide 1s ease-out 0.3s both;
}

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

.tp-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tp-hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn {
  background: linear-gradient(135deg, var(--accent-green), #45a049);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

/* Promo Section with Tabs */
.promo-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--accent-orange), #f7931e);
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="1"/></svg>');
  background-size: 50px 50px;
}

.promo-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.promo-header {
  text-align: center;
  margin-bottom: 60px;
}

.promo-badge {
  display: inline-block;
  background: white;
  color: var(--accent-orange);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-medium);
  animation: badgeBounce 2s ease-in-out infinite;
}

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

.promo-title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.promo-subtitle {
  color: #fff3cd;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 20px 0;
}

/* Tab System for Content */
.content-tabs {
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-heavy);
  margin-bottom: 40px;
}

.tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  background: var(--background-light);
  padding: 8px;
  border-radius: 50px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.tab-btn.active {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,88,171,0.3);
}

.tab-content {
  display: none;
  animation: tabSlideIn 0.4s ease-out;
}

.tab-content.active {
  display: block;
}

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

.tab-content h4 {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
}

.feature-list li::before {
  content: '✓';
  background: var(--accent-green);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Enhanced Booking Modal */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.3s ease-out;
}

.booking-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  margin: 2% auto;
  padding: 0;
  border: none;
  border-radius: 24px;
  width: 95%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: white;
  padding: 30px;
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: rgba(255,255,255,0.8);
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
  z-index: 3;
}

.close-modal:hover {
  color: white;
  transform: scale(1.1);
}

.modal-body {
  padding: 40px;
  max-height: calc(90vh - 140px);
  overflow-y: auto;
}

/* Step Wizard */
.booking-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}

.booking-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.step {
  background: var(--background-light);
  border: 3px solid #e0e0e0;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--text-gray);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  font-size: 16px;
}

.step.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,88,171,0.3);
}

.step.completed {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: white;
}

.step-content {
  display: none;
  animation: stepFadeIn 0.4s ease-out;
}

.step-content.active {
  display: block;
}

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

/* Form Styling */
.form-group {
  margin-bottom: 24px;
}

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

.form-control {
  width: 100%;
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  transition: var(--transition);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0,88,171,0.1);
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.product-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card .title {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 12px;
}

.product-card .desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-card .harga-info {
  margin: 12px 0;
  font-weight: bold;
  color: #0070e0;
  font-size: 16px;
}

.product-card .harga-info del {
  color: #888;
  margin-right: 10px;
}

.product-card .bonus {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  font-size: 13px;
  color: #555;
}

.product-card .bonus li {
  margin-bottom: 4px;
  padding-left: 16px;
  position: relative;
}

.product-card .bonus li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

.product-card .kuota-info {
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.kuota-info.low-stock {
  background: #ffebee;
  color: #d32f2f;
}

.kuota-info.medium-stock {
  background: #fff3e0;
  color: #ff9800;
}

.kuota-info.high-stock {
  background: #e8f5e8;
  color: #4CAF50;
}

.badge {
  background: #0058ab;
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  margin-bottom: 8px;
  display: inline-block;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  transform: scaleX(0);
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card.selected {
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.product-card.selected::before {
  transform: scaleX(1);
}

.check-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-green);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  animation: checkBounce 0.3s ease-out;
}

@keyframes checkBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Time Selection */
.jam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.jam-grid button {
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.jam-grid button:hover {
  border-color: var(--primary-blue);
  background: var(--background-light);
}

.jam-grid button.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,88,171,0.3);
}

/* Action Buttons */
.book-now-btn {
  background: linear-gradient(135deg, var(--accent-green), #45a049);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  position: relative;
  overflow: hidden;
}

.book-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.book-now-btn:hover::before {
  left: 100%;
}

.book-now-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Price Display */
#hargaTotal {
  background: var(--background-light);
  padding: 20px;
  border-radius: 12px;
  text-align: right;
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 24px;
  border: 2px dashed var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
  .booking-modal-content {
    margin: 5% auto;
    width: 95%;
    max-height: 85vh;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .tab-nav {
    flex-direction: column;
    gap: 8px;
  }
  
  .tab-btn {
    text-align: center;
  }
  
  .booking-steps {
    margin-bottom: 30px;
  }
  
  .booking-steps::before {
    display: none;
  }
  
  .jam-grid {
    grid-template-columns: 1fr;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .promo-section {
    padding: 60px 20px;
  }
  
  .content-tabs {
    padding: 20px;
  }
  
  .step {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .modal-header {
    padding: 20px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
  
  .close-modal {
    top: 15px;
    right: 20px;
    font-size: 28px;
  }
}

/* Testimoni Styles */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimoni-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: box-shadow 0.2s;
}

.testimoni-card:hover {
  box-shadow: 0 8px 32px rgba(0,88,171,0.08);
}

.testimoni-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.testimoni-profile img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #0058ab;
  background: #f3f3f3;
}

.testimoni-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e3c72;
}

.testimoni-role {
  font-size: 0.97rem;
  color: #0058ab;
  font-weight: 500;
}

.testimoni-quote {
  font-size: 1rem;
  color: #444;
  font-style: italic;
  line-height: 1.7;
  position: relative;
  padding-left: 18px;
}

.testimoni-quote:before {
  content: "\201C";
  font-size: 2.5rem;
  color: #0058ab;
  position: absolute;
  left: 0;
  top: -12px;
  line-height: 1;
}

/* Additional Animations */
.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

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

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Booking Section Styles */
.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,88,171,0.1);
  border: 1px solid #e0e8f0;
  overflow: hidden;
}

.booking-form {
  padding: 40px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #1e3c72;
  font-family: 'Inter', sans-serif;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e8f0;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus {
  outline: none;
  border-color: #0058ab;
  box-shadow: 0 0 0 3px rgba(0,88,171,0.1);
}

.jam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.jam-grid button {
  padding: 14px 20px;
  border: 2px solid #e0e8f0;
  border-radius: 12px;
  background: #fff;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.jam-grid button:hover {
  border-color: #0058ab;
  background: #f8faff;
  color: #0058ab;
}

.jam-grid button.active {
  background: #0058ab;
  border-color: #0058ab;
  color: white;
  box-shadow: 0 4px 12px rgba(0,88,171,0.3);
}

/* Product Cards Styles */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.product-card {
  background: #fff;
  border: 2px solid #e0e8f0;
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card:hover {
  border-color: #0058ab;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,88,171,0.15);
}

.product-card.selected {
  border-color: #03ac0e;
  background: #f8fff9;
  box-shadow: 0 8px 24px rgba(3,172,14,0.2);
}

.product-card .badge {
  position: absolute;
  top: -8px;
  left: 16px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-card .best-seller {
  position: absolute;
  top: -8px;
  right: 16px;
  background: #ff4444;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-card .title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3c72;
  margin: 16px 0 8px 0;
}

.product-card .harga-info {
  margin: 12px 0;
}

.product-card .harga-info del {
  color: #999;
  font-size: 14px;
}

.product-card .harga-info strong {
  color: #03ac0e;
  font-size: 18px;
  margin-left: 8px;
}

.product-card .desc {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 12px 0;
}

.product-card .kuota-info {
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0;
}

.product-card .kuota-info.low {
  color: #ff4444;
}

.product-card .kuota-info.medium {
  color: #ff9800;
}

.product-card .kuota-info.high {
  color: #03ac0e;
}

.product-card .bonus {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.product-card .bonus li {
  padding: 4px 0;
  color: #666;
  font-size: 14px;
}

.product-card .bonus li:before {
  content: "✓ ";
  color: #03ac0e;
  font-weight: bold;
  margin-right: 6px;
}

.product-card .check-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #03ac0e;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.read-more-btn {
  background: none;
  border: none;
  color: #0058ab;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 8px;
  text-decoration: underline;
  display: block;
}

.read-more-btn:hover {
  color: #03ac0e;
}

/* Sticky Bottom Button */
.sticky-bottom-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e0e8f0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 16px 20px;
  display: none;
  transform: translateY(0);
  transition: transform 0.3s ease-out;
}

.sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

.sticky-price {
  font-size: 18px;
  font-weight: 700;
  color: #1e3c72;
}

.btn-booking-sticky {
  background: linear-gradient(135deg, #03ac0e, #028a0c);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(3,172,14,0.3);
}

.btn-booking-sticky:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(3,172,14,0.4);
}

/* Mobile/Desktop visibility helpers */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.promo-section {
  background: linear-gradient(135deg, #03ac0e, #0058ab);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 24px 0;
}

.form-actions {
  text-align: center;
  margin-top: 32px;
}

.btn-booking {
  background: linear-gradient(135deg, #03ac0e, #028a0c);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(3,172,14,0.3);
}

.btn-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(3,172,14,0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .booking-form {
    padding: 24px;
    padding-bottom: 80px; /* Space for sticky button */
  }
  
  .jam-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .products-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .product-card {
    padding: 20px;
  }
  
  .product-card .desc {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .product-card .title {
    font-size: 18px;
  }
  
  .promo-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .mobile-only {
    display: block;
  }
  
  .desktop-only {
    display: none;
  }
  
  .sticky-bottom-btn {
    display: block;
  }
  
  .promo-section {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .jam-grid {
    grid-template-columns: 1fr;
  }
  
  .jam-grid button {
    padding: 12px 16px;
    font-size: 14px;
  }
}