@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-color);
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
  transition: background 0.4s ease, color 0.4s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary: #0D5C3C;
  --primary-dark: #09452C;
  --primary-light: #E8F5EF;
  --accent: #F5B81B;
  --accent-dark: #E0A80F;
  --gray-bg: #F9FBF9;
  
  --text-dark: #1A2C2E;
  --text-gray: #5A6E6F;
  
  --bg-color: #ffffff;
  --card-bg: #ffffff;
  --footer-bg: #0C2E24;
  --footer-text: #CDE3DC;
  
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.04);
  --shadow-md: 0 20px 35px -12px rgba(0,0,0,0.08);
  --shadow-lg: 0 30px 50px -15px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 20px rgba(245,184,27,0.4);
  
  --form-bg: #ffffff;
  --form-border: #dddddd;
  --form-input-bg: #ffffff;
}

html.dark-mode {
  --primary: #128154;
  --primary-dark: #0D5C3C;
  --primary-light: #0B2C1E;
  --accent: #F5B81B;
  --accent-dark: #E0A80F;
  --gray-bg: #121212;
  
  --text-dark: #E8F5EF;
  --text-gray: #A0B2B3;
  
  --bg-color: #080808;
  --card-bg: #141414;
  --footer-bg: #040d0a;
  --footer-text: #A0B2B3;
  
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.4);
  --shadow-md: 0 20px 35px -12px rgba(0,0,0,0.6);
  --shadow-lg: 0 30px 50px -15px rgba(0,0,0,0.8);
  
  --form-bg: #141414;
  --form-border: #333333;
  --form-input-bg: #1a1a1a;
}

/* Custom Cursor */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  transition: opacity 0.2s;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 2px solid var(--accent);
  transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}
body.cursor-hover .cursor-ring {
  width: 60px; height: 60px;
  background: rgba(245,184,27,0.1);
  border-color: var(--primary);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; position: relative; }

h1, h2, h3, .logo-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary);
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
}
@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.section-subhead {
  text-align: center;
  color: var(--text-gray);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

/* Premium Neon Logo */
.logo-neon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}
.logo-neon .b-letter {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-size: 2.5rem;
  font-weight: 800;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(13,92,60,0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo-neon:hover .b-letter { transform: rotate(-10deg) scale(1.1); }
.logo-neon .rest {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo-neon .accent {
  color: var(--accent);
  text-shadow: 0 0 2px var(--accent), 0 0 8px rgba(245,184,27,0.5);
  animation: neonPulse 2s ease-in-out infinite;
  display: inline-block;
}
.logo-neon .location-tag {
  background: rgba(245,184,27,0.15);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 10px;
  color: var(--primary);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245,184,27,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 2px var(--accent), 0 0 8px rgba(245,184,27,0.4); }
  50% { text-shadow: 0 0 8px var(--accent), 0 0 20px rgba(245,184,27,0.8); }
}
.hero .logo-neon .b-letter { background: white; color: #0D5C3C; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.hero .logo-neon .rest { color: white; }
.hero .logo-neon .accent { color: var(--accent); }
.hero .logo-neon .location-tag { background: rgba(255,255,255,0.2); color: white; border-color: rgba(255,255,255,0.4); }

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 10px 25px rgba(13,92,60,0.3);
}
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(13,92,60,0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-light);
  transform: translateY(-5px);
}
.hero .btn-outline { border-color: white; color: white; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.1); }

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background: #052b1b; /* Fallback color */
  overflow: hidden;
  padding-bottom: 60px;
}
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,43,27,0.4); /* Much lighter overlay to see video */
  background: linear-gradient(160deg, rgba(10,74,48,0.4) 0%, rgba(5,43,27,0.6) 60%, rgba(3,26,16,0.8) 100%);
  z-index: 2;
}
.hero .container { position: relative; z-index: 10; }
.hero-grid { display: flex; flex-direction: column; gap: 48px; align-items: center; }
.hero-content { text-align: center; color: white; flex: 1; max-width: 640px; }

/* Eyebrow */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.2;
  margin: 0 0 28px;
  color: white;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.hero h1 span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  display: inline;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; width: 100%; height: 4px;
  background: var(--accent);
  border-radius: 4px;
  opacity: 0.4;
  z-index: -1;
}

/* Hero Subtitle */
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  opacity: 0.85;
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
  color: white;
}

/* Hero Animated Trust Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  padding: 10px 20px;
  border-radius: 60px;
  font-size: 0.82rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  animation: badgeSlideIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-badge i {
  color: var(--accent);
  font-size: 0.78rem;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: badgeShimmer 4s ease-in-out 1s infinite;
}
@keyframes badgeSlideIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes badgeShimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* Hero Image — floating delivery illustration */
.hero-img {
  flex: 0 0 auto;
  max-width: 400px;
  width: 100%;
  animation: heroFloat 5s ease-in-out infinite;
}
.hero-img img {
  width: 100%;
  height: auto;
  mix-blend-mode: lighten;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* Quick Stats Strip */
.stat-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.stat-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.stat-item span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.08);
}
html.dark-mode .stat-divider { background: rgba(255,255,255,0.08); }

/* Quick Bar */
.quick-bar {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  margin-top: -40px;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Services Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.service-card {
  background: var(--card-bg);
  padding: 36px 28px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(13,92,60,0.05);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: cardGlow 3s linear infinite;
}
@keyframes cardGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
html.dark-mode .service-card { border-color: rgba(255,255,255,0.05); }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card i {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.service-card:hover i { transform: scale(1.15) rotate(5deg); color: var(--accent); }
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.65;
  font-family: 'DM Sans', sans-serif;
}

/* Steps */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.step-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: 60px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.step-card:hover {
  transform: translateX(15px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(245,184,27,0.25);
}
.step-text h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.step-text p { font-size: 0.9rem; color: var(--text-gray); font-family: 'DM Sans', sans-serif; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.test-card {
  background: var(--card-bg);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border-left: 8px solid var(--accent);
  transition: transform 0.4s ease;
}
.test-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-left-color: var(--primary); }
.stars { color: var(--accent); margin-bottom: 12px; font-size: 0.95rem; }
.stars i { animation: starPulse 2s ease-in-out infinite; }
.stars i:nth-child(2) { animation-delay: 0.1s; }
.stars i:nth-child(3) { animation-delay: 0.2s; }
.stars i:nth-child(4) { animation-delay: 0.3s; }
.stars i:nth-child(5) { animation-delay: 0.4s; }
@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.test-card p { font-size: 0.95rem; font-style: italic; line-height: 1.65; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.test-card strong { font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--primary); }

/* Coverage */
.coverage-bg {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--card-bg) 100%);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}
.chip {
  background: var(--card-bg);
  padding: 10px 22px;
  border-radius: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--accent-dark); }

/* Partner Section */
.partner-section {
  background: linear-gradient(145deg, var(--primary) 0%, #052b1b 100%);
  border-radius: 28px;
  padding: 60px 32px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-md);
}
.partner-section h3 { color: var(--accent); font-size: 1.8rem; margin-bottom: 16px; letter-spacing: -0.02em; }
.partner-section p { font-size: 1rem; opacity: 0.85; margin-bottom: 32px; font-family: 'DM Sans', sans-serif; }

/* Custom Form UI */
.custom-form {
  margin-top: 40px;
  background: var(--form-bg);
  border-radius: 40px;
  padding: 40px;
  text-align: left;
  color: var(--text-dark);
  border: 1px solid var(--form-border);
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.form-input {
  width: 100%;
  margin: 8px 0;
  padding: 14px 20px;
  border-radius: 16px;
  border: 2px solid var(--form-border);
  background: var(--form-input-bg);
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
textarea.form-input { border-radius: 16px; }

.radio-row {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  padding: 0 12px;
}
.radio-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
}
.radio-row input[type="radio"] { accent-color: var(--primary); width: 18px; height: 18px; }

/* Scroll-Triggered Gift Popup */
.order-popup {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--card-bg);
  border: 2px solid var(--accent);
  border-radius: 60px;
  padding: 16px 20px 16px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-glow);
}
.order-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.order-popup span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 600; }
.order-popup button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.order-popup button:hover { transform: scale(1.05); }

/* Sticky Buttons */
.sticky-wa, .sticky-call {
  position: fixed;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: white;
  font-size: 24px;
  text-decoration: none;
  z-index: 1000;
}
.sticky-wa { left: 24px; background: #25D366; }
.sticky-call { left: 88px; background: var(--primary); }
.sticky-wa:hover, .sticky-call:hover { transform: translateY(-8px) scale(1.1); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }

/* Theme & Language Toggle Buttons */
.theme-toggle-btn, .lang-toggle-btn {
  position: absolute;
  top: 30px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.theme-toggle-btn {
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
}
.theme-toggle-btn:hover { transform: scale(1.15) rotate(15deg); background: rgba(255,255,255,0.3); }

.lang-toggle-btn {
  right: 95px;
  height: 50px;
  padding: 0 20px;
  border-radius: 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
}
.lang-toggle-btn:hover { transform: scale(1.05) translateY(-2px); background: rgba(255,255,255,0.3); }

html.dark-mode .theme-toggle-btn .fa-moon { display: none; }
html:not(.dark-mode) .theme-toggle-btn .fa-sun { display: none; }

/* Night Note Highlight */
.night-note {
  margin-top: 40px;
  background: rgba(245, 184, 27, 0.08);
  border: 1px solid rgba(245, 184, 27, 0.2);
  padding: 20px 28px;
  border-radius: 20px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--primary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
  line-height: 1.6;
}
html.dark-mode .night-note { color: var(--accent); }

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 0 40px;
  text-align: center;
}
.footer-credit {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
}
.footer-credit a { color: var(--accent); text-decoration: none; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; transition: 0.3s; }
.footer-credit a:hover { color: white; letter-spacing: 1px; }

/* JS Animation Classes */
.js-anim { opacity: 0; visibility: hidden; will-change: transform, opacity; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 100001;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.1s linear;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== FLOATING PARTICLES CANVAS ===== */
#particleCanvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4;
}



/* ===== TEXT REVEAL ===== */
.char-reveal { display: inline-block; opacity: 0; transform: translateY(40px) rotateX(-60deg); animation: charPop 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards; }
@keyframes charPop {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* ===== MAGNETIC BUTTON EFFECT ===== */
.btn { position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease; }
.btn .ripple-circle {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,0.35);
  transform: scale(0); animation: rippleOut 0.6s ease-out forwards; pointer-events: none;
}
@keyframes rippleOut { to { transform: scale(4); opacity: 0; } }

/* ===== 3D TILT CARDS ===== */
.service-card, .test-card, .step-card { transform-style: preserve-3d; perspective: 800px; }
.service-card .card-shine, .test-card .card-shine {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover .card-shine, .test-card:hover .card-shine { opacity: 1; }

/* ===== PULSING STICKY BUTTONS ===== */
.sticky-wa { animation: stickyPulse 2.5s ease-in-out infinite; }
.sticky-call { animation: stickyPulse 2.5s ease-in-out 0.4s infinite; }
@keyframes stickyPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ===== STAGGERED CHIP ENTRANCE ===== */
.chip { animation: chipBounce 0.5s cubic-bezier(0.23, 1, 0.32, 1) both; }
.chip:nth-child(1) { animation-delay: 0.05s; }
.chip:nth-child(2) { animation-delay: 0.1s; }
.chip:nth-child(3) { animation-delay: 0.15s; }
.chip:nth-child(4) { animation-delay: 0.2s; }
.chip:nth-child(5) { animation-delay: 0.25s; }
.chip:nth-child(6) { animation-delay: 0.3s; }
.chip:nth-child(7) { animation-delay: 0.35s; }
.chip:nth-child(8) { animation-delay: 0.4s; }
.chip:nth-child(9) { animation-delay: 0.45s; }
@keyframes chipBounce {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== GLOW ON PARTNER CTA ===== */
.partner-section { position: relative; overflow: hidden; }
.partner-section::before {
  content: ''; position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,184,27,0.25), transparent 70%);
  top: -80px; right: -80px; border-radius: 50%;
  animation: partnerGlow 6s ease-in-out infinite alternate;
}
@keyframes partnerGlow {
  0% { transform: translate(0,0) scale(1); opacity: 0.5; }
  100% { transform: translate(-40px, 40px) scale(1.3); opacity: 0.8; }
}

/* ===== SMOOTH NUMBER COUNTER ===== */
.counter-value { display: inline-block; font-variant-numeric: tabular-nums; }

/* ===== STEP NUMBER SPIN ON HOVER ===== */
.step-number { transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.step-card:hover .step-number { transform: rotate(360deg) scale(1.15); }

/* ===== LOGO HEARTBEAT ===== */
.hero .logo-neon .b-letter { animation: logoBeat 3s ease-in-out infinite; }
@keyframes logoBeat {
  0%,100% { transform: scale(1); }
  10% { transform: scale(1.08); }
  20% { transform: scale(1); }
  30% { transform: scale(1.05); }
  40% { transform: scale(1); }
}

/* ===== SMOOTH PAGE LOAD ===== */
body { animation: pageIn 0.8s ease-out; }
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE: DESKTOP (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
  .hero-grid { flex-direction: row; text-align: left; gap: 60px; align-items: center; }
  .hero-content { text-align: left; flex: 1; max-width: 560px; }
  .hero-img { max-width: 380px; }
  .hero-badges { justify-content: flex-start; }
  .hero-sub { margin-left: 0; margin-right: 0; }
  .hero h1 { text-align: left; }
  .steps-grid { flex-direction: row; }
  .step-card { flex: 1; flex-direction: column; text-align: center; }
}

/* ============================================
   RESPONSIVE: TABLET (481px - 768px)
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  section { padding: 60px 0; }

  /* --- Toggle Buttons: top-right, stacked neatly --- */
  .theme-toggle-btn {
    position: fixed; top: 16px; right: 16px; width: 40px; height: 40px;
    font-size: 1.1rem; z-index: 10001;
    background: rgba(13,92,60,0.85); border: 1px solid rgba(255,255,255,0.3);
    color: white; border-radius: 50%; backdrop-filter: blur(12px);
  }
  .lang-toggle-btn {
    position: fixed; top: 16px; right: 64px; height: 40px;
    padding: 0 14px; font-size: 0.85rem; z-index: 10001;
    background: rgba(13,92,60,0.85); border: 1px solid rgba(255,255,255,0.3);
    color: white; border-radius: 40px; backdrop-filter: blur(12px);
  }

  /* --- Hero --- */
  .hero { min-height: auto; padding: 90px 0 48px; }
  .hero-grid { flex-direction: column; gap: 24px; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 1px; margin-bottom: 14px; }
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); margin: 0 0 12px; line-height: 1.12; }
  .hero h1 span::after { height: 3px; bottom: 1px; }
  .hero-sub { font-size: 0.82rem; margin-bottom: 24px; padding: 0 8px; line-height: 1.6; max-width: 100%; }
  .hero-img { max-width: 240px; margin: 0 auto; }

  /* --- Hero Badges --- */
  .hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .hero-badge { padding: 8px 14px; font-size: 0.72rem; gap: 6px; }
  .hero-badge i { font-size: 0.66rem; }

  /* --- Logo --- */
  .logo-neon .b-letter { width: 36px; height: 36px; font-size: 1.4rem; border-radius: 10px; }
  .logo-neon .rest { font-size: 1.2rem; }
  .logo-neon .location-tag { padding: 4px 10px; font-size: 0.68rem; margin-left: 4px; }

  /* --- Quick Bar --- */
  .quick-bar { border-radius: 24px; padding: 20px 16px; margin-top: -30px; }
  .quick-bar p { font-size: 0.9rem !important; }
  .quick-bar .btn { padding: 10px 20px; font-size: 0.85rem; }
  .stat-strip { flex-wrap: wrap; gap: 4px; }
  .stat-item strong { font-size: 1.2rem; }
  .stat-item span { font-size: 0.62rem; }
  .stat-divider { height: 28px; }

  /* --- Service Cards --- */
  .cards-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 24px; }
  .service-card { padding: 32px 24px; border-radius: 24px; }
  .service-card i { font-size: 2.8rem; margin-bottom: 16px; }
  .service-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
  .service-card p { font-size: 0.95rem; }

  /* --- Section Headings --- */
  h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); margin-bottom: 12px; }
  .section-subhead { font-size: 1rem; margin-bottom: 32px; }

  /* --- Steps --- */
  .steps-grid { gap: 16px; margin-top: 24px !important; }
  .step-card { padding: 20px; border-radius: 20px; gap: 16px; }
  .step-number { width: 56px; height: 56px; font-size: 1.6rem; }
  .step-text h4 { font-size: 1.1rem; }
  .step-text p { font-size: 0.9rem; }

  /* --- Testimonials --- */
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .test-card { padding: 24px; border-radius: 20px; border-left-width: 5px; }
  .test-card p { font-size: 1rem; margin-bottom: 12px; }
  .test-card strong { font-size: 0.95rem; }
  .stars { font-size: 1rem; margin-bottom: 10px; }

  /* --- Coverage --- */
  .coverage-bg { border-radius: 24px; padding: 32px 20px; }
  .area-chips { gap: 8px; margin-top: 20px; }
  .chip { padding: 10px 18px; font-size: 0.85rem; border-radius: 40px; }

  /* --- Night Note --- */
  .night-note { padding: 16px 20px; font-size: 1rem; border-radius: 20px; margin-top: 32px; }

  /* --- Partner Section --- */
  .partner-section { border-radius: 24px; padding: 40px 20px; }
  .partner-section h3 { font-size: 1.6rem; margin-bottom: 12px; }
  .partner-section p { font-size: 0.95rem; margin-bottom: 24px; }
  .partner-section .btn { padding: 12px 20px; font-size: 0.9rem; width: 100%; max-width: 300px; }

  /* --- Partner Form --- */
  .custom-form { border-radius: 20px; padding: 24px 16px; margin-top: 24px; }
  .form-input { padding: 14px 18px; font-size: 0.95rem; border-radius: 16px; margin: 8px 0; }
  textarea.form-input { border-radius: 16px; }
  .radio-row { gap: 16px; padding: 0 8px; flex-wrap: wrap; }
  .radio-row label { font-size: 0.95rem; gap: 8px; }
  .radio-row input[type="radio"] { width: 18px; height: 18px; }

  /* --- Order Popup --- */
  .order-popup {
    right: 16px; left: 16px; bottom: 90px; width: auto;
    transform: translateY(50px) scale(0.95);
    flex-direction: column; text-align: center;
    padding: 16px 20px; border-radius: 20px; gap: 12px;
  }
  .order-popup.show { transform: translateY(0) scale(1); }
  .order-popup span { font-size: 0.9rem; }
  .order-popup button { padding: 10px 24px; font-size: 0.9rem; }

  /* --- Sticky Floating Buttons --- */
  .sticky-wa { left: 16px; bottom: 16px; width: 50px; height: 50px; font-size: 24px; }
  .sticky-call { left: 76px; bottom: 16px; width: 50px; height: 50px; font-size: 24px; }

  /* --- Footer --- */
  footer { padding: 48px 0 24px; }

  /* --- Hide desktop-only elements --- */
  .cursor-dot, .cursor-ring { display: none !important; }
  #particleCanvas { display: none !important; }
}

/* ============================================
   RESPONSIVE: SMALL PHONE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  section { padding: 40px 0; }

  .hero { padding: 76px 0 32px; }
  .hero-eyebrow { font-size: 0.62rem; margin-bottom: 10px; }
  .hero h1 { font-size: clamp(1.4rem, 7vw, 1.8rem); margin: 0 0 8px; }
  .hero-sub { font-size: 0.78rem; margin-bottom: 18px; }
  .hero-badges { gap: 6px; }
  .hero-badge { padding: 6px 10px; font-size: 0.64rem; gap: 4px; }
  .hero-badge i { font-size: 0.58rem; }
  .hero-img { max-width: 200px; }

  .logo-neon .b-letter { width: 36px; height: 36px; font-size: 1.4rem; border-radius: 10px; }
  .logo-neon .rest { font-size: 1.2rem; }
  .logo-neon .location-tag { padding: 4px 10px; font-size: 0.7rem; }

  h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .section-subhead { font-size: 0.9rem; margin-bottom: 24px; }

  .quick-bar { border-radius: 20px; padding: 16px 12px; margin-top: -24px; }
  .stat-item strong { font-size: 1rem; }
  .stat-item span { font-size: 0.58rem; }
  .stat-divider { height: 24px; }

  .service-card { padding: 24px 16px; border-radius: 20px; }
  .service-card i { font-size: 2.4rem; margin-bottom: 12px; }
  .service-card h3 { font-size: 1.2rem; }
  .service-card p { font-size: 0.88rem; }

  .step-card { padding: 16px; border-radius: 16px; gap: 12px; }
  .step-number { width: 48px; height: 48px; font-size: 1.4rem; }
  .step-text h4 { font-size: 1rem; }
  .step-text p { font-size: 0.85rem; }

  .test-card { padding: 20px; border-radius: 16px; }
  .test-card p { font-size: 0.92rem; }

  .coverage-bg { padding: 24px 16px; border-radius: 20px; }
  .chip { padding: 8px 14px; font-size: 0.78rem; }

  .night-note { padding: 14px 16px; font-size: 0.9rem; border-radius: 16px; }

  .partner-section { border-radius: 20px; padding: 32px 16px; }
  .partner-section h3 { font-size: 1.4rem; }
  .partner-section p { font-size: 0.88rem; }

  .custom-form { padding: 20px 14px; border-radius: 16px; }
  .form-input { padding: 12px 14px; font-size: 0.88rem; border-radius: 14px; }

  .sticky-wa { left: 12px; bottom: 12px; width: 46px; height: 46px; font-size: 22px; }
  .sticky-call { left: 66px; bottom: 12px; width: 46px; height: 46px; font-size: 22px; }

  .order-popup { right: 12px; left: 12px; bottom: 72px; padding: 14px 16px; border-radius: 16px; }

  .lang-toggle-btn { right: 60px; height: 36px; padding: 0 10px; font-size: 0.78rem; }
  .theme-toggle-btn { width: 36px; height: 36px; font-size: 1rem; right: 12px; top: 12px; }

  footer { padding: 36px 0 20px; }
}

/* ============================================
   RESPONSIVE: VERY SMALL PHONE (max-width: 360px)
   ============================================ */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.85rem; }
  .hero-cta-group .btn { max-width: 100%; font-size: 0.85rem; padding: 12px 16px; }
  .trust-item { padding: 5px 8px; font-size: 0.68rem; }
  .logo-neon .location-tag { display: none; }
  h2 { font-size: 1.4rem; }
  .partner-section h3 { font-size: 1.2rem; }
}

