/* ==========================================================================
   GREEN FLORIST - DESIGN SYSTEM & STYLESHEET
   Domain: green-florist.com
   Theme: Modern Botanical Luxury (Forest Green, Emerald, Warm Gold & Soft Cream)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette from Official Logo (#154A27) */
  --brand-green: #154A27;
  --brand-green-dark: #092413;
  --bg-dark: #061B0C;
  --bg-forest: #154A27;
  --bg-emerald: #0E361C;
  --bg-cream: #F9F6F0;
  --bg-white: #FFFFFF;

  --accent-gold: #D4AF37;
  --accent-gold-hover: #E5C158;
  --accent-gold-soft: rgba(212, 175, 55, 0.15);
  
  --emerald-light: #154A27;
  --emerald-accent: #1D6B39;
  --emerald-soft: rgba(21, 74, 39, 0.15);

  /* Typography Colors */
  --text-light-primary: #FFFFFF;
  --text-light-muted: #B8C7C0;
  --text-dark-primary: #111D18;
  --text-dark-secondary: #3D4E46;
  --text-dark-muted: #6B7C74;

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(7, 23, 18, 0.12);
  --shadow-lg: 0 16px 40px rgba(7, 23, 18, 0.2);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  
  --glass-bg-dark: rgba(15, 44, 35, 0.85);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(212, 175, 55, 0.2);
  --glass-border-light: 1px solid rgba(15, 44, 35, 0.08);

  /* Transitions & Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Typography Helpers */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #8C6F12;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag-dark {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border-color: rgba(212, 175, 55, 0.3);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-dark-primary);
  margin-bottom: 1rem;
}

.section-title-dark {
  color: var(--text-light-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.section-desc-dark {
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   3. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.6rem 0;
  background: rgba(6, 27, 12, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-normal);
}

.header.scrolled {
  padding: 0.45rem 0;
  background: rgba(6, 27, 12, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 24px;
  max-height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition-normal);
}

.brand-logo-img:hover {
  transform: scale(1.04);
}

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

.nav-link {
  color: var(--text-light-muted);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: var(--transition-fast);
  position: relative;
}

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

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

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

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(82, 183, 136, 0.15);
  border: 1px solid rgba(82, 183, 136, 0.3);
  border-radius: var(--radius-full);
  color: var(--emerald-accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

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

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-light-primary);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #B59325);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-gold-hover), var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light-primary);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 70% 20%, #174D3D 0%, var(--bg-forest) 50%, var(--bg-dark) 100%);
  padding: 8.2rem 0 5rem 0;
  color: var(--text-light-primary);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

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

.hero-headline {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-headline span {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-light-primary);
  font-weight: 600;
}

.trust-text p {
  font-size: 0.78rem;
  color: var(--text-light-muted);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(16px);
  border: var(--glass-border);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.floating-badge-icon {
  width: 45px;
  height: 45px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 1.3rem;
}

.floating-badge-text h5 {
  font-size: 0.95rem;
  color: var(--text-light-primary);
  font-weight: 700;
}

/* Hero Category Image Slider (Rounded Image Cards without description) */
.hero-category-slider-wrapper {
  margin: 1.5rem 0 2rem 0;
}

.hero-category-slider {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero-category-slider::-webkit-scrollbar {
  display: none;
}

.hero-img-cat-card {
  flex: 0 0 auto;
  width: 145px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  scroll-snap-align: start;
  transition: var(--transition-normal);
}

.hero-img-cat-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
}

.hero-cat-thumb {
  position: relative;
  width: 100%;
  height: 110px;
  overflow: hidden;
  background: #071712;
}

.hero-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.hero-img-cat-card:hover .hero-cat-thumb img {
  transform: scale(1.08);
}

.hero-cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0.4rem;
  background: linear-gradient(to top, rgba(7, 23, 18, 0.95) 0%, rgba(7, 23, 18, 0.4) 60%, transparent 100%);
  text-align: center;
}

.hero-cat-overlay span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-body);
  letter-spacing: 0.2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  display: block;
}

/* --------------------------------------------------------------------------
   6. CATEGORIES & CATALOG SECTION
   -------------------------------------------------------------------------- */
.catalog-section {
  padding: 6rem 0;
  background: var(--bg-cream);
}

.category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cat-tab {
  padding: 0.7rem 1.4rem;
  background: var(--bg-white);
  border: var(--glass-border-light);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.cat-tab:hover, .cat-tab.active {
  background: var(--bg-forest);
  color: var(--accent-gold);
  border-color: var(--bg-forest);
  box-shadow: var(--shadow-md);
}

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

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--glass-border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-thumb {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #EAE6DE;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.8rem;
  background: rgba(15, 44, 35, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  color: var(--text-dark-primary);
  margin-bottom: 0.5rem;
}

.product-spec {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

.product-spec span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-action-row {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   7. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.features-section {
  padding: 6rem 0;
  background: var(--bg-forest);
  color: var(--text-light-primary);
  position: relative;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text-light-primary);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. HOW TO ORDER
   -------------------------------------------------------------------------- */
.process-section {
  padding: 6rem 0;
  background: var(--bg-cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.process-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: var(--glass-border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  background: var(--bg-forest);
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.process-card h3 {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.process-card p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   9. TESTIMONIALS & FAQ
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 6rem 0;
  background: #F1ECE3;
}

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

.testi-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: var(--glass-border-light);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testi-text {
  font-style: italic;
  color: var(--text-dark-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.avatar-placeholder {
  width: 42px;
  height: 42px;
  background: var(--bg-forest);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.user-info h5 {
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.user-info p {
  font-size: 0.78rem;
  color: var(--text-dark-muted);
}

/* FAQ */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-cream);
}

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

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: var(--glass-border-light);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark-primary);
  background: none;
}

.faq-question i {
  color: var(--bg-forest);
  transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.8rem;
  color: var(--text-dark-secondary);
  font-size: 0.95rem;
}

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

/* --------------------------------------------------------------------------
   10. CTA BANNER & FOOTER
   -------------------------------------------------------------------------- */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-forest));
  color: var(--text-light-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: var(--glass-border);
}

.cta-banner h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.2rem auto;
}

.footer {
  background: #040E0B;
  color: var(--text-light-muted);
  padding: 2.8rem 0 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  height: 32px;
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   LIVE ORDER TOAST NOTIFICATION (10 TRANSAKSI BERGANTIAN - ULTRA COMPACT)
   -------------------------------------------------------------------------- */
.order-toast {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem 0.5rem 0.65rem;
  background: rgba(7, 23, 18, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  max-width: 250px;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.order-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.25), rgba(82, 183, 136, 0.08));
  border: 1px solid rgba(82, 183, 136, 0.4);
  color: var(--emerald-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.toast-content {
  flex-grow: 1;
}

.toast-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light-primary);
  line-height: 1.15;
}

.toast-desc {
  font-size: 0.7rem;
  color: var(--text-light-muted);
  margin-top: 0.1rem;
  line-height: 1.25;
}

.toast-desc strong {
  color: var(--accent-gold);
  font-weight: 600;
}

.toast-time {
  font-size: 0.62rem;
  color: #8BA195;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* --------------------------------------------------------------------------
   10. FLOATING WHATSAPP BUTTON (CHAT CS NAIK TURUN)
   -------------------------------------------------------------------------- */
.floating-wa-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
  animation: waFloatBounce 2.5s ease-in-out infinite;
  text-decoration: none;
}

.floating-wa-btn:hover {
  transform: scale(1.06) translateY(-3px);
  background: linear-gradient(135deg, #20BA5A, #0F796C);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
  animation-play-state: paused;
}

.floating-wa-icon {
  width: 28px;
  height: 28px;
  background: #FFFFFF;
  color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.floating-wa-text {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

@keyframes waFloatBounce {
  0% {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.5);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  }
}

/* --------------------------------------------------------------------------
   11. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-image-card img {
    height: 380px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal scroll overflow */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    width: 92%;
    padding: 0;
  }

  /* Compact Mobile Header */
  .header {
    padding: 0.5rem 0;
  }

  .header.scrolled {
    padding: 0.4rem 0;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light-primary);
    font-size: 1.1rem;
    cursor: pointer;
  }

  /* Mobile Dropdown Navigation */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 23, 18, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .floating-wa-btn {
    bottom: 14px;
    right: 14px;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  }

  .floating-wa-icon {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }

  .floating-wa-text {
    font-size: 0.75rem;
  }

  .order-toast {
    bottom: 12px;
    left: 12px;
    max-width: 215px;
    padding: 0.45rem 0.75rem 0.45rem 0.55rem;
    gap: 0.5rem;
  }

  .toast-icon {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }

  .toast-title {
    font-size: 0.7rem;
  }

  .toast-desc {
    font-size: 0.65rem;
  }

  .toast-time {
    font-size: 0.58rem;
  }

  /* Hero Section Mobile Fixes - Clean Pixel Perfect */
  .hero {
    padding: 4.5rem 0 2.5rem 0;
    overflow: hidden;
    text-align: center;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 1.5rem;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0 0.5rem;
  }

  .hero-content .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 95%;
    margin: 0 auto 0.75rem auto;
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    box-sizing: border-box;
  }

  .brand-logo-img {
    height: 23px;
    max-height: 23px;
  }

  .footer-logo-img {
    height: 28px;
    max-height: 28px;
  }

  .hero-headline {
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
    line-height: 1.3;
    margin: 0 auto 0.8rem auto;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
  }

  .hero-headline span {
    display: inline;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-subheadline {
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0 auto 1.25rem auto;
    text-align: center;
    max-width: 95%;
    color: rgba(255, 255, 255, 0.82);
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 1.4rem auto;
    gap: 0.65rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    box-sizing: border-box;
  }

  /* Hero Category Slider Mobile */
  .hero-category-slider-wrapper {
    margin: 1rem 0 1.4rem 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .hero-category-slider {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.2rem 0 0.5rem 0;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-img-cat-card {
    flex: 0 0 115px;
    scroll-snap-align: start;
    border-radius: 12px;
    width: 115px;
  }

  .hero-cat-thumb {
    height: 85px;
  }

  .hero-cat-overlay span {
    font-size: 0.72rem;
  }

  .trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    width: 100%;
    max-width: 250px;
  }

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

  .hero-image-wrapper {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-image-card {
    width: 100%;
    border-radius: 14px;
  }

  .hero-image-card img {
    height: 190px;
    width: 100%;
    object-fit: cover;
  }

  .floating-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin: 0.6rem auto 0 auto;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    padding: 0.55rem 0.75rem;
    gap: 0.5rem;
    justify-content: center;
  }

  .floating-badge-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .floating-badge-text h5 {
    font-size: 0.78rem;
  }

  .floating-badge-text p {
    font-size: 0.68rem;
  }

  /* Catalog Section Mobile */
  .catalog-section {
    padding: 4rem 0;
  }

  .category-tabs {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .cat-tab {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }

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

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

  .product-thumb {
    height: 140px;
  }

  .product-tag {
    font-size: 0.6rem;
    padding: 0.2rem 0.45rem;
    top: 0.4rem;
    left: 0.4rem;
  }

  .product-body {
    padding: 0.75rem 0.6rem;
  }

  .product-title {
    font-size: 0.88rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
  }

  .product-spec {
    font-size: 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    margin-bottom: 0.6rem;
  }

  .product-action-row {
    padding-top: 0.5rem;
  }

  .product-action-row .btn {
    padding: 0.45rem 0.4rem;
    font-size: 0.72rem;
    gap: 0.25rem;
  }

  /* Other Sections Mobile */
  .features-section, .process-section, .testimonials-section, .faq-section {
    padding: 4rem 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   LOKASI WORKSHOP & GOOGLE MAPS
   -------------------------------------------------------------------------- */
.location-section {
  padding: 5.5rem 0;
  background: var(--bg-dark-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
}

.location-info-card {
  background: var(--glass-bg-dark);
  border: var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  box-shadow: var(--shadow-lg);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text h4 {
  color: var(--text-light-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.info-text p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.location-actions {
  margin-top: 0.5rem;
}

.location-actions .btn {
  width: 100%;
  justify-content: center;
}

.location-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--glass-border);
  box-shadow: var(--shadow-xl);
  line-height: 0;
}

@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-section {
    padding: 4rem 0;
  }
}

