/* ================================================================
   Professional Relocation - Custom Styles v3
   Tailwind CSS utilities + professional typography + modern animations
   ================================================================ */

/* ── Base Styles ──────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: #334155;
  overflow-x: hidden;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* ── Typography Scale ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

p {
  line-height: 1.6;
}

/* ── Section Spacing Standard ─────────────────────────────────── */
.section-pad {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

/* ── SVG Wave Background ──────────────────────────────────────── */
.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 120px;
  animation: wave 12s linear infinite;
}

/* ── Floating Shapes ──────────────────────────────────────────── */
.floating-shape {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

.floating-shape-1 {
  top: 10%;
  left: 5%;
  width: 60px;
  height: 60px;
  animation: float 7s ease-in-out infinite;
}

.floating-shape-2 {
  top: 60%;
  right: 8%;
  width: 45px;
  height: 45px;
  animation: float 7s ease-in-out 2s infinite;
}

.floating-shape-3 {
  bottom: 20%;
  left: 15%;
  width: 35px;
  height: 35px;
  animation: float 9s ease-in-out 1s infinite;
}

/* ── Keyframe Animations ──────────────────────────────────────── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(24px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.25);
  }
  50% {
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.5);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes floatDelayed {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* ── Card Hover Lift ──────────────────────────────────────────── */
.card-hover {
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.1),
    0 8px 16px -4px rgba(0, 0, 0, 0.06);
}

/* ── Glossy Image Hover Effect ───────────────────────────────── */
.img-glossy {
  position: relative;
  overflow: hidden;
}

.img-glossy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.08) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

.img-glossy:hover::before {
  left: 130%;
}

.img-glossy img,
.img-glossy > div:first-child {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-glossy:hover img,
.img-glossy:hover > div:first-child {
  transform: scale(1.05);
}

/* ── Decorative Section Dividers ─────────────────────────────── */
.section-divider-top {
  position: relative;
}

.section-divider-top::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23ffffff' d='M0,0 L0,20 C360,40 720,0 1080,20 C1260,30 1350,35 1440,20 L1440,0 Z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.section-divider-bottom {
  position: relative;
}

.section-divider-bottom::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23ffffff' d='M0,40 L0,20 C360,0 720,40 1080,20 C1260,10 1350,5 1440,20 L1440,40 Z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

/* ── Animated Background Dots Pattern ────────────────────────── */
.bg-dots {
  background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── Floating Decorative Blob ────────────────────────────────── */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(15px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-10px, 10px) scale(0.95);
  }
}

/* ── Rotating SVG decoration ─────────────────────────────────── */
.deco-spin-slow {
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ── Pulse ring animation (for icons) ────────────────────────── */
.pulse-ring {
  position: relative;
}

.pulse-ring::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ── Card tilt interaction ────────────────────────────────── */
.card-tilt {
  transition:
    transform 0.2s ease-out,
    box-shadow 0.3s ease;
  will-change: transform;
}

/* ── Service card enhanced hover ─────────────────────────────── */
.service-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px -12px rgba(37, 99, 235, 0.12),
    0 8px 16px -4px rgba(0, 0, 0, 0.06);
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-card .service-card-img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Gradient border card ────────────────────────────────────── */
.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, #2563eb, #f97316);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gradient-border:hover::before {
  opacity: 1;
}

/* ── Button Base ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.625rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
}
.btn-md {
  padding: 0.65rem 1.375rem;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 0.8rem 1.75rem;
  font-size: 0.9375rem;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-accent {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
}
.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid;
}
.btn-outline:hover {
  transform: translateY(-1px);
}

.btn-white {
  background: white;
  color: #1d4ed8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ── Button Glow Effect ───────────────────────────────────────── */
.btn-glow {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-glow:hover::after {
  opacity: 1;
}

.btn-glow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* ── Gradient Text ────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Header Helper ────────────────────────────────────── */
.section-label {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── Section Divider Wave ─────────────────────────────────────── */
.section-wave {
  position: relative;
  overflow: hidden;
}

.section-wave::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,30 C360,60 720,0 1080,30 C1260,45 1350,50 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: cover;
}

/* ── Scroll Reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ── Testimonial Slider ───────────────────────────────────────── */
.testimonial-slider {
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* ── Process Timeline Line ────────────────────────────────────── */
.timeline-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 3s ease-in-out forwards;
}

/* ── Marquee (company logos) ──────────────────────────────────── */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}

/* ── Gallery Slider ──────────────────────────────────────────── */
.gallery-slider {
  overflow: hidden;
  position: relative;
}
.gallery-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-slider-track > div {
  flex-shrink: 0;
}

/* ── Image overlay card ───────────────────────────────────────── */
.img-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}
.img-card img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-card:hover img {
  transform: scale(1.05);
}
.img-card .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  transition: opacity 0.3s ease;
}

/* ── Gallery lightbox ─────────────────────────────────────────── */
.gallery-item {
  cursor: pointer;
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
}
.gallery-zoom {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

/* ── Price card highlight ─────────────────────────────────────── */
.price-card {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
}
.price-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -6px rgba(37, 99, 235, 0.12);
}

/* ── FAQ accordion ────────────────────────────────────────────── */
.faq-item {
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #bfdbfe;
}

/* ── Mobile Nav Overlay ───────────────────────────────────────── */
.mobile-nav-overlay {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── Scrollbar Styling ────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f8fafc;
}
::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* ── Selection Color ──────────────────────────────────────────── */
::selection {
  background: #2563eb;
  color: white;
}

/* ── Smooth Section Transitions ──────────────────────────────── */
section {
  transition: opacity 0.3s ease;
}

/* ── Animate Float Utilities ─────────────────────────────────── */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatSlow 8s ease-in-out infinite;
}

.animate-float-delayed {
  animation: floatDelayed 7s ease-in-out 1.5s infinite;
}

.animate-wave {
  animation: wave 12s linear infinite;
}

/* ── Dropdown Menu Animation ─────────────────────────────────── */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-trigger:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ── Utility delay classes ────────────────────────────────────── */
.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.delay-300 {
  transition-delay: 300ms;
}
.delay-400 {
  transition-delay: 400ms;
}
.delay-500 {
  transition-delay: 500ms;
}
.delay-600 {
  transition-delay: 600ms;
}

/* ── Blog card ────────────────────────────────────────────────── */
.blog-card .blog-img {
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img {
  transform: scale(1.05);
}

/* ── Counter section ──────────────────────────────────────────── */
.counter-num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ── Marquee Strip ────────────────────────────────────────────── */
.pr-marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100vw;
  max-width: 100%;
  min-height: 3rem;
  overflow-x: hidden;
  color: #fff;
  background: #1d4ed8;
  margin: 0;
  z-index: 1;
}
.pr-marquee__track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  user-select: none;
}
.pr-marquee__items {
  flex-shrink: 0;
  display: flex;
  gap: 12px;
  justify-content: space-around;
  min-width: 100%;
  animation: marquee 90s linear infinite;
}
.pr-marquee__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  width: auto;
  transition: all 0.1s ease-in-out;
  font-weight: 700;
  padding: 0 8px;
}
.pr-marquee__item svg {
  width: 14px;
  height: 14px;
  color: #f97316;
  fill: #f97316;
  flex-shrink: 0;
}

/* ── Multi-step form: steps in normal flow, instant hide on leave ── */
.quote-step {
  width: 100%;
}

/* ── Hide Alpine cloak ────────────────────────────────────────── */
[x-cloak] {
  display: none !important;
}

/* ── Sticky Bottom Bar + Floating Buttons ─────────────────────── */

/* Mobile: full-width bottom bar */
@media only screen and (max-width: 899px) {
  .pr-bottom-bar {
    background-color: #1d4ed8;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }

  .pr-botbtn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    color: #fff;
    text-decoration: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.15s ease;
    min-height: 52px;
    line-height: 1;
    gap: 3px;
  }

  .pr-botbtn:first-child {
    border-left: none;
  }

  .pr-botbtn:active,
  .pr-botbtn:hover {
    background-color: rgba(255, 255, 255, 0.12);
  }

  .pr-botbtn:nth-child(3):active,
  .pr-botbtn:nth-child(3):hover {
    background-color: #22c55e;
  }

  .pr-botbtn svg {
    width: 17px;
    height: 17px;
    color: #fff;
    fill: currentColor;
    stroke: #fff;
    flex-shrink: 0;
  }

  .pr-botbtn svg[fill="none"] {
    fill: none;
  }

  .pr-botbtn span {
    color: #fff;
    font-size: 6.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  body {
    padding-bottom: 56px;
  }
}

/* Desktop: show Call (1st) + WhatsApp (3rd) as floating buttons on the left */
@media only screen and (min-width: 900px) {
  .pr-bottom-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
  }

  /* Hide Email, Enquiry, SMS — keep Call (1) and WhatsApp (3) */
  .pr-bottom-bar .pr-botbtn:nth-child(2),
  .pr-bottom-bar .pr-botbtn:nth-child(4),
  .pr-bottom-bar .pr-botbtn:nth-child(5) {
    display: none;
  }

  /* Shared base for both floating buttons */
  .pr-bottom-bar .pr-botbtn:nth-child(1),
  .pr-bottom-bar .pr-botbtn:nth-child(3) {
    position: fixed;
    left: 14px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    pointer-events: all;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .pr-bottom-bar .pr-botbtn:nth-child(1):hover,
  .pr-bottom-bar .pr-botbtn:nth-child(3):hover {
    transform: translateX(3px);
  }

  /* Call — primary blue, higher up */
  .pr-bottom-bar .pr-botbtn:nth-child(1) {
    bottom: 72px;
    background-color: #1d4ed8;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.4);
  }

  .pr-bottom-bar .pr-botbtn:nth-child(1):hover {
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.5);
  }

  /* WhatsApp — green, at the bottom */
  .pr-bottom-bar .pr-botbtn:nth-child(3) {
    bottom: 18px;
    background-color: #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  }

  .pr-bottom-bar .pr-botbtn:nth-child(3):hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }

  /* Icons */
  .pr-bottom-bar .pr-botbtn:nth-child(1) svg,
  .pr-bottom-bar .pr-botbtn:nth-child(3) svg {
    width: 20px;
    height: 20px;
    color: #fff;
    fill: #fff;
    stroke: none;
  }

  /* WhatsApp uses filled SVG — stroke should be none */
  .pr-bottom-bar .pr-botbtn:nth-child(1) svg {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
  }

  .pr-bottom-bar .pr-botbtn span {
    display: none;
  }
}

/* ── JustValidate Error Styling ──────────────────────────────── */
.just-validate-error-label {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  display: block;
}

.just-validate-error-field {
  border-color: #f87171 !important;
  background-color: #fef2f2 !important;
}

.just-validate-error-field:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.just-validate-success-field {
  border-color: #22c55e !important;
}

.just-validate-success-field:focus {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1) !important;
}
