/* ============================================================================
   CONTACT PAGE - ENHANCED EDITION
   Premium gradients, vibrant colors, smooth animations
   ============================================================================ */

/* ---------- Theme Tokens ---------- */
.fe-contact-page {
  --fe-contact-bg: rgba(255, 255, 255, 0.60);
  --fe-contact-bg-2: rgba(255, 255, 255, 0.40);
  --fe-contact-border: rgba(0, 0, 0, 0.10);
  --fe-contact-text: rgba(12, 18, 28, 0.94);
  --fe-contact-muted: rgba(12, 18, 28, 0.72);
  --fe-contact-glow: rgba(59, 130, 246, 0.40);
  --fe-contact-glow-2: rgba(168, 85, 247, 0.35);
  --fe-contact-glow-3: rgba(16, 185, 129, 0.30);
  --fe-contact-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --fe-contact-shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.10);
  
  color: var(--fe-contact-text);
  text-decoration: none;
}

html[data-theme="dark"] .fe-contact-page {
  --fe-contact-bg: rgba(16, 24, 40, 0.60);
  --fe-contact-bg-2: rgba(16, 24, 40, 0.40);
  --fe-contact-border: rgba(255, 255, 255, 0.12);
  --fe-contact-text: rgba(244, 247, 255, 0.94);
  --fe-contact-muted: rgba(244, 247, 255, 0.74);
  --fe-contact-glow: rgba(59, 130, 246, 0.50);
  --fe-contact-glow-2: rgba(168, 85, 247, 0.45);
  --fe-contact-glow-3: rgba(16, 185, 129, 0.35);
  --fe-contact-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --fe-contact-shadow-soft: 0 14px 46px rgba(0, 0, 0, 0.35);
}

.fe-contact-page a,
.fe-contact-page a:hover,
.fe-contact-page a:focus,
.fe-contact-page a:active {
  text-decoration: none;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.fe-contact-hero {
  position: relative;
  overflow: hidden;
}

.fe-contact-hero__shell {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--fe-contact-border);
  background: linear-gradient(180deg, var(--fe-contact-bg), var(--fe-contact-bg-2));
  box-shadow: var(--fe-contact-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 1024px) {
  .fe-contact-hero__shell {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 20px;
    padding: 30px;
  }
}

/* Animated Background */
.fe-contact-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.fe-contact-hero__particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(59,130,246,0.15) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(168,85,247,0.12) 1px, transparent 1px),
    radial-gradient(circle at 40% 70%, rgba(16,185,129,0.10) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 60px 60px;
  background-position: 0 0, 40px 60px, 130px 270px;
  opacity: 0.4;
  animation: feContactParticleFloat 20s ease-in-out infinite;
}

@keyframes feContactParticleFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -10px); }
  50% { transform: translate(-5px, 10px); }
  75% { transform: translate(15px, 5px); }
}

.fe-contact-hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: feContactOrbFloat 8s ease-in-out infinite;
}

.fe-contact-hero__gradient-orb--1 {
  width: 600px;
  height: 600px;
  top: -300px;
  left: -100px;
  background: radial-gradient(circle, var(--fe-contact-glow), transparent 70%);
  animation-delay: 0s;
}

.fe-contact-hero__gradient-orb--2 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, var(--fe-contact-glow-2), transparent 70%);
  animation-delay: 2s;
}

.fe-contact-hero__gradient-orb--3 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  left: 50%;
  background: radial-gradient(circle, var(--fe-contact-glow-3), transparent 70%);
  animation-delay: 4s;
}

@keyframes feContactOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.fe-contact-hero__content,
.fe-contact-hero__side {
  position: relative;
  z-index: 1;
}

.fe-contact-hero__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Kicker Pill */
.fe-contact-hero__kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--fe-contact-border);
  background: linear-gradient(135deg, rgba(255,255,255,0.60), rgba(255,255,255,0.35));
  color: var(--fe-contact-text);
  box-shadow: var(--fe-contact-shadow-soft), 
              inset 0 1px 2px rgba(255,255,255,0.40);
  position: relative;
  overflow: hidden;
  font-weight: 700;
}

html[data-theme="dark"] .fe-contact-hero__kicker-pill {
  background: linear-gradient(135deg, rgba(16,24,40,0.60), rgba(16,24,40,0.30));
  box-shadow: var(--fe-contact-shadow-soft), 
              inset 0 1px 2px rgba(255,255,255,0.10);
}

.fe-contact-hero__kicker-pill::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -35%;
  width: 45%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.50), transparent);
  transform: rotate(20deg);
  animation: feContactShimmer 3s ease-in-out infinite;
  pointer-events: none;
}

html[data-theme="dark"] .fe-contact-hero__kicker-pill::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
}

@keyframes feContactShimmer {
  0%   { transform: translateX(-150%) rotate(20deg); }
  60%  { transform: translateX(300%) rotate(20deg); }
  100% { transform: translateX(300%) rotate(20deg); }
}

.fe-contact-hero__kicker-ico {
  transform: translateY(-1px);
  animation: feContactSparkle 2s ease-in-out infinite;
}

@keyframes feContactSparkle {
  0%, 100% { opacity: 1; transform: translateY(-1px) scale(1); }
  50% { opacity: 0.7; transform: translateY(-1px) scale(1.15); }
}

/* Title */
.fe-contact-hero__title {
  margin-top: 12px;
  line-height: 1.1;
  background: linear-gradient(135deg, 
    rgba(59,130,246,0.98), 
    rgba(168,85,247,0.95), 
    rgba(16,185,129,0.90));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: feContactGradientShift 4s ease infinite;
  filter: drop-shadow(0 4px 16px rgba(59,130,246,0.25));
}

@keyframes feContactGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.fe-contact-hero__subtitle {
  margin-top: 12px;
  color: var(--fe-contact-muted);
  max-width: 64ch;
  line-height: 1.65;
}

.fe-contact-hero__subtitle strong {
  color: var(--fe-contact-text);
  font-weight: 900;
}

/* Chips */
.fe-contact-hero__chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fe-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--fe-contact-border);
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--fe-contact-text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--fe-contact-shadow-soft);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html[data-theme="dark"] .fe-contact-chip {
  background: rgba(16, 24, 40, 0.40);
}

.fe-contact-chip:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
}

.fe-contact-chip--1 {
  border-color: rgba(59,130,246,0.28);
}

.fe-contact-chip--2 {
  border-color: rgba(168,85,247,0.28);
}

.fe-contact-chip--3 {
  border-color: rgba(16,185,129,0.28);
}

.fe-contact-chip__ico {
  opacity: 0.95;
  transform: translateY(-0.5px);
}

/* Actions */
.fe-contact-hero__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fe-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid var(--fe-contact-border);
  padding: 12px 18px;
  line-height: 1;
  font-weight: 700;
  box-shadow: var(--fe-contact-shadow-soft);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

.fe-contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.20), transparent 70%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.fe-contact-btn:hover::before {
  opacity: 1;
  animation: feContactRipple 0.8s ease-out;
}

@keyframes feContactRipple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.fe-contact-btn:focus {
  outline: none;
}

.fe-contact-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.30), var(--fe-contact-shadow-soft);
  border-color: rgba(59, 130, 246, 0.50);
}

.fe-contact-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.14);
}

html[data-theme="dark"] .fe-contact-btn:hover {
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.42);
}

.fe-contact-btn__ico {
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Button Variants */
.fe-contact-btn--primary {
  border-color: rgba(59, 130, 246, 0.50);
  background: linear-gradient(135deg, rgba(59,130,246,0.98), rgba(168,85,247,0.94));
  color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 28px rgba(59,130,246,0.35), 
              inset 0 1px 2px rgba(255,255,255,0.25);
}

.fe-contact-btn--primary:hover {
  box-shadow: 0 16px 48px rgba(59,130,246,0.42), 
              inset 0 1px 2px rgba(255,255,255,0.25);
}

.fe-contact-btn--glass {
  background: rgba(255, 255, 255, 0.45);
  color: var(--fe-contact-text);
  box-shadow: var(--fe-contact-shadow-soft), 
              inset 0 1px 2px rgba(255,255,255,0.40);
}

html[data-theme="dark"] .fe-contact-btn--glass {
  background: rgba(16, 24, 40, 0.42);
  box-shadow: var(--fe-contact-shadow-soft), 
              inset 0 1px 2px rgba(255,255,255,0.10);
}

.fe-contact-btn--soft {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(168, 85, 247, 0.10));
  border-color: rgba(59, 130, 246, 0.26);
  color: var(--fe-contact-text);
}

html[data-theme="dark"] .fe-contact-btn--soft {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(168, 85, 247, 0.14));
  border-color: rgba(59, 130, 246, 0.32);
}

.fe-contact-btn--mini {
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.38);
}

html[data-theme="dark"] .fe-contact-btn--mini {
  background: rgba(16, 24, 40, 0.38);
}

/* Meta */
.fe-contact-hero__meta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

@media (min-width: 768px) {
  .fe-contact-hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.fe-contact-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--fe-contact-border);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--fe-contact-muted);
  box-shadow: var(--fe-contact-shadow-soft);
  transition: all 0.24s ease;
}

html[data-theme="dark"] .fe-contact-hero__meta-item {
  background: rgba(16, 24, 40, 0.35);
}

.fe-contact-hero__meta-item:hover {
  transform: translateY(-2px);
  border-color: rgba(59,130,246,0.24);
}

.fe-contact-hero__meta-ico {
  opacity: 0.9;
  font-size: 18px;
}

/* Side Card */
.fe-contact-hero__side-card {
  border: 1px solid var(--fe-contact-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: var(--fe-contact-shadow-soft);
  padding: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: all 0.32s ease;
}

html[data-theme="dark"] .fe-contact-hero__side-card {
  background: rgba(16, 24, 40, 0.38);
}

.fe-contact-hero__side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.16);
}

.fe-contact-hero__side-glow {
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at 50% 0%, 
    var(--fe-contact-glow) 0%, 
    transparent 60%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.fe-contact-hero__side-card:hover .fe-contact-hero__side-glow {
  opacity: 0.6;
}

.fe-contact-hero__side-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fe-contact-hero__side-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--fe-contact-border);
  background: linear-gradient(135deg, rgba(59,130,246,0.24), rgba(168,85,247,0.18));
  box-shadow: 0 8px 24px rgba(59,130,246,0.18);
  position: relative;
  z-index: 1;
  font-size: 20px;
  transition: all 0.28s ease;
}

.fe-contact-hero__side-card:hover .fe-contact-hero__side-icon {
  transform: rotate(8deg) scale(1.08);
  box-shadow: 0 12px 32px rgba(59,130,246,0.26);
}

.fe-contact-hero__side-title {
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--fe-contact-text);
  font-size: 17px;
}

.fe-contact-hero__side-sub {
  margin-top: 3px;
  font-size: 14px;
  color: var(--fe-contact-muted);
  font-weight: 650;
}

.fe-contact-hero__side-row {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--fe-contact-border);
  background: rgba(255, 255, 255, 0.30);
  position: relative;
  z-index: 1;
  transition: all 0.24s ease;
}

html[data-theme="dark"] .fe-contact-hero__side-row {
  background: rgba(16, 24, 40, 0.30);
}

.fe-contact-hero__side-row:hover {
  transform: translateX(4px);
  border-color: rgba(59,130,246,0.26);
}

.fe-contact-hero__side-label {
  color: var(--fe-contact-muted);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fe-contact-hero__side-label i {
  font-size: 15px;
  opacity: 0.9;
}

.fe-contact-hero__side-value {
  color: var(--fe-contact-text);
  font-weight: 850;
}

.fe-contact-hero__side-cta {
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.fe-contact-hero__side-note {
  margin-top: 12px;
  color: var(--fe-contact-muted);
  font-size: 13px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fe-contact-hero__side-note i {
  margin-top: 2px;
  opacity: 0.9;
}

/* ============================================================================
   CONTACT CARDS SECTION
   ============================================================================ */
.fe-contact-cards__head {
  text-align: left;
  margin-bottom: 14px;
}

.fe-contact-cards__subtitle {
  color: var(--fe-contact-muted);
}

.fe-contact-cards__grid {
  gap: 16px;
}

@media (min-width: 768px) {
  .fe-contact-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1200px) {
  .fe-contact-cards__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}

.fe-contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--fe-contact-border);
  background: linear-gradient(180deg, var(--fe-contact-bg), var(--fe-contact-bg-2));
  box-shadow: var(--fe-contact-shadow-soft);
  padding: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fe-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, 
    rgba(59,130,246,0.35), 
    rgba(168,85,247,0.30), 
    rgba(16,185,129,0.25));
  -webkit-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.32s ease;
}

.fe-contact-card:hover::before {
  opacity: 1;
}

.fe-contact-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.30);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.14);
}

html[data-theme="dark"] .fe-contact-card:hover {
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.48);
}

.fe-contact-card__bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.fe-contact-card:hover .fe-contact-card__bg-glow {
  opacity: 1;
}

.fe-contact-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fe-contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--fe-contact-border);
  background: rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] .fe-contact-card__icon {
  background: rgba(16, 24, 40, 0.22);
}

.fe-contact-card__icon-pulse {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255,255,255,0.30), transparent 70%);
  opacity: 0;
  animation: feContactIconPulse 3s ease-in-out infinite;
}

@keyframes feContactIconPulse {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.fe-contact-card:hover .fe-contact-card__icon {
  transform: rotate(10deg) scale(1.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.fe-contact-card__icon i {
  font-size: 22px;
  opacity: 0.96;
  transform: translateY(-0.5px);
  position: relative;
  z-index: 1;
  transition: transform 0.28s ease;
}

.fe-contact-card:hover .fe-contact-card__icon i {
  transform: translateY(-0.5px) scale(1.08);
}

/* Icon color variants */
.fe-contact-card__icon--phone {
  background: linear-gradient(135deg, rgba(59,130,246,0.28), rgba(37,99,235,0.18));
  border-color: rgba(59,130,246,0.35);
}

.fe-contact-card__icon--whatsapp {
  background: linear-gradient(135deg, rgba(34,197,94,0.28), rgba(16,185,129,0.18));
  border-color: rgba(34,197,94,0.35);
}

.fe-contact-card__icon--email {
  background: linear-gradient(135deg, rgba(168,85,247,0.28), rgba(147,51,234,0.18));
  border-color: rgba(168,85,247,0.35);
}

.fe-contact-card__icon--location {
  background: linear-gradient(135deg, rgba(236,72,153,0.28), rgba(219,39,119,0.18));
  border-color: rgba(236,72,153,0.35);
}

.fe-contact-card__title {
  font-weight: 920;
  letter-spacing: 0.2px;
  color: var(--fe-contact-text);
  font-size: 16px;
}

.fe-contact-card__value {
  margin-top: 3px;
  font-weight: 720;
  color: var(--fe-contact-muted);
  word-break: break-word;
  font-size: 14px;
}

.fe-contact-card__hint {
  margin-top: 12px;
  color: var(--fe-contact-muted);
  font-size: 14px;
  line-height: 1.6;
}

.fe-contact-card__actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Copy button states */
.fe-contact-copy {
  position: relative;
}

.fe-contact-copy.is-copied {
  border-color: rgba(16, 185, 129, 0.50);
  background: rgba(16, 185, 129, 0.14);
  color: rgba(16, 185, 129, 0.95);
}

html[data-theme="dark"] .fe-contact-copy.is-copied {
  background: rgba(16, 185, 129, 0.20);
}

.fe-contact-copy__text {
  position: relative;
  z-index: 1;
}

/* Card glow effect */
.fe-contact-card__foot {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fe-contact-card__glow {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(400px 250px at 25% 25%, rgba(59,130,246,0.26), transparent 65%),
    radial-gradient(380px 250px at 75% 30%, rgba(168,85,247,0.24), transparent 65%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.fe-contact-card:hover .fe-contact-card__glow {
  opacity: 0.90;
  animation: feContactGlowRotate 6s linear infinite;
}

@keyframes feContactGlowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Note */
.fe-contact-cards__note {
  margin-top: 16px;
}

.fe-contact-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--fe-contact-border);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--fe-contact-muted);
  box-shadow: var(--fe-contact-shadow-soft);
  transition: all 0.24s ease;
}

html[data-theme="dark"] .fe-contact-note {
  background: rgba(16, 24, 40, 0.32);
}

.fe-contact-note:hover {
  transform: translateY(-2px);
  border-color: rgba(59,130,246,0.24);
}

.fe-contact-note__ico {
  margin-top: 2px;
  opacity: 0.92;
  font-size: 18px;
}

.fe-contact-note__text {
  line-height: 1.6;
  font-weight: 650;
}

.fe-contact-note__text strong {
  color: var(--fe-contact-text);
  font-weight: 900;
}

/* ============================================================================
   CONTACT FORM SECTION
   ============================================================================ */
.fe-contact-form__wrap {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--fe-contact-border);
  background: linear-gradient(180deg, var(--fe-contact-bg), var(--fe-contact-bg-2));
  box-shadow: var(--fe-contact-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  .fe-contact-form__wrap {
    padding: 22px;
  }
}

@media (min-width: 1024px) {
  .fe-contact-form__wrap {
    padding: 26px;
  }
}

.fe-contact-form__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fe-contact-form__gradient-mesh {
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(1000px 400px at 20% 20%, var(--fe-contact-glow), transparent 62%),
    radial-gradient(850px 360px at 85% 25%, var(--fe-contact-glow-2), transparent 62%),
    radial-gradient(700px 360px at 55% 92%, var(--fe-contact-glow-3), transparent 64%);
  opacity: 0.80;
  filter: blur(3px);
  animation: feContactMeshFloat 10s ease-in-out infinite;
}

@keyframes feContactMeshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.03); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.fe-contact-form__form {
  position: relative;
  z-index: 1;
}

.fe-contact-form__head {
  margin-bottom: 14px;
}

.fe-contact-form__subtitle {
  color: var(--fe-contact-muted);
}

.fe-contact-form__grid {
  gap: 16px;
}

@media (min-width: 768px) {
  .fe-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

.fe-contact-field--full {
  grid-column: 1 / -1;
}

/* Labels */
.fe-contact-label {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 850;
  letter-spacing: 0.2px;
  color: var(--fe-contact-text);
  margin-bottom: 10px;
  font-size: 15px;
}

.fe-contact-required {
  color: rgba(239, 68, 68, 0.94);
  font-weight: 950;
}

.fe-contact-optional {
  color: var(--fe-contact-muted);
  font-weight: 720;
  font-size: 0.95em;
}

.fe-contact-hint {
  margin-top: 9px;
  color: var(--fe-contact-muted);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 650;
}

/* Input wrapper */
.fe-contact-inputWrap {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 18px;
  border: 1px solid var(--fe-contact-border);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--fe-contact-shadow-soft);
  padding: 0 14px;
  min-height: 52px;
  overflow: hidden;
}

html[data-theme="dark"] .fe-contact-inputWrap {
  background: rgba(16, 24, 40, 0.35);
}

.fe-contact-inputWrap--textarea {
  align-items: flex-start;
  padding-top: 14px;
  padding-bottom: 14px;
}

.fe-contact-inputIcon {
  width: 24px;
  min-width: 24px;
  text-align: center;
  opacity: 0.88;
  color: var(--fe-contact-muted);
  transform: translateY(-0.5px);
  transition: all 0.28s ease;
  font-size: 17px;
}

.fe-contact-input__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(59,130,246,0.95), 
    rgba(168,85,247,0.90));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 0 0 18px 18px;
}

/* Inputs */
.fe-contact-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--fe-contact-text);
  padding: 14px 12px;
  font-weight: 680;
  letter-spacing: 0.1px;
  text-decoration: none;
  font-size: 15px;
}

.fe-contact-input::placeholder {
  color: rgba(100, 116, 139, 0.88);
}

html[data-theme="dark"] .fe-contact-input::placeholder {
  color: rgba(148, 163, 184, 0.82);
}

.fe-contact-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
  padding-top: 12px;
}

.fe-contact-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 36px;
}

.fe-contact-select__arrow {
  position: absolute;
  right: 16px;
  pointer-events: none;
  opacity: 0.88;
  color: var(--fe-contact-muted);
  transition: transform 0.28s ease;
}

.fe-contact-inputWrap:focus-within .fe-contact-select__arrow {
  transform: rotate(180deg);
}

/* Focus states */
.fe-contact-inputWrap:focus-within {
  border-color: rgba(59, 130, 246, 0.50);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.24), var(--fe-contact-shadow-soft);
  transform: translateY(-2px);
}

.fe-contact-inputWrap:focus-within .fe-contact-inputIcon {
  color: rgba(59, 130, 246, 0.98);
  opacity: 0.98;
  transform: translateY(-0.5px) scale(1.08);
}

.fe-contact-inputWrap:focus-within .fe-contact-input__line {
  transform: scaleX(1);
}

/* Checkbox */
.fe-contact-check {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  color: var(--fe-contact-muted);
  font-weight: 720;
  text-decoration: none;
  transition: all 0.22s ease;
}

.fe-contact-check:hover {
  color: var(--fe-contact-text);
}

.fe-contact-check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fe-contact-check__box {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid var(--fe-contact-border);
  background: rgba(255, 255, 255, 0.36);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--fe-contact-shadow-soft);
  position: relative;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html[data-theme="dark"] .fe-contact-check__box {
  background: rgba(16, 24, 40, 0.35);
}

.fe-contact-check__icon {
  opacity: 0;
  transform: scale(0.5) rotate(-45deg);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: rgba(255, 255, 255, 0.98);
  font-size: 12px;
}

.fe-contact-check__input:checked + .fe-contact-check__box {
  background: linear-gradient(135deg, rgba(59,130,246,0.98), rgba(168,85,247,0.94));
  border-color: rgba(59,130,246,0.50);
  box-shadow: 0 6px 20px rgba(59,130,246,0.32);
  transform: scale(1.05);
}

.fe-contact-check__input:checked + .fe-contact-check__box .fe-contact-check__icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Footer */
.fe-contact-form__footer {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.fe-contact-submit {
  border-radius: 18px;
  padding: 14px 20px;
  position: relative;
}

.fe-contact-submit__loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.fe-contact-submit.is-loading span:not(.fe-contact-submit__loading) {
  opacity: 0;
}

.fe-contact-submit.is-loading .fe-contact-submit__loading {
  opacity: 1;
}

.fe-contact-form__disclaimer {
  margin: 0;
  color: var(--fe-contact-muted);
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 650;
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */
.fe-contact-faq__head {
  margin-bottom: 14px;
}

.fe-contact-faq__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--fe-contact-border);
  background: linear-gradient(135deg, rgba(168,85,247,0.16), rgba(59,130,246,0.12));
  color: var(--fe-contact-text);
  font-weight: 750;
  font-size: 14px;
  margin-bottom: 12px;
  box-shadow: var(--fe-contact-shadow-soft);
}

.fe-contact-faq__subtitle {
  color: var(--fe-contact-muted);
}

.fe-contact-faq__list {
  display: grid;
  gap: 14px;
}

.fe-contact-faqItem {
  border-radius: 20px;
  border: 1px solid var(--fe-contact-border);
  background: linear-gradient(180deg, var(--fe-contact-bg), var(--fe-contact-bg-2));
  box-shadow: var(--fe-contact-shadow-soft);
  overflow: hidden;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.fe-contact-faqItem__glow {
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at 50% 0%, 
    var(--fe-contact-glow-2) 0%, 
    transparent 60%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.fe-contact-faqItem:hover .fe-contact-faqItem__glow {
  opacity: 0.5;
}

.fe-contact-faqItem:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.12);
}

html[data-theme="dark"] .fe-contact-faqItem:hover {
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.42);
}

.fe-contact-faqBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--fe-contact-text);
  font-weight: 880;
  letter-spacing: 0.1px;
  text-decoration: none;
  transition: all 0.24s ease;
}

.fe-contact-faqBtn:focus {
  outline: none;
}

.fe-contact-faqBtn:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(59, 130, 246, 0.24);
}

.fe-contact-faqBtn:hover {
  color: rgba(168,85,247,0.95);
}

.fe-contact-faqIcon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid var(--fe-contact-border);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.32);
  flex: none;
  position: relative;
  overflow: hidden;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

html[data-theme="dark"] .fe-contact-faqIcon {
  background: rgba(16, 24, 40, 0.32);
}

.fe-contact-faqIcon__pulse {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(168,85,247,0.35), transparent 70%);
  opacity: 0;
  animation: feContactFaqPulse 3s ease-in-out infinite;
}

@keyframes feContactFaqPulse {
  0%, 100% { opacity: 0; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.3); }
}

.fe-contact-faqItem:hover .fe-contact-faqIcon {
  transform: rotate(15deg) scale(1.10);
  background: linear-gradient(135deg, rgba(168,85,247,0.22), rgba(59,130,246,0.16));
  box-shadow: 0 10px 28px rgba(168,85,247,0.20);
}

.fe-contact-faqIcon i {
  position: relative;
  z-index: 1;
  font-size: 18px;
}

.fe-contact-faqQ {
  flex: 1;
  line-height: 1.4;
  font-size: 16px;
}

.fe-contact-faqChevron {
  opacity: 0.92;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex: none;
  font-size: 16px;
}

.fe-contact-faqItem.is-open .fe-contact-faqChevron {
  transform: rotate(180deg);
  color: rgba(168,85,247,0.95);
}

.fe-contact-faqPanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.40s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fe-contact-faqItem.is-open .fe-contact-faqPanel {
  max-height: 500px;
}

.fe-contact-faqInner {
  padding: 0 18px 18px 18px;
  color: var(--fe-contact-muted);
  line-height: 1.7;
  font-weight: 670;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
  padding-top: 14px;
}

html[data-theme="light"] .fe-contact-faqInner {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.fe-contact-faqItem.is-open {
  border-color: rgba(168, 85, 247, 0.28);
}

.fe-contact-faqItem.is-open .fe-contact-faqIcon {
  background: linear-gradient(135deg, rgba(168,85,247,0.22), rgba(59,130,246,0.16));
}

/* ============================================================================
   MAP SECTION
   ============================================================================ */
.fe-contact-map__head {
  margin-bottom: 14px;
}

.fe-contact-map__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--fe-contact-border);
  background: linear-gradient(135deg, rgba(236,72,153,0.16), rgba(168,85,247,0.12));
  color: var(--fe-contact-text);
  font-weight: 750;
  font-size: 14px;
  margin-bottom: 12px;
  box-shadow: var(--fe-contact-shadow-soft);
}

.fe-contact-map__subtitle {
  color: var(--fe-contact-muted);
}

.fe-contact-map__frame {
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.fe-contact-map__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.fe-contact-map__corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid;
  border-color: transparent;
  transition: all 0.32s ease;
}

.fe-contact-map__corner--tl {
  top: 12px;
  left: 12px;
  border-top-color: rgba(59,130,246,0.45);
  border-left-color: rgba(59,130,246,0.45);
  border-top-left-radius: 20px;
}

.fe-contact-map__corner--tr {
  top: 12px;
  right: 12px;
  border-top-color: rgba(168,85,247,0.45);
  border-right-color: rgba(168,85,247,0.45);
  border-top-right-radius: 20px;
}

.fe-contact-map__corner--bl {
  bottom: 12px;
  left: 12px;
  border-bottom-color: rgba(16,185,129,0.45);
  border-left-color: rgba(16,185,129,0.45);
  border-bottom-left-radius: 20px;
}

.fe-contact-map__corner--br {
  bottom: 12px;
  right: 12px;
  border-bottom-color: rgba(236,72,153,0.45);
  border-right-color: rgba(236,72,153,0.45);
  border-bottom-right-radius: 20px;
}

.fe-contact-map__frame:hover .fe-contact-map__corner {
  width: 80px;
  height: 80px;
}

.fe-contact-map__border-glow {
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  background: linear-gradient(135deg, 
    rgba(59,130,246,0.20), 
    rgba(168,85,247,0.18), 
    rgba(16,185,129,0.16),
    rgba(236,72,153,0.14));
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
  z-index: 0;
  filter: blur(12px);
}

.fe-contact-map__frame:hover .fe-contact-map__border-glow {
  opacity: 1;
}

.fe-contact-map__frame iframe {
  border-radius: 16px;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .fe-contact-map__frame iframe {
    height: 420px;
  }
}

html[data-theme="dark"] .fe-contact-map__frame iframe {
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.32);
}

.fe-contact-map__note-wrap {
  margin-top: 14px;
}

.fe-contact-map__note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--fe-contact-border);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--fe-contact-muted);
  box-shadow: var(--fe-contact-shadow-soft);
  transition: all 0.24s ease;
  line-height: 1.6;
}

html[data-theme="dark"] .fe-contact-map__note {
  background: rgba(16, 24, 40, 0.32);
}

.fe-contact-map__note:hover {
  transform: translateY(-2px);
  border-color: rgba(236,72,153,0.24);
}

.fe-contact-map__note-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--fe-contact-border);
  background: linear-gradient(135deg, rgba(251,191,36,0.22), rgba(245,158,11,0.16));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(251,191,36,0.16);
  transition: all 0.28s ease;
}

.fe-contact-map__note:hover .fe-contact-map__note-icon {
  transform: rotate(8deg) scale(1.08);
  box-shadow: 0 10px 28px rgba(251,191,36,0.24);
}

.fe-contact-map__note-icon i {
  font-size: 18px;
  color: rgba(251,191,36,0.95);
}

.fe-contact-map__note-content {
  flex: 1;
  font-weight: 650;
}

.fe-contact-map__note-content strong {
  color: var(--fe-contact-text);
  font-weight: 900;
}

.fe-contact-map__note-content code {
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid var(--fe-contact-border);
  background: rgba(255, 255, 255, 0.26);
  color: var(--fe-contact-text);
  font-weight: 850;
  text-decoration: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

html[data-theme="dark"] .fe-contact-map__note-content code {
  background: rgba(16, 24, 40, 0.26);
}

.fe-contact-map__note-content a {
  color: rgba(59,130,246,0.95);
  font-weight: 800;
  transition: color 0.22s ease;
  text-decoration: none;
  border-bottom: 1px solid rgba(59,130,246,0.30);
}

.fe-contact-map__note-content a:hover {
  color: rgba(168,85,247,0.95);
  border-bottom-color: rgba(168,85,247,0.40);
}

/* ============================================================================
   RESPONSIVE & ACCESSIBILITY
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .fe-contact-hero__bg,
  .fe-contact-card__bg-glow,
  .fe-contact-form__bg,
  .fe-contact-faqItem__glow,
  .fe-contact-map__border-glow {
    display: none;
  }
}



/* ============================================================================
   CONTACT PAGE ALERTS (OPTIONAL - FOR BANNER STYLE)
   Add this to your contact.css if you want styled banner alerts
   Currently NOT USED - using toasts instead
   ============================================================================ */

/* Flash Message Section */
.fe-contact-flash {
  padding-top: 20px;
  padding-bottom: 0;
}

.fe-contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--fe-contact-shadow-soft);
  position: relative;
  overflow: hidden;
  animation: feAlertSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes feAlertSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fe-contact-alert::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: currentColor;
  border-radius: 18px 0 0 18px;
}

/* Success Alert */
.fe-contact-alert--success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.08));
  border-color: rgba(16, 185, 129, 0.30);
  color: rgb(16, 185, 129);
}

html[data-theme="dark"] .fe-contact-alert--success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(5, 150, 105, 0.12));
  border-color: rgba(16, 185, 129, 0.40);
}

/* Error Alert */
.fe-contact-alert--error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.08));
  border-color: rgba(239, 68, 68, 0.30);
  color: rgb(239, 68, 68);
}

html[data-theme="dark"] .fe-contact-alert--error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.18), rgba(220, 38, 38, 0.12));
  border-color: rgba(239, 68, 68, 0.40);
}

/* Alert Icon */
.fe-contact-alert__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: currentColor;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 20px;
}

.fe-contact-alert--success .fe-contact-alert__icon {
  background: linear-gradient(135deg, rgb(16, 185, 129), rgb(5, 150, 105));
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.30);
}

.fe-contact-alert--error .fe-contact-alert__icon {
  background: linear-gradient(135deg, rgb(239, 68, 68), rgb(220, 38, 38));
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.30);
}

/* Alert Content */
.fe-contact-alert__content {
  flex: 1;
  min-width: 0;
}

.fe-contact-alert__title {
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.2px;
  color: var(--fe-contact-text);
  margin-bottom: 6px;
}

.fe-contact-alert__text {
  color: var(--fe-contact-muted);
  font-weight: 650;
  line-height: 1.6;
  font-size: 15px;
}

.fe-contact-alert--success .fe-contact-alert__text {
  color: rgb(16, 185, 129);
  filter: brightness(0.8);
}

html[data-theme="dark"] .fe-contact-alert--success .fe-contact-alert__text {
  filter: brightness(1.2);
}

.fe-contact-alert--error .fe-contact-alert__text {
  color: rgb(239, 68, 68);
  filter: brightness(0.8);
}

html[data-theme="dark"] .fe-contact-alert--error .fe-contact-alert__text {
  filter: brightness(1.2);
}

/* Alert List (for validation errors) */
.fe-contact-alert__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: grid;
  gap: 6px;
}

.fe-contact-alert__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 14px;
  color: var(--fe-contact-muted);
  line-height: 1.5;
}

.fe-contact-alert__item::before {
  content: "•";
  color: currentColor;
  font-weight: 900;
  font-size: 18px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 640px) {
  .fe-contact-alert {
    flex-direction: column;
    gap: 14px;
  }

  .fe-contact-alert__icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .fe-contact-alert__title {
    font-size: 16px;
  }

  .fe-contact-alert__text,
  .fe-contact-alert__item {
    font-size: 14px;
  }
}