/* Roobo Pro - Contact Page Design */
:root {
  --primary: #00d4ff;
  --primary-glow: rgba(0, 212, 255, 0.35);
  --secondary: #7c3aed;
  --secondary-glow: rgba(124, 58, 237, 0.35);
  --accent: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.3);
  --neon-green: #22d3ee;
  --dark-bg: #06080d;
  --dark-surface: #0c1017;
  --card-bg: rgba(12, 16, 23, 0.85);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-main: #f0f4f8;
  --text-muted: #7a8ba7;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.7;
}

/* --- Dynamic Background --- */
.contact-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.contact-bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  animation: bg-pulse 20s ease-in-out infinite alternate;
}

.bg-grid {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(800px) rotateX(60deg);
  animation: grid-scroll 30s linear infinite;
}

@keyframes bg-pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@keyframes grid-scroll {
  from {
    transform: perspective(800px) rotateX(60deg) translateY(0);
  }

  to {
    transform: perspective(800px) rotateX(60deg) translateY(60px);
  }
}

/* --- Floating Orbs --- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  animation: orb-float 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 350px;
  height: 350px;
  background: var(--primary-glow);
  top: -80px;
  right: -80px;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: var(--secondary-glow);
  bottom: -60px;
  left: -60px;
  animation-delay: -6s;
}

@keyframes orb-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -30px) scale(1.08);
  }
}

/* --- Navigation --- */
.navbar {
  background: rgba(6, 8, 13, 0.6) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  transition: all 0.4s ease;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.5px;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px var(--primary-glow);
  transition: transform 0.4s ease;
}

.logo-icon:hover {
  transform: rotate(90deg);
}

.logo-icon::after {
  content: 'R';
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 0.8rem;
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.35s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* --- Page Layout --- */
.contact-wrapper {
  padding: 130px 0 80px;
  position: relative;
  z-index: 1;
}

/* --- Left Info Section --- */
.info-section {
  padding-right: 2rem;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  margin-bottom: 1.5rem;
}

h1.contact-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

/* --- Contact Info Cards --- */
.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.contact-method:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 6px 18px var(--primary-glow);
  transition: transform 0.3s ease;
}

.contact-method:hover .icon-box {
  transform: scale(1.08) rotate(-5deg);
}

.method-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}

.method-value {
  font-weight: 700;
  font-size: 1rem;
  color: white;
  text-decoration: none;
}

/* --- Form Container --- */
.glass-form-card {
  background: var(--card-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.glass-form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--neon-green));
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.form-control {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.9rem 1.2rem !important;
  color: white !important;
  font-size: 0.95rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.form-control:focus {
  background: rgba(0, 212, 255, 0.03) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15), 0 0 16px rgba(0, 212, 255, 0.1) !important;
  outline: none !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.15);
}

textarea.form-control {
  resize: none;
}

/* --- Submit Button --- */
.btn-transmit {
  width: 100%;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.25);
  cursor: pointer;
}

.btn-transmit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 212, 255, 0.4);
}

.btn-transmit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}

.btn-transmit:hover::after {
  left: 100%;
}

/* --- Success Modal --- */
.modal-content {
  background: rgba(6, 8, 13, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.success-icon-wrap {
  width: 90px;
  height: 90px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 2.5rem;
  border: 2px solid var(--primary);
  box-shadow: 0 0 28px var(--primary-glow);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .contact-wrapper {
    padding: 110px 0 40px;
  }

  .info-section {
    padding-right: 0;
    margin-bottom: 3.5rem;
    text-align: center;
  }

  .contact-lead {
    margin: 0 auto 2.5rem;
  }

  .contact-method {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .glass-form-card {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  h1.contact-title {
    font-size: 2.2rem;
  }

  .glass-form-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
  }

  .contact-method {
    padding: 1rem;
  }
}