/* ============================================
   CONTACT SECTION REDESIGN - "MISSION CONTROL"
   Modern, Engaging Contact Section with Glassmorphism
   ============================================ */

/* ===== ROOT VARIABLES ===== */
:root {
  /* Netflix-inspired colors maintained */
  --netflix-red: #E50914;
  --netflix-dark: #141414;
  --netflix-darker: #0a0a0a;

  /* New accent colors */
  --accent-blue: #00D9FF;
  --accent-green: #00FF85;
  --accent-purple: #A855F7;

  /* Glassmorphism */
  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);

  /* Spacing */
  --section-padding: 80px 0;
  --card-gap: 20px;
}

/* ===== SECTION BASE ===== */
.contact-redesign {
  position: relative;
  padding: var(--section-padding);
  background: var(--netflix-darker);
  overflow: hidden;
  min-height: 100vh;
}

/* ===== ANIMATED BACKGROUNDS ===== */
.contact-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(229, 9, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 9, 20, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.5;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.contact-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
  animation: gradientPulse 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes gradientPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

.contact-redesign .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== SECTION HEADER ===== */
.section-header-redesign {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

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

.status-indicator-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
  padding: 60px 0 20px 0;
}

/* ===== ORBITAL RING SYSTEM ===== */
.status-pulse {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Outer Orbital Ring */
.status-pulse::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent-green);
  border-right-color: rgba(0, 255, 133, 0.3);
  animation: orbitRotate 4s linear infinite;
  filter: drop-shadow(0 0 15px rgba(0, 255, 133, 0.5));
}

/* Middle Orbital Ring */
.status-pulse::after {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: var(--accent-blue);
  border-left-color: rgba(0, 217, 255, 0.3);
  animation: orbitRotateReverse 3s linear infinite;
  filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.4));
}

@keyframes orbitRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbitRotateReverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* Particle System */
.status-pulse .orbit-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
  animation: particleOrbit 3s linear infinite;
}

.status-pulse .orbit-particle:nth-child(1) {
  top: 0;
  left: 50%;
  animation-delay: 0s;
}

.status-pulse .orbit-particle:nth-child(2) {
  top: 50%;
  right: 0;
  animation-delay: 0.75s;
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
}

.status-pulse .orbit-particle:nth-child(3) {
  bottom: 0;
  left: 50%;
  animation-delay: 1.5s;
}

.status-pulse .orbit-particle:nth-child(4) {
  top: 50%;
  left: 0;
  animation-delay: 2.25s;
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
}

@keyframes particleOrbit {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

/* Inner Glow Rings */
.status-pulse .glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 133, 0.1);
  animation: glowPulse 2s ease-in-out infinite;
}

.status-pulse .glow-ring:nth-child(1) {
  width: 70%;
  height: 70%;
  animation-delay: 0s;
}

.status-pulse .glow-ring:nth-child(2) {
  width: 55%;
  height: 55%;
  animation-delay: 0.5s;
  border-color: rgba(0, 217, 255, 0.1);
}

.status-pulse .glow-ring:nth-child(3) {
  width: 40%;
  height: 40%;
  animation-delay: 1s;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Data Stream Lines */
.status-pulse .data-stream {
  position: absolute;
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--accent-green) 50%,
    transparent 100%);
  animation: dataFlow 2s ease-in-out infinite;
}

.status-pulse .data-stream:nth-child(1) {
  top: -50px;
  left: 30%;
  animation-delay: 0s;
}

.status-pulse .data-stream:nth-child(2) {
  top: -50px;
  right: 30%;
  animation-delay: 0.5s;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--accent-blue) 50%,
    transparent 100%);
}

.status-pulse .data-stream:nth-child(3) {
  top: -50px;
  left: 50%;
  animation-delay: 1s;
}

@keyframes dataFlow {
  0% {
    opacity: 0;
    transform: translateY(0) scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: translateY(20px) scaleY(1);
  }
  100% {
    opacity: 0;
    transform: translateY(40px) scaleY(0.5);
  }
}

/* Status Badge - Centered in Orbital System */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: rgba(0, 255, 133, 0.12);
  border: 2px solid rgba(0, 255, 133, 0.4);
  border-radius: 50px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 10;
  box-shadow:
    0 0 30px rgba(0, 255, 133, 0.3),
    inset 0 0 20px rgba(0, 255, 133, 0.1);
  animation: statusGlow 3s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-badge:hover {
  transform: scale(1.05);
  background: rgba(0, 255, 133, 0.18);
  border-color: rgba(0, 255, 133, 0.6);
  box-shadow:
    0 0 40px rgba(0, 255, 133, 0.5),
    inset 0 0 25px rgba(0, 255, 133, 0.15);
}

@keyframes statusGlow {
  0%, 100% {
    box-shadow:
      0 0 25px rgba(0, 255, 133, 0.3),
      inset 0 0 20px rgba(0, 255, 133, 0.1);
  }
  50% {
    box-shadow:
      0 0 40px rgba(0, 255, 133, 0.5),
      0 0 60px rgba(0, 255, 133, 0.2),
      inset 0 0 25px rgba(0, 255, 133, 0.15);
  }
}

/* Status Badge Shine Effect */
.status-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent);
  border-radius: 50px;
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-green);
  border-radius: 50%;
  position: relative;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow:
    0 0 15px var(--accent-green),
    0 0 30px rgba(0, 255, 133, 0.5);
}

/* Status Dot Ripple Effect */
.status-dot::before,
.status-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-green);
  animation: dotRipple 2s ease-out infinite;
}

.status-dot::after {
  animation-delay: 1s;
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes dotRipple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

.status-text {
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 255, 133, 0.5);
  position: relative;
}

/* Status Text Glitch Effect on Hover */
.status-badge:hover .status-text {
  animation: textGlitch 0.3s ease-in-out;
}

@keyframes textGlitch {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

.section-title-redesign {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.title-line {
  display: block;
  color: #ffffff;
  animation: titleSlide 0.8s ease-out;
  animation-fill-mode: both;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

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

.gradient-text {
  background: linear-gradient(135deg,
    #B20710 0%,
    var(--netflix-red) 50%,
    #FF4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.section-subtitle-redesign {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

/* ===== CONTACT GRID LAYOUT ===== */
.contact-grid-redesign {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== GLASS CARD COMPONENT ===== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--netflix-red), var(--accent-purple));
  border-radius: 2px;
}

/* ===== LEFT COLUMN ===== */
.contact-left-column {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
  position: sticky;
  top: 100px;
}

/* ===== STATUS DASHBOARD ===== */
.status-dashboard {
  padding: 28px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dashboard-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 1px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent-green);
}

@keyframes livePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.timezone-display {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 12px;
  margin-bottom: 20px;
}

.clock-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-radius: 12px;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 217, 255, 0.3);
}

.current-time {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
}

.timezone-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.availability-schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.schedule-item.active {
  background: rgba(0, 255, 133, 0.08);
  border-color: rgba(0, 255, 133, 0.2);
}

.schedule-item:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.day-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.time-range {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Courier New', monospace;
}

/* ===== RESPONSE METRICS ===== */
.response-metrics {
  padding: 28px;
}

.metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.metric-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  flex-shrink: 0;
}

.metric-item:nth-child(1) .metric-icon {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.metric-item:nth-child(2) .metric-icon {
  background: linear-gradient(135deg, var(--accent-green), #00CC6A);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 255, 133, 0.3);
}

.metric-item:nth-child(3) .metric-icon {
  background: linear-gradient(135deg, var(--accent-blue), #0099CC);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.metric-value {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

/* ===== QUICK CONTACT CARDS ===== */
.quick-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-contact-cards .card-title {
  font-size: 16px;
  margin-bottom: 16px;
  padding: 0 8px;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.contact-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent);
  transition: left 0.5s ease;
}

.contact-method-card:hover::before {
  left: 100%;
}

.contact-method-card:hover {
  transform: translateX(8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-method-card:active {
  transform: translateX(8px) scale(0.98);
}

.method-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.method-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 24px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.email-icon {
  background: linear-gradient(135deg, var(--netflix-red), #FF4655);
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.4);
}

.phone-icon {
  background: linear-gradient(135deg, var(--accent-green), #00CC6A);
  box-shadow: 0 4px 16px rgba(0, 255, 133, 0.4);
}

.linkedin-icon {
  background: linear-gradient(135deg, #0A66C2, #0E76D1);
  box-shadow: 0 4px 16px rgba(10, 102, 194, 0.4);
}

.location-icon {
  background: linear-gradient(135deg, var(--accent-purple), #9333EA);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.4);
}

.contact-method-card:hover .method-icon {
  transform: scale(1.1) rotate(5deg);
}

.icon-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  padding: 3px 8px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.method-content {
  flex: 1;
}

.method-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.method-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 6px 0;
  font-family: 'Courier New', monospace;
}

.method-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.method-arrow {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.contact-method-card:hover .method-arrow {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}

.location-info {
  padding: 20px;
  cursor: default;
}

.location-info:hover {
  transform: none;
}

/* ===== SOCIAL CONNECT BAR ===== */
.social-connect-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 20px;
}

.social-bar-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.social-icons-redesign {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-icon-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon-btn:hover::before {
  opacity: 1;
}

.social-icon-btn.github {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-btn.github:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.social-icon-btn.linkedin {
  background: rgba(10, 102, 194, 0.1);
  border: 1px solid rgba(10, 102, 194, 0.2);
}

.social-icon-btn.linkedin:hover {
  background: #0A66C2;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.5);
}

.social-icon-btn.email {
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.2);
}

.social-icon-btn.email:hover {
  background: var(--netflix-red);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.5);
}

.social-icon-btn.phone {
  background: rgba(0, 255, 133, 0.1);
  border: 1px solid rgba(0, 255, 133, 0.2);
}

.social-icon-btn.phone:hover {
  background: var(--accent-green);
  color: #000;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 255, 133, 0.5);
}

/* ===== RIGHT COLUMN - CONTACT FORM ===== */
.contact-right-column {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
}

.contact-form-redesign {
  padding: 40px;
}

.form-header-redesign {
  margin-bottom: 36px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--netflix-red);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-title-redesign {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.form-subtitle-redesign {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ===== FORM STYLES ===== */
.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-redesign {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.required-star {
  color: var(--netflix-red);
  font-size: 16px;
}

.optional-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.input-wrapper,
.textarea-wrapper {
  position: relative;
}

.input-wrapper input,
.textarea-wrapper textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.input-wrapper input:focus,
.textarea-wrapper textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--netflix-red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.input-wrapper input::placeholder,
.textarea-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.textarea-wrapper {
  position: relative;
}

.textarea-wrapper textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.char-counter {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Courier New', monospace;
  pointer-events: none;
}

.input-border {
  display: none; /* Removed underline animation since border already provides focus indicator */
}

/* ===== FORM ACTIONS ===== */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.btn-submit-redesign {
  position: relative;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--netflix-red), #D10812);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
}

.btn-submit-redesign:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.6);
}

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

.btn-submit-redesign:disabled {
  background: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.5;
}

.btn-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 1;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent);
  transition: left 0.5s ease;
}

.btn-submit-redesign:hover:not(:disabled) .btn-shine {
  left: 100%;
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.form-security-note i {
  color: var(--accent-green);
}

/* ===== FORM MESSAGE ===== */
.form-message {
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 20px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  background: rgba(0, 255, 133, 0.1);
  border: 1px solid rgba(0, 255, 133, 0.3);
}

.form-message.error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.message-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.form-message.success .message-icon::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--accent-green);
  font-size: 20px;
}

.form-message.error .message-icon::before {
  content: '\f06a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #DC2626;
  font-size: 20px;
}

/* ===== QUICK ACTION TIP ===== */
.quick-action-tip {
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tip-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 12px;
  font-size: 22px;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.tip-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.tip-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.phone-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-actions {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
}

.fab-action {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fabFloat 3s ease-in-out infinite;
}

@keyframes fabFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.fab-action:hover {
  transform: translateY(-8px) scale(1.1);
  animation: none;
}

.email-fab {
  background: linear-gradient(135deg, var(--netflix-red), #FF4655);
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.5);
}

.email-fab:hover {
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.7);
}

.phone-fab {
  background: linear-gradient(135deg, var(--accent-green), #00CC6A);
  box-shadow: 0 4px 20px rgba(0, 255, 133, 0.5);
  animation-delay: 0.2s;
}

.phone-fab:hover {
  box-shadow: 0 8px 30px rgba(0, 255, 133, 0.7);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .contact-grid-redesign {
    grid-template-columns: 400px 1fr;
    gap: 30px;
  }

  .contact-left-column {
    top: 80px;
  }
}

@media (max-width: 992px) {
  .contact-redesign {
    padding: 60px 0;
  }

  .contact-grid-redesign {
    grid-template-columns: 1fr;
    gap: 30px;
    display: flex;
    flex-direction: column;
  }

  .contact-left-column {
    position: static;
    max-width: 600px;
    margin: 0 auto;
    order: 2;
  }

  .contact-right-column {
    order: 1;
  }

  .section-header-redesign {
    margin-bottom: 2.5rem;
  }

  .section-title-redesign {
    font-size: clamp(40px, 10vw, 60px);
  }
}

@media (max-width: 768px) {
  .contact-redesign .container {
    padding: 0 24px;
  }

  .section-header-redesign {
    margin-bottom: 2rem;
  }

  .section-title-redesign {
    font-size: clamp(36px, 10vw, 48px);
  }

  .section-subtitle-redesign {
    font-size: 16px;
  }

  /* Adjust Orbital System for Tablets */
  .status-pulse {
    width: 240px;
    height: 240px;
  }

  .status-indicator-wrapper {
    padding: 50px 0 20px 0;
  }

  .contact-form-redesign {
    padding: 28px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-title-redesign {
    font-size: 24px;
  }

  .floating-actions {
    bottom: 24px;
    right: 24px;
  }

  .fab-action {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .quick-contact-cards .card-title {
    font-size: 15px;
  }

  .contact-method-card {
    padding: 16px;
  }

  .method-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .contact-redesign {
    padding: 50px 0;
  }

  .contact-redesign .container {
    padding: 0 20px;
  }

  .section-title-redesign {
    font-size: 32px;
  }

  .status-badge {
    padding: 10px 20px;
    font-size: 11px;
  }

  .status-text {
    font-size: 11px;
    letter-spacing: 1px;
  }

  /* Adjust Orbital System for Mobile */
  .status-pulse {
    width: 200px;
    height: 200px;
  }

  .status-indicator-wrapper {
    padding: 40px 0 15px 0;
    margin-bottom: 30px;
  }

  /* Simplify animations on mobile for performance */
  .status-pulse .data-stream {
    height: 30px;
    top: -40px;
  }

  .dashboard-header h3,
  .card-title {
    font-size: 16px;
  }

  .current-time {
    font-size: 24px;
  }

  .metric-value {
    font-size: 20px;
  }

  .contact-method-card {
    gap: 14px;
    padding: 14px;
  }

  .method-title {
    font-size: 15px;
  }

  .method-value {
    font-size: 13px;
  }

  .form-title-redesign {
    font-size: 22px;
  }

  .form-subtitle-redesign {
    font-size: 14px;
  }

  .btn-submit-redesign {
    padding: 16px 32px;
    font-size: 15px;
  }

  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .fab-action {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .social-connect-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ===== DARK MODE ENHANCEMENTS ===== */
@media (prefers-color-scheme: dark) {
  .contact-redesign {
    /* Already optimized for dark mode */
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .contact-redesign {
    background: #ffffff;
    color: #000000;
  }

  .floating-actions,
  .contact-bg-grid,
  .contact-bg-gradient {
    display: none;
  }

  .glass-card {
    background: #f5f5f5;
    border: 1px solid #ddd;
  }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible for keyboard navigation */
.contact-method-card:focus-visible,
.social-icon-btn:focus-visible,
.fab-action:focus-visible,
.btn-submit-redesign:focus-visible {
  outline: 3px solid var(--netflix-red);
  outline-offset: 2px;
}

input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--netflix-red);
  outline-offset: 2px;
}