/* ===========================
   DROPLE – GLOBAL STYLES
   Pure Water. Every Drop.
=========================== */

/* Fonts are loaded via <link> in index.html <head> (preconnect + non-blocking). */

:root {
  --primary: #00c6ff;
  --primary-dark: #0072ff;
  --accent: #00e5ff;
  --navy: #050d1a;
  --navy-2: #0a1628;
  --navy-3: #0f2044;
  --navy-4: #1a3060;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(0,198,255,0.15);
  --text-white: #ffffff;
  --text-muted: #8da3c4;
  --text-light: #c5d5ea;
  --success: #00e676;
  --warning: #ffb300;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: 'Inter', sans-serif; }

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

.section { padding: 100px 0; }

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,198,255,0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::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;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,198,255,0.6);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(0,198,255,0.1);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; }

.pulse-btn {
  box-shadow: 0 6px 30px rgba(0,198,255,0.55);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(5,13,26,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,198,255,0.1);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(0,198,255,0.08);
}

.nav-actions { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,198,255,0.2);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.lang-btn.active {
  color: var(--navy);
  background: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,114,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,198,255,0.1) 0%, transparent 60%),
              var(--navy);
  padding: 120px 24px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.water-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,198,255,0.1);
  animation: ripple 8s ease-in-out infinite;
}
.c1 { width: 500px; height: 500px; top: -100px; right: -100px; animation-delay: 0s; }
.c2 { width: 350px; height: 350px; bottom: -50px; left: -80px; animation-delay: 2s; }
.c3 { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 4s; }

@keyframes ripple {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.05; }
}
.c3 { animation: ripple3 8s ease-in-out infinite 4s; }
@keyframes ripple3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.03; }
}

.floating-drops { position: absolute; inset: 0; }
.drop {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.3;
  animation: floatDrop 6s ease-in-out infinite;
}
.d1 { top: 20%; left: 10%; animation-delay: 0s; }
.d2 { top: 60%; left: 85%; animation-delay: 1.5s; }
.d3 { top: 80%; left: 30%; animation-delay: 3s; }
.d4 { top: 30%; left: 75%; animation-delay: 4.5s; }
@keyframes floatDrop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,198,255,0.1);
  border: 1px solid rgba(0,198,255,0.3);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
  color: #fff;
}
.price-highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: var(--text-muted); font-size: 0.8rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(0,198,255,0.2); }

/* Hero Visual */
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.8s ease 0.3s both;
  position: relative;
  z-index: 2;
}
.ro-mockup { padding: 20px; }
.ro-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,198,255,0.2);
  border-radius: 24px;
  padding: 32px;
  width: 280px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,198,255,0.05);
  animation: cardFloat 4s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.ro-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.ro-card-title { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; }
.ro-card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.ro-card-price span { font-size: 1rem; color: var(--text-muted); }
.ro-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.ro-card-checklist { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-light); }
.check { color: var(--primary); font-weight: 700; }

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(0,198,255,0.08);
  border-bottom: 1px solid rgba(0,198,255,0.08);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-icon { font-size: 1.1rem; }

/* ===========================
   SECTION HEADER
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  background: rgba(0,198,255,0.1);
  border: 1px solid rgba(0,198,255,0.25);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works {
  background: radial-gradient(ellipse at center, rgba(0,114,255,0.05) 0%, transparent 70%);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: var(--transition);
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,198,255,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,198,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }

.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,198,255,0.3), rgba(0,198,255,0.1));
  margin-top: 80px;
  position: relative;
}
.step-connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: -12px;
  color: rgba(0,198,255,0.5);
  font-size: 1rem;
}

/* ===========================
   PRICING
=========================== */
.pricing-section {
  background: var(--navy-2);
}
.pricing-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}
.pricing-card {
  background: linear-gradient(135deg, rgba(0,198,255,0.06), rgba(0,114,255,0.04));
  border: 2px solid rgba(0,198,255,0.35);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,198,255,0.08);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,198,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-badge-top {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 12px; }
.pricing-name { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; font-weight: 500; }
.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 4px;
}
.currency { font-size: 2rem; font-weight: 700; margin-top: 8px; color: var(--primary); }
.amount {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.period { color: var(--text-muted); margin-top: 40px; font-size: 1rem; }
.pricing-sub { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.93rem; color: var(--text-light); }
.tick { color: var(--success); font-weight: 700; flex-shrink: 0; }
.parts-note { background: rgba(255,179,0,0.08); border-radius: 8px; padding: 10px 12px; border: 1px solid rgba(255,179,0,0.2); }
.info-icon { flex-shrink: 0; }

/* Compare Table */
.pricing-compare { padding: 20px 0; }
.pricing-compare h3 { font-size: 1.4rem; margin-bottom: 24px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-table th { color: var(--text-muted); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.drople-col { color: var(--primary); font-weight: 600; }
.yes { color: var(--success); font-weight: 700; }
.no { color: #ff5252; }
.maybe { color: var(--warning); }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ===========================
   FEATURES
=========================== */
.features-section {
  background: radial-gradient(ellipse at top right, rgba(0,114,255,0.08) 0%, transparent 60%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,198,255,0.35);
  background: rgba(0,198,255,0.04);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ===========================
   GALLERY
=========================== */
.gallery-section {
  background: var(--navy);
  padding: 80px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: var(--transition);
  background: var(--navy-2);
}
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0,198,255,0.4);
  box-shadow: 0 15px 40px rgba(0,198,255,0.15);
}
.gallery-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(5,13,26,0.95), transparent);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-img { height: 240px; }
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { background: var(--navy-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,198,255,0.3);
}
.stars { font-size: 0.95rem; margin-bottom: 16px; }
.testimonial-text {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.95rem; }
.author-city { color: var(--text-muted); font-size: 0.82rem; }

/* ===========================
   BOOK FORM
=========================== */
.book-section {
  background: radial-gradient(ellipse at center, rgba(0,114,255,0.08) 0%, transparent 70%);
}
.book-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.book-info h2 { font-size: 2.2rem; margin-bottom: 16px; }
.book-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.book-perks { display: flex; flex-direction: column; gap: 12px; }
.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-light);
}
.perk span:first-child { color: var(--success); font-weight: 700; }

/* Form */
.book-form-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,198,255,0.15);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
.book-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,198,255,0.2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: white;
  font-size: 0.93rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--navy-2); color: white; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(0,198,255,0.06);
  box-shadow: 0 0 0 3px rgba(0,198,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* Address + Location Button */
.address-input-wrapper {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.address-input-wrapper input {
  flex: 1;
}
.btn-location {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,198,255,0.1);
  border: 1px solid rgba(0,198,255,0.35);
  border-radius: var(--radius-sm);
  color: var(--primary);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-location:hover {
  background: rgba(0,198,255,0.2);
  border-color: var(--primary);
}
.btn-location:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-location svg { flex-shrink: 0; }

.location-status {
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 6px;
}
.location-status.loading {
  background: rgba(0,198,255,0.08);
  color: var(--primary);
  border: 1px solid rgba(0,198,255,0.2);
}
.location-status.success {
  background: rgba(0,230,118,0.08);
  color: var(--success);
  border: 1px solid rgba(0,230,118,0.2);
}
.location-status.error {
  background: rgba(255,82,82,0.08);
  color: #ff5252;
  border: 1px solid rgba(255,82,82,0.2);
}

.btn-submit { font-size: 1rem; padding: 16px; border: none; }
.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.form-success h3 { font-size: 1.8rem; margin-bottom: 12px; }
.form-success p { color: var(--text-muted); margin-bottom: 28px; }
.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #20b858; transform: translateY(-2px); }

/* ===========================
   FAQ
=========================== */
.faq-section {
  background: var(--navy-2);
}
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(0,198,255,0.3); }
.faq-item.open { border-color: rgba(0,198,255,0.35); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 16px;
}
.faq-arrow {
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-answer p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,198,255,0.12), rgba(0,114,255,0.1));
  border-top: 1px solid rgba(0,198,255,0.15);
  border-bottom: 1px solid rgba(0,198,255,0.15);
  padding: 80px 0;
  text-align: center;
}
.cta-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.cta-content p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(0,198,255,0.08);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo-img { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; }

.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,198,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: rgba(0,198,255,0.1); border-color: var(--primary); }

.footer-links h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover, .footer-links li:hover { color: var(--primary); }

.footer-contact h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.contact-item a { color: var(--text-muted); transition: var(--transition); }
.contact-item a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.7);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Intersection Observer Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .pricing-wrapper { grid-template-columns: 1fr; }
  .pricing-card { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(5,13,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(0,198,255,0.1);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    text-align: center;
  }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; margin: 0; }
  .step-connector::after { content: '↓'; top: auto; bottom: -14px; right: -6px; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .book-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-items { gap: 16px; }
  .trust-item { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .book-form-wrapper { padding: 24px; }
}

/* ===========================
   VISUAL POLISH
=========================== */
/* Subtle animated sheen on the gradient numbers */
.price-highlight,
.stat-num,
.pricing-price .amount {
  background-size: 200% auto;
  animation: shimmerText 5s linear infinite;
}
@keyframes shimmerText {
  to { background-position: 200% center; }
}

/* Richer 2-column gallery on desktop (single column stays on mobile) */
@media (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    gap: 28px;
  }
  .gallery-img { height: 340px; }
}

/* Extra depth on flat sections */
.testimonials-section {
  background-color: var(--navy-2);
  background-image: radial-gradient(ellipse at bottom left, rgba(0, 114, 255, 0.09) 0%, transparent 60%);
}
.book-section {
  background-image: radial-gradient(ellipse at top, rgba(0, 198, 255, 0.08) 0%, transparent 55%);
}
.gallery-section {
  background-image: radial-gradient(ellipse at top right, rgba(0, 114, 255, 0.06) 0%, transparent 60%);
}

/* Unified soft glow on hover for content cards */
.testimonial-card { transition: var(--transition); }
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 198, 255, 0.35);
  box-shadow: 0 18px 44px rgba(0, 114, 255, 0.16);
}
.feature-card:hover,
.step-card:hover {
  box-shadow: 0 18px 44px rgba(0, 114, 255, 0.16);
}

/* ===========================
   CONVERSION ELEMENTS
=========================== */
/* Quick book (no-form, 1-tap → WhatsApp) */
.quick-book-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(0, 198, 255, 0.10), rgba(0, 114, 255, 0.05));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.qb-badge {
  display: inline-block;
  background: rgba(0, 230, 118, 0.15);
  color: var(--success);
  border: 1px solid rgba(0, 230, 118, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.qb-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 10px;
}
.qb-desc {
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 24px;
  font-size: 0.96rem;
}
.qb-label {
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.qb-issues {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.qb-chip {
  flex: 1 1 calc(33.333% - 10px);
  min-width: 110px;
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  color: var(--text-light);
  padding: 13px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.qb-chip:hover { border-color: var(--primary); color: #fff; }
.qb-chip.selected {
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.25), rgba(0, 114, 255, 0.25));
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 198, 255, 0.25);
}
.qb-go {
  display: block;
  width: 100%;
  text-align: center;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 17px 24px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.qb-go:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55); }
.qb-go:disabled { opacity: 0.7; cursor: default; transform: none; }
.qb-wa-link { margin-top: 12px; animation: fadeInUp 0.4s ease; }
.qb-geo {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--text-light);
  border: 1.5px dashed rgba(0, 198, 255, 0.4);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-bottom: 14px;
  transition: var(--transition);
}
.qb-geo:hover { border-color: var(--primary); color: #fff; }
.qb-geo.shared {
  border-style: solid;
  border-color: var(--success);
  color: var(--success);
  background: rgba(0, 230, 118, 0.08);
}
.qb-status {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
}
.qb-status.loading { color: var(--primary); }
.qb-status.success { color: var(--success); }
.qb-status.error { color: #ff6b6b; }
.qb-input-group {
  margin-bottom: 22px;
  text-align: left;
}
.qb-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 198, 255, 0.2);
  border-radius: 12px;
  padding: 13px 16px;
  color: white;
  font-size: 0.94rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}
.qb-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.qb-input:focus {
  border-color: var(--primary);
  background: rgba(0, 198, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.12);
}
.qb-trust {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.qb-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 700px;
  margin: 24px auto 34px;
  gap: 14px;
}
.qb-divider::before, .qb-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--card-border);
}
@media (max-width: 480px) {
  .qb-chip { flex: 1 1 calc(50% - 10px); }
}

/* Hero rating chip */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 4px;
  padding: 8px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  font-size: 0.9rem;
}
.hr-stars { color: #ffc107; letter-spacing: 1px; }
.hr-num { font-weight: 800; color: #fff; }
.hr-text { color: var(--text-muted); }

/* Urgency note */
.urgency-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  padding: 11px 16px;
  background: rgba(255, 179, 0, 0.10);
  border: 1px solid rgba(255, 179, 0, 0.35);
  border-radius: 12px;
  color: #ffd166;
  font-weight: 600;
  font-size: 0.9rem;
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--warning);
  flex-shrink: 0;
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 179, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0); }
}

/* Centered urgency note (booking section) */
.urgency-center {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  text-align: center;
}

/* Perks row under the quick-book card */
.book-perks-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  max-width: 760px;
  margin: 28px auto 0;
}
.book-perks-row .perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.92rem;
}
.book-perks-row .perk span:first-child {
  color: var(--success);
  font-weight: 800;
}

/* WhatsApp quick-book */
.wa-quick {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--card-border);
}
.wa-quick p {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.btn-whatsapp-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}
.btn-whatsapp-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* ===========================
   MOBILE STICKY ACTION BAR
=========================== */
.mobile-cta-bar { display: none; }

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    align-items: stretch;
    gap: 8px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1000;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    background: rgba(5, 13, 26, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--card-border);
    box-shadow: 0 -6px 24px rgba(0,0,0,0.35);
  }
  .mcta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
    padding: 13px 10px;
    color: #fff;
  }
  .mcta-ic { font-size: 1.05rem; }
  .mcta-call { background: rgba(255,255,255,0.10); }
  .mcta-wa { background: #25d366; }
  .mcta-book {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 6px 18px rgba(0,114,255,0.4);
  }
  /* Avoid overlap with the bar */
  .whatsapp-float { display: none; }
  body { padding-bottom: 76px; }
  /* Less clutter/movement on mobile */
  .floating-drops { display: none; }
  .hero { padding-top: 90px; }
}

/* ===========================
   HERO: animated drop-assembly + multilingual urgency band
=========================== */
.roa-stage { position: relative; width: 280px; height: 230px; }
.roa-center {
  position: absolute; left: 50%; top: 50%;
  width: 100px; height: 100px; margin: -50px 0 0 -50px;
  border-radius: 50%;
  background: rgba(0,198,255,0.08);
  border: 2px solid var(--primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: roaPop .6s .2s both, roaFloat 4s 1.6s ease-in-out infinite;
}
.roa-nm { font-size: 0.82rem; color: #bfe6ff; }
.roa-chip {
  position: absolute; width: 140px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,198,255,0.3);
  border-radius: 12px; padding: 10px 12px;
  color: #e9f5ff; font-size: 0.85rem; line-height: 1.25; font-weight: 600;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.roa-chip .ic { font-size: 1.05rem; line-height: 1; }
.rc1 { left: 0; top: 8px; --fx: -90px; --fy: -64px; animation: roaFly .65s .45s both; }
.rc2 { right: 0; top: 8px; --fx: 90px; --fy: -64px; animation: roaFly .65s .6s both; }
.rc3 { left: 0; bottom: 8px; --fx: -90px; --fy: 64px; animation: roaFly .65s .75s both; }
.rc4 { right: 0; bottom: 8px; --fx: 90px; --fy: 64px; animation: roaFly .65s .9s both; }
@keyframes roaFly { from { opacity: 0; transform: translate(var(--fx), var(--fy)) scale(.7); } to { opacity: 1; transform: translate(0,0) scale(1); } }
@keyframes roaPop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
@keyframes roaFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.urgency-band {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,198,255,0.08);
  border: 1px solid rgba(0,198,255,0.3);
  border-radius: 14px; padding: 12px 16px;
  margin-bottom: 28px; max-width: 540px;
  text-decoration: none;
  animation: fadeInUp 0.7s ease 0.25s both;
}
.urgency-band:hover { background: rgba(0,198,255,0.13); border-color: rgba(0,198,255,0.5); }
.ub-ic { font-size: 1.4rem; flex: 0 0 auto; }
.ub-lines { position: relative; flex: 1; min-height: 3em; }
.ub-line {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0;
}
.ub-txt {
  flex: 1; min-width: 0;
  font-size: 0.92rem; line-height: 1.4;
  color: var(--text-light);
  font-family: "Noto Sans Gujarati","Noto Sans Devanagari","Inter",sans-serif;
}
.ub-act { color: #ffb020; font-weight: 700; }
.ub-pr { color: var(--primary); font-weight: 700; }
.ub1 { animation: ubCycle 18s 0s infinite; }
.ub2 { animation: ubCycle 18s 4.5s infinite; }
.ub3 { animation: ubCycle 18s 9s infinite; }
.ub4 { animation: ubCycle 18s 13.5s infinite; }
@keyframes ubCycle {
  0% { opacity: 0; transform: translateY(7px); }
  2% { opacity: 1; transform: translateY(0); }
  23% { opacity: 1; transform: translateY(0); }
  25% { opacity: 0; transform: translateY(-7px); }
  100% { opacity: 0; }
}

@media (max-width: 768px) {
  /* Compact, reordered hero so animation + call message + CTAs all fit the
     first screen on mobile (no scrolling needed to reach the call-to-action). */
  .hero { padding-top: 80px; padding-bottom: 28px; }
  .hero-visual { display: flex !important; order: -1; margin-bottom: 4px; }
  .roa-stage { width: 244px; height: 196px; }
  .roa-chip { width: 122px; font-size: 0.78rem; padding: 8px 9px; }
  .roa-center { width: 88px; height: 88px; margin: -44px 0 0 -44px; }

  .hero-content { display: flex; flex-direction: column; }
  .hero-badge  { order: 1; align-self: center; margin-bottom: 12px; }
  .hero-title  { order: 2; font-size: 1.95rem; line-height: 1.2; margin-bottom: 14px; text-align: center; }
  .urgency-band{ order: 3; align-self: stretch; width: 100%; margin: 0 0 16px; }
  .hero-ctas   { order: 4; margin-bottom: 22px; }
  .hero-sub    { order: 5; font-size: 0.95rem; margin-bottom: 22px; text-align: center; }
  .hero-rating { order: 6; }
  .hero-stats  { order: 7; }

  .ub-txt { font-size: 0.84rem; }
}

@media (prefers-reduced-motion: reduce) {
  .roa-center, .roa-chip { animation: none !important; opacity: 1 !important; transform: none !important; }
  .urgency-band { animation: none !important; }
  .ub-line.ub1 { opacity: 1 !important; }
  .ub2, .ub3, .ub4 { opacity: 0 !important; }
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
  body {
    background: #fff !important;
    color: #000 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .no-print, button, nav, footer, .btn, .modal, .auth-screen {
    display: none !important;
  }
  tr, td, th {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }
  .invoice-logo {
    max-width: 150px !important;
    width: 150px !important;
    height: auto !important;
  }
  .invoice-cols, .invoice-header, .invoice-details {
    flex-direction: column !important;
    display: block !important;
  }
  .invoice-col {
    width: 100% !important;
    margin-bottom: 15px !important;
  }
  .invoice-container {
    border: none !important;
    box-shadow: none !important;
    color: #000 !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* ── Quick-book direct CTAs (Option A: 1-tap Call / WhatsApp) ─────────── */
.qb-direct{display:flex;flex-direction:column;gap:10px;margin:16px 0 4px}
.qb-direct-btn{display:flex;align-items:center;justify-content:center;gap:8px;border-radius:14px;font-weight:800;text-decoration:none;border:none;cursor:pointer;font-family:inherit;transition:transform .15s ease,box-shadow .15s ease;box-shadow:0 4px 14px rgba(0,0,0,.15)}
.qb-direct-call{background:linear-gradient(135deg,#0072ff,#00c6ff);color:#fff;min-height:60px;font-size:1.15rem}
.qb-direct-wa{background:#1fb355;color:#fff;min-height:50px;font-size:.98rem}
.qb-direct-btn:hover{transform:translateY(-1px);box-shadow:0 6px 18px rgba(0,0,0,.2)}
.qb-direct-btn:active{transform:scale(.97)}
.qb-direct-hint{text-align:center;color:#9fd4a8;font-size:.82rem;margin:8px 0 2px;font-weight:600}
.qb-or{text-align:center;color:#7c8db0;font-size:.85rem;margin:12px 0 8px}
