/* Caribbe Legal Services - Brand System with Elegant Neon Glow Aesthetics */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Great+Vibes&family=Montserrat:wght@600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-navy-primary: #0B2C5C;
  --color-navy-dark: #071D3E;
  --color-navy-light: #1A3E75;
  --color-red-accent: #D62828;
  --color-red-hover: #B71C1C;
  --color-gold-accent: #C9A227;
  --color-gold-light: #E5C358;
  --color-bg-light: #F8F9FA;
  --color-card-bg: #FFFFFF;
  --color-text-dark: #1E293B;
  --color-text-muted: #64748B;
  --radius-card: 24px;
}

body {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Script / Cursive Typography for Emotional Headlines */
.font-cursive {
  font-family: 'Dancing Script', 'Great Vibes', cursive;
}

/* Red Solid Primary CTA Button with Elegant Neon Glow */
.btn-brand-red {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--color-red-accent);
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* Elegant Neon Glow Effect */
  box-shadow: 0 0 18px rgba(214, 40, 40, 0.45), 0 0 35px rgba(214, 40, 40, 0.25), 0 8px 24px rgba(214, 40, 40, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none !important;
}

.btn-brand-red:hover {
  background: var(--color-red-hover);
  transform: translateY(-3px) scale(1.03);
  /* Radiant High-Intensity Neon Glow on Hover */
  box-shadow: 0 0 28px rgba(214, 40, 40, 0.85), 0 0 55px rgba(214, 40, 40, 0.5), 0 12px 35px rgba(214, 40, 40, 0.6);
  color: #FFFFFF !important;
}

.btn-brand-red:active {
  transform: translateY(-1px) scale(0.98);
}

/* Navy Secondary Button with Elegant Electric Neon Glow */
.btn-brand-navy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--color-navy-primary);
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  /* Navy Electric Neon Glow */
  box-shadow: 0 0 18px rgba(11, 44, 92, 0.45), 0 0 35px rgba(26, 62, 117, 0.3), 0 8px 20px rgba(11, 44, 92, 0.3);
  transition: all 0.35s ease;
  cursor: pointer;
  text-decoration: none !important;
}

.btn-brand-navy:hover {
  background: var(--color-navy-dark);
  transform: translateY(-3px) scale(1.03);
  /* High-Intensity Electric Navy Neon Glow */
  box-shadow: 0 0 28px rgba(11, 44, 92, 0.85), 0 0 55px rgba(26, 62, 117, 0.55), 0 12px 30px rgba(11, 44, 92, 0.5);
  color: #FFFFFF !important;
}

/* Ghost / Outline Button with Glowing Border Neon */
.btn-brand-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(11, 44, 92, 0.05);
  color: var(--color-navy-primary) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  border: 2px solid var(--color-navy-primary);
  /* Glowing Outline Neon */
  box-shadow: 0 0 14px rgba(11, 44, 92, 0.25), inset 0 0 8px rgba(11, 44, 92, 0.1);
  transition: all 0.35s ease;
  text-decoration: none !important;
}

.btn-brand-ghost:hover {
  background: var(--color-navy-primary);
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(11, 44, 92, 0.7), inset 0 0 15px rgba(255, 255, 255, 0.2);
}

/* 24px Rounded Floating Cards with Glow Highlights */
.card-floating-24 {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid rgba(11, 44, 92, 0.08);
  box-shadow: 0 15px 35px rgba(11, 44, 92, 0.07), 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-floating-24:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(11, 44, 92, 0.14), 0 0 20px rgba(214, 40, 40, 0.15);
  border-color: rgba(214, 40, 40, 0.3);
}

/* Vixora Style Floating Pill Navbar */
.vixora-nav-container-light {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 1240px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(11, 44, 92, 0.15);
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 10px 30px rgba(11, 44, 92, 0.1), 0 0 15px rgba(201, 162, 39, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vixora-nav-container-light:hover {
  border-color: rgba(214, 40, 40, 0.4);
  box-shadow: 0 14px 40px rgba(11, 44, 92, 0.15), 0 0 25px rgba(214, 40, 40, 0.2);
}

.nav-link-brand {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy-primary);
  padding: 0.5rem 0.875rem;
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: inline-block;
}

.nav-link-brand:hover, .nav-link-brand.active {
  color: var(--color-red-accent);
  text-shadow: 0 0 10px rgba(214, 40, 40, 0.4);
}

.nav-link-brand::after {
  content: '';
  position: absolute;
  bottom: 0.15rem;
  left: 50%;
  width: 0%;
  height: 2px;
  background: var(--color-red-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 9999px;
  box-shadow: 0 0 8px rgba(214, 40, 40, 0.8);
}

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

/* Fade to White Gradient Banner Layer */
.fade-to-white-bottom {
  position: relative;
}

.fade-to-white-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 1) 100%);
  pointer-events: none;
}

/* Red Heart Flourish SVG Underline Wrapper */
.heart-underline-wrapper {
  position: relative;
  display: inline-block;
}

.heart-underline-svg {
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 24px;
  pointer-events: none;
}

/* Floating WhatsApp Quick Contact Button with Emerald Neon Glow */
.floating-contact-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Emerald Neon Glow */
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-contact-btn:hover {
  transform: scale(1.1) rotate(5deg);
  /* High-Intensity Emerald Glow */
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.9), 0 0 60px rgba(37, 211, 102, 0.5);
}
