/* Modern Design System - Dark Cyber Executive Theme */
:root {
  --bg-dark: #07090e;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(16, 185, 129, 0.35);
  
  --primary-emerald: #10b981;
  --primary-emerald-hover: #059669;
  --primary-cyan: #06b6d4;
  --accent-indigo: #6366f1;
  --accent-purple: #8b5cf6;
  
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #20bd5a;
  --whatsapp-dark: #128C7E;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #cbd5e1;

  --danger-red: #ef4444;
  --success-green: #10b981;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.25);
  --shadow-cyan: 0 0 25px rgba(6, 182, 212, 0.25);
  --shadow-whatsapp: 0 0 25px rgba(37, 211, 102, 0.35);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

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

a, a:hover, a:visited, a:active {
  text-decoration: none;
}

body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(37, 211, 102, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 1.5rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-emerald));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.1rem;
  box-shadow: var(--shadow-glow);
}

.brand-accent {
  color: var(--primary-emerald);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-emerald);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 0.45rem 1.15rem 0.45rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-wa-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #ffffff;
}

.btn-wa-details {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.btn-wa-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.2px;
  color: #ffffff;
}

.btn-wa-num {
  font-size: 0.72rem;
  opacity: 0.9;
  font-weight: 600;
  color: #ffffff;
}

.btn-whatsapp-nav:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #20bd5a 0%, #0e7266 100%);
}

/* Layout Container */
.main-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 2rem auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

/* Hero Top Photo Section */
.hero-section {
  width: 100%;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(15, 23, 42, 0.9);
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--border-color);
}

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

.trust-item i {
  font-size: 1.5rem;
  color: var(--primary-cyan);
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

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

.trust-divider {
  width: 1px;
  height: 35px;
  background: var(--border-color);
}

/* Lead Form Section */
.form-section {
  width: 100%;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.payment-guarantee-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.12));
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--primary-emerald);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.payment-guarantee-badge i {
  font-size: 1.3rem;
  color: var(--primary-emerald);
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-cyan), #25D366, var(--accent-indigo));
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.header-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.5rem;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

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

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

/* Input Fields */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.input-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.input-group label i {
  color: #25D366;
  font-size: 0.9rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.input-wrapper input {
  width: 100%;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.98rem;
  transition: all 0.25s ease;
}

.input-wrapper input:focus {
  outline: none;
  border-color: #25D366;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper input:focus ~ .input-icon {
  color: #25D366;
}

/* Phone Input Special Styling */
.phone-wrapper {
  display: flex;
  gap: 0.5rem;
}

.country-prefix {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 0 0.65rem;
  color: var(--text-sub);
  font-size: 0.9rem;
  font-weight: 600;
}

.country-prefix select {
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.country-prefix select option {
  background: #0f172a;
  color: #fff;
}

.phone-wrapper input {
  padding-left: 1rem;
}

/* City Chips */
.city-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.chip-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-sub);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip-btn:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25D366;
  color: #25D366;
}

.error-msg {
  font-size: 0.78rem;
  color: var(--danger-red);
  display: none;
  margin-top: 0.1rem;
}

.input-group.invalid input {
  border-color: var(--danger-red);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

.input-group.invalid .error-msg {
  display: block;
}

/* Direct WhatsApp Alternative Banner */
.whatsapp-banner {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.14) 0%, rgba(18, 140, 126, 0.18) 100%);
  border: 1px dashed rgba(37, 211, 102, 0.5);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.whatsapp-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.whatsapp-icon-anim {
  width: 44px;
  height: 44px;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.4rem;
  animation: whatsapp-pulse-anim 2s infinite ease-in-out;
  flex-shrink: 0;
}

.whatsapp-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.whatsapp-banner-text strong {
  font-size: 0.98rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
}

.whatsapp-banner-text span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

@keyframes whatsapp-pulse-anim {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 15px rgba(37, 211, 102, 0.6); }
}

.btn-whatsapp-inline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.6rem !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  padding: 0.7rem 1.35rem !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  white-space: nowrap !important;
}

.btn-whatsapp-inline i {
  font-size: 1.25rem !important;
  color: #ffffff !important;
}

.btn-whatsapp-inline span {
  color: #ffffff !important;
  text-decoration: none !important;
}

.btn-whatsapp-inline:hover {
  background: linear-gradient(135deg, #20bd5a 0%, #0e7266 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65) !important;
}

/* Main Submit Button */
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
  background: linear-gradient(135deg, #20bd5a 0%, #0e7266 100%);
}

.btn-submit:active {
  transform: translateY(0);
}

.spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hidden {
  display: none !important;
}

.form-footer-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

/* Modal Backdrops & Cards */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: fadeIn 0.25s ease;
}

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

.modal-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
  animation: slideUp 0.3s ease;
}

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

/* Success Card */
.success-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 2.2rem;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.35);
}

.success-card h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: #fff;
}

.success-card p {
  font-size: 0.95rem;
  color: var(--text-sub);
}

.lead-summary-box {
  width: 100%;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-sub);
}

.status-badge-success {
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary-emerald);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.modal-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-whatsapp-modal {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

.btn-whatsapp-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65);
  background: linear-gradient(135deg, #20bd5a 0%, #0e7266 100%);
}

.btn-secondary {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.85rem;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-cyan);
}

/* Floating WhatsApp FAB & Popover Chat Widget */
.floating-whatsapp-container {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
}

/* Chat Popover Box */
.wa-chat-popover {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background: #0f172a;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(37, 211, 102, 0.25);
  overflow: hidden;
  animation: popoverSlide 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom right;
}

@keyframes popoverSlide {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.wa-popover-header {
  background: linear-gradient(135deg, #128C7E, #075E54);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.wa-avatar-box {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.wa-online-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background: #25D366;
  border: 2px solid #075E54;
  border-radius: 50%;
}

.wa-popover-info {
  flex: 1;
  margin-left: 0.75rem;
}

.wa-popover-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.wa-status-text {
  font-size: 0.72rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.wa-status-text i {
  font-size: 0.45rem;
  color: #25D366;
}

.wa-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.wa-close-btn:hover {
  color: #fff;
}

.wa-popover-body {
  padding: 1.15rem;
  background: #090e17;
  background-image: radial-gradient(circle at 50% 50%, rgba(37, 211, 102, 0.05) 0%, transparent 60%);
}

.wa-chat-bubble {
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid var(--border-color);
  border-radius: 14px 14px 14px 2px;
  padding: 0.85rem 1rem;
  color: #f1f5f9;
  font-size: 0.85rem;
  line-height: 1.45;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wa-chat-bubble p {
  margin-bottom: 0.4rem;
}

.wa-chat-bubble p:last-of-type {
  margin-bottom: 0;
}

.wa-chat-time {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.wa-popover-footer {
  padding: 0.85rem 1.15rem;
  background: #0f172a;
  border-top: 1px solid var(--border-color);
}

.btn-wa-popover {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
}

.btn-wa-popover:hover {
  background: linear-gradient(135deg, #20bd5a, #0e7266);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  transform: translateY(-1px);
}

.whatsapp-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring-whatsapp 2s infinite;
  pointer-events: none;
}

@keyframes pulse-ring-whatsapp {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp-btn {
  position: relative !important;
  width: 62px !important;
  height: 62px !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  cursor: pointer !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.9rem !important;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  outline: none !important;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.85) !important;
}

.wa-fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0f172a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.fab-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

.floating-whatsapp-container:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 400px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  animation: toastIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #fff;
  font-size: 0.88rem;
}

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

.toast-icon {
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.toast.success {
  border-left: 4px solid #25D366;
}

.toast.success .toast-icon {
  color: #25D366;
}

.toast.error {
  border-left: 4px solid var(--danger-red);
}

.toast.error .toast-icon {
  color: var(--danger-red);
}

.toast.info {
  border-left: 4px solid var(--primary-cyan);
}

.toast.info .toast-icon {
  color: var(--primary-cyan);
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.footer a {
  color: var(--primary-cyan);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .hero-image-wrapper {
    height: 260px;
  }

  .trust-bar {
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
  }

  .trust-divider {
    display: none;
  }

  .form-card {
    padding: 1.5rem;
  }

  .whatsapp-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-whatsapp-inline {
    width: 100% !important;
  }

  .nav-actions .status-pill {
    display: none;
  }

  .floating-whatsapp-container {
    bottom: 1.25rem !important;
    right: 1.25rem !important;
  }

  .wa-chat-popover {
    width: 290px;
    right: -10px;
  }
}
