/* ============================================
   CONTACT US PAGE - RESPONSIBLE.FIT
   Premium 2025 Design with Glassmorphism
   ============================================ */

/* DARK THEME (Default) */
:root[data-theme="dark"] {
  --fire-red: #FF0033;
  --ember-red: #DC0000;
  --blood-red: #8B0000;
  --obsidian: #0a0a0a;
  --void: #141414;
  --carbon: #1a1a1a;
  --steel: #2d2d2d;
  --iron: #3a3a3a;
  --silver: #8e8e8e;
  --mercury: #b0b0b0;
  --pearl: #e8e8e8;
  --white: #FFFFFF;
  --cyan-glow: #00F0FF;
  --purple-haze: #8B5CF6;
  --amber-pulse: #FFA500;
  --gradient-fire: linear-gradient(135deg, #FF0033 0%, #DC0000 50%, #8B0000 100%);
  --glow-red: 0 8px 32px rgba(255, 0, 51, 0.4);
  --glow-red-intense: 0 0 60px rgba(255, 0, 51, 0.6);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-hard: 0 16px 64px rgba(0, 0, 0, 0.4);
  --ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-power: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-tertiary: #1a1a1a;
  --text-primary: #FFFFFF;
  --text-secondary: #e8e8e8;
  --text-muted: #b0b0b0;
  --text-dimmed: #8e8e8e;
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-border: rgba(255, 255, 255, 0.05);
  --nav-bg: rgba(10, 10, 10, 0.8);
  --particle-color: 255, 0, 51;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

/* LIGHT THEME */
:root[data-theme="light"] {
  --fire-red: #FF0033;
  --ember-red: #DC0000;
  --blood-red: #8B0000;
  --obsidian: #ffffff;
  --void: #f8f8f8;
  --carbon: #f0f0f0;
  --steel: #e8e8e8;
  --iron: #e0e0e0;
  --silver: #6a6a6a;
  --mercury: #4a4a4a;
  --pearl: #1a1a1a;
  --white: #0a0a0a;
  --cyan-glow: #00F0FF;
  --purple-haze: #8B5CF6;
  --amber-pulse: #FFA500;
  --gradient-fire: linear-gradient(135deg, #FF0033 0%, #DC0000 50%, #8B0000 100%);
  --glow-red: 0 8px 32px rgba(255, 0, 51, 0.2);
  --glow-red-intense: 0 0 60px rgba(255, 0, 51, 0.3);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hard: 0 16px 64px rgba(0, 0, 0, 0.15);
  --ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-power: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-tertiary: #f0f0f0;
  --text-primary: #0a0a0a;
  --text-secondary: #1a1a1a;
  --text-muted: #4a4a4a;
  --text-dimmed: #6a6a6a;
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-border: rgba(220, 220, 220, 0.6);
  --nav-bg: rgba(255, 255, 255, 0.95);
  --particle-color: 255, 0, 51;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 0, 51, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
  mix-blend-mode: soft-light;
  transition: opacity 0.3s ease;
}

::selection {
  background: var(--fire-red);
  color: var(--white);
}

#canvas-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.content-layer {
  position: relative;
  z-index: 0;
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
  position: fixed;
  top: calc(50vh - 28px);
  right: 20px;
  z-index: 1000;
  background: var(--card-bg);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(var(--particle-color), 0.3), 0 0 0 2px var(--card-border);
  line-height: 1;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(var(--particle-color), 0.5), 0 0 0 2px var(--fire-red);
}

.theme-input {
  display: none;
}

.theme-icon {
  grid-column: 1/1;
  grid-row: 1/1;
  transition: transform 500ms;
  line-height: 0.1;
  font-size: 1.5rem;
}

.theme-icon--moon {
  transition-delay: 200ms;
  color: var(--fire-red);
}

.theme-icon--sun {
  transform: scale(0);
  color: var(--fire-red);
}

#theme-switch:checked + .theme-icon--moon {
  transform: rotate(360deg) scale(0);
}

#theme-switch:checked ~ .theme-icon--sun {
  transition-delay: 200ms;
  transform: scale(1) rotate(360deg);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  box-shadow: var(--shadow-medium);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.04em;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s var(--ease-smooth);
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--mercury);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.75rem 2rem;
  background: var(--gradient-fire);
  color: var(--white);
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: var(--glow-red);
  transition: all 0.3s var(--ease-power);
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--glow-red-intense);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 2rem 4rem;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-fire);
  top: -10%;
  right: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--purple-haze) 0%, transparent 70%);
  bottom: -5%;
  left: -5%;
  animation-delay: 3s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 0, 51, 0.08);
  border: 1px solid rgba(255, 0, 51, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fire-red);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease-smooth);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--fire-red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.2s backwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--mercury);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.4s backwards;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: 4rem 2rem 6rem;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}

.info-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 0, 51, 0.3);
  box-shadow: var(--glow-red), var(--shadow-hard);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-fire);
  box-shadow: 0 8px 32px rgba(255, 0, 51, 0.4);
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.info-icon i {
  font-size: 2rem;
  color: white;
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 48px rgba(255, 0, 51, 0.6);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.info-card p {
  color: var(--mercury);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fire-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.info-link:hover {
  gap: 0.75rem;
}

/* Main Contact Area */
.contact-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Form Container */
.contact-form-container {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    #ff6b6b,
    #4ecdc4,
    #45b7d1,
    #96ceb4,
    #feca57,
    #ff9ff3,
    #ff6b6b
  );
  z-index: -2;
  filter: blur(15px);
  opacity: 0.3;
  animation: rotate-gradient 15s linear infinite;
}

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

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--mercury);
  font-size: 0.95rem;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--pearl);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group label i {
  color: var(--fire-red);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s var(--ease-smooth);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--silver);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-image: conic-gradient(
    from 0deg,
    #ff6b6b,
    #4ecdc4,
    #45b7d1,
    #96ceb4,
    #feca57,
    #ff9ff3,
    #ff6b6b
  ) 1;
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.2);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Custom Dropdown Styles */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-selected {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s var(--ease-smooth);
}

.dropdown-selected:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 0, 51, 0.3);
}

.custom-dropdown.active .dropdown-selected {
  background: rgba(255, 255, 255, 0.08);
  border-image: conic-gradient(
    from 0deg,
    #ff6b6b,
    #4ecdc4,
    #45b7d1,
    #96ceb4,
    #feca57,
    #ff9ff3,
    #ff6b6b
  ) 1;
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.2);
}

.selected-text {
  color: var(--white);
}

.selected-text.placeholder {
  color: var(--silver);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.custom-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-card {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 30, 0.98);
  background-image: linear-gradient(
    139deg,
    rgba(26, 26, 30, 0.98) 0%,
    rgba(20, 20, 25, 0.98) 50%,
    rgba(26, 20, 30, 0.98) 100%
  );
  border-radius: 12px;
  padding: 10px 0px;
  display: none;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

.custom-dropdown.active .dropdown-card {
  display: flex;
  animation: dropdownFadeIn 0.3s ease;
}

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

.dropdown-separator {
  border-top: 1.5px solid rgba(255, 255, 255, 0.1);
  margin: 5px 10px;
}

.dropdown-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0px 8px;
  margin: 0;
}

.dropdown-element {
  display: flex;
  align-items: center;
  color: #b0b0b0;
  gap: 12px;
  transition: all 0.3s ease-out;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
}

.dropdown-element svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  transition: all 0.3s ease-out;
  stroke: #b0b0b0;
}

.dropdown-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.dropdown-element:hover {
  background: linear-gradient(135deg, #FF0033 0%, #DC0000 100%);
  color: #ffffff;
  transform: translate(2px, -2px);
  box-shadow: 0 4px 12px rgba(255, 0, 51, 0.3);
}

.dropdown-element:hover svg {
  stroke: #ffffff;
  transform: scale(1.1);
}

.dropdown-element:active {
  transform: scale(0.98);
}

.dropdown-card::-webkit-scrollbar {
  width: 6px;
}

.dropdown-card::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.dropdown-card::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 51, 0.5);
  border-radius: 10px;
}

.dropdown-card::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 0, 51, 0.7);
}

.form-submit {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

/* Send Message Button (From Uiverse.io) */
.button {
  --primary: #ff5569;
  --neutral-1: #f7f8f7;
  --neutral-2: #e7e7e7;
  --radius: 14px;

  cursor: pointer;
  border-radius: var(--radius);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  border: none;
  box-shadow: 0 0.5px 0.5px 1px rgba(255, 255, 255, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.2), 0 4px 5px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  min-width: 200px;
  padding: 20px;
  height: 68px;
  font-family: "Galano Grotesque", Poppins, Montserrat, sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
}

.button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.3), 0 10px 3px -3px rgba(0, 0, 0, 0.04);
}

.button:active {
  transform: scale(1);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 10px 3px -3px rgba(0, 0, 0, 0.2);
}

.button:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2.5px solid transparent;
  background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box,
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)) border-box;
  z-index: 0;
  transition: all 0.4s ease;
}

.button:hover::after {
  transform: scale(1.05, 1.1);
  box-shadow: inset 0 -1px 3px 0 rgba(255, 255, 255, 1);
}

.button::before {
  content: "";
  inset: 7px 6px 6px 6px;
  position: absolute;
  background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
  border-radius: 30px;
  filter: blur(0.5px);
  z-index: 2;
}

.state p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.state .icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.state .icon svg {
  overflow: visible;
}

.outline {
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  inset: -2px -3.5px;
}

.outline::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 180deg,
    transparent 60%,
    white 80%,
    transparent 100%
  );
  animation: spin 2s linear infinite;
  animation-play-state: paused;
}

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

.button:hover .outline {
  opacity: 1;
}

.button:hover .outline::before {
  animation-play-state: running;
}

.state p span {
  display: block;
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.03s);
}

.button:hover p span {
  opacity: 1;
  animation: wave 0.5s ease forwards calc(var(--i) * 0.02s);
}

.button:focus p span {
  opacity: 1;
  animation: disapear 0.6s ease forwards calc(var(--i) * 0.03s);
}

@keyframes wave {
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
    color: var(--primary);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(5px) rotate(-90deg);
    color: var(--primary);
    filter: blur(5px);
  }
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
    filter: blur(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

@keyframes disapear {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(5px) translateY(20px);
    color: var(--primary);
    filter: blur(5px);
  }
}

.state--default .icon svg {
  animation: land 0.6s ease forwards;
}

.button:hover .state--default .icon {
  transform: rotate(45deg) scale(1.25);
}

.button:focus .state--default svg {
  animation: takeOff 0.8s linear forwards;
}

.button:focus .state--default .icon {
  transform: rotate(0) scale(1.25);
}

@keyframes takeOff {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateX(70px) rotate(45deg) scale(2);
  }
  100% {
    opacity: 0;
    transform: translateX(160px) rotate(45deg) scale(0);
  }
}

@keyframes land {
  0% {
    transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2);
    opacity: 0;
    filter: blur(3px);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
}

.state--default .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 0;
  left: -5px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5));
}

.button:focus .state--default .icon:before {
  animation: contrail 0.8s linear forwards;
}

@keyframes contrail {
  0% {
    width: 0;
    opacity: 1;
  }
  8% {
    width: 15px;
  }
  60% {
    opacity: 0.7;
    width: 80px;
  }
  100% {
    opacity: 0;
    width: 160px;
  }
}

.state {
  padding-left: 29px;
  z-index: 2;
  display: flex;
  position: relative;
}

.state--default span:nth-child(4) {
  margin-right: 5px;
}

.state--sent {
  display: none;
}

.state--sent svg {
  transform: scale(1.25);
  margin-right: 8px;
}

.button:focus .state--default {
  position: absolute;
}

.button:focus .state--sent {
  display: flex;
}

.button:focus .state--sent span {
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.2s);
}

.button:focus .state--sent .icon svg {
  opacity: 0;
  animation: appear 1.2s ease forwards 0.8s;
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: scale(4) rotate(-40deg);
    color: var(--primary);
    filter: blur(4px);
  }
  30% {
    opacity: 1;
    transform: scale(0.6);
    filter: blur(1px);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.response-card,
.faq-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
}

.response-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00ddeb, #00b8d9);
  box-shadow: 0 8px 32px rgba(0, 221, 235, 0.3);
  margin-bottom: 1.5rem;
}

.response-icon i {
  font-size: 1.75rem;
  color: white;
}

.response-card h3,
.faq-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.response-card p {
  color: var(--mercury);
  line-height: 1.7;
}

.response-card strong {
  color: var(--fire-red);
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.faq-item h4 i {
  color: var(--fire-red);
  font-size: 0.9rem;
}

.faq-item p {
  color: var(--mercury);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */

.social-section {
  padding: 4rem 2rem 6rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--mercury);
}

.social-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

/* Social Media Hover Effect (From Uiverse.io) */
.main_back {
  position: absolute;
  border-radius: 10px;
  transform: rotate(90deg);
  width: 11em;
  height: 11em;
  background: linear-gradient(270deg, #03a9f4, #cc39a4, #ffb5d2);
  z-index: -2;
  box-shadow: inset 0px 0px 180px 5px #ffffff;
}

.main {
  display: flex;
  flex-wrap: wrap;
  width: 14em;
  align-items: center;
  justify-content: center;
  z-index: -1;
  position: relative;
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-top-left-radius: 10px;
  background: lightgrey;
  transition: 0.4s ease-in-out, 0.2s background-color ease-in-out,
    0.2s background-image ease-in-out;
  background: rgba(255, 255, 255, 0.596);
  backdrop-filter: blur(5px);
  border: 1px solid transparent;
  -webkit-backdrop-filter: blur(5px);
}

.card .instagram {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #cc39a4;
}

.card:nth-child(2) {
  border-radius: 0px;
}

.card:nth-child(2) .twitter {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #03a9f4;
}

.card:nth-child(3) {
  border-top-right-radius: 10px;
  border-top-left-radius: 0px;
}

.card:nth-child(3) .dribble {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #ffb5d2;
}

.card:nth-child(4) {
  border-radius: 0px;
}

.card:nth-child(4) .codepen {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: black;
}

.card:nth-child(5) {
  border-radius: 0px;
}

.card:nth-child(5) .uiverse {
  position: absolute;
  margin-left: 0.2em;
  margin-top: 0.2em;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.card:nth-child(6) {
  border-radius: 0px;
}

.card:nth-child(6) .discord {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #8c9eff;
}

.card:nth-child(7) {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 0px;
}

.card:nth-child(7) .github {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: black;
}

.card:nth-child(8) {
  border-radius: 0px;
}

.card:nth-child(8) .telegram {
  opacity: 0;
  transition: 0.2s ease-in-out;
  fill: #29b6f6;
}

.card:nth-child(9) {
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0px;
}

.card:nth-child(9) .reddit {
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.main:hover {
  width: 14em;
  cursor: pointer;
}

.main:hover .main_back {
  opacity: 0;
}

.main:hover .card {
  margin: 0.2em;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.main:hover .card:nth-child(5) {
  border: transparent;
}

.main:hover .text {
  opacity: 0;
  z-index: -3;
}

.main:hover .instagram {
  opacity: 1;
}

.main:hover .twitter {
  opacity: 1;
}

.main:hover .dribble {
  opacity: 1;
}

.main:hover .codepen {
  opacity: 1;
}

.main:hover .uiverse {
  opacity: 1;
}

.main:hover .discord {
  opacity: 1;
}

.main:hover .github {
  opacity: 1;
}

.main:hover .telegram {
  opacity: 1;
}

.main:hover .reddit {
  opacity: 1;
}

.card:nth-child(1):hover {
  background-color: #cc39a4;
}

.card:nth-child(1):hover .instagram {
  fill: white;
}

.card:nth-child(2):hover {
  background-color: #03a9f4;
}

.card:nth-child(2):hover .twitter {
  fill: white;
}

.card:nth-child(3):hover {
  background-color: #ffb5d2;
}

.card:nth-child(3):hover .dribble {
  fill: white;
}

.card:nth-child(4):hover {
  background-color: #1e1f26;
}

.card:nth-child(4):hover .codepen {
  fill: white;
}

.card:nth-child(5):hover {
  animation: backgroundIMG 0.1s;
  animation-fill-mode: forwards;
}

.card:nth-child(5):hover .uiverse #paint0_linear_501_142 stop {
  stop-color: white;
}

.card:nth-child(5):hover .uiverse #paint1_linear_501_142 stop {
  stop-color: white;
}

.card:nth-child(5):hover .uiverse #paint2_linear_501_142 stop {
  stop-color: white;
}

@keyframes backgroundIMG {
  100% {
    background-image: linear-gradient(#bf66ff, #6248ff, #00ddeb);
  }
}

.card:nth-child(6):hover {
  background-color: #8c9eff;
}

.card:nth-child(6):hover .discord {
  fill: white;
}

.card:nth-child(7):hover {
  background-color: black;
}

.card:nth-child(7):hover .github {
  fill: white;
}

.card:nth-child(8):hover {
  background-color: #29b6f6;
}

.card:nth-child(8):hover .telegram > path:nth-of-type(1) {
  fill: white;
}

.card:nth-child(8):hover .telegram > path:nth-of-type(2) {
  fill: #29b6f6;
}

.card:nth-child(8):hover .telegram > path:nth-of-type(3) {
  fill: #29b6f6;
}

.card:nth-child(9):hover {
  background-color: rgb(255, 69, 0);
}

.card:nth-child(9) .reddit > g circle {
  fill: rgb(255, 69, 0);
}

.card:nth-child(9) .reddit > g path {
  fill: white;
}

.text {
  position: absolute;
  font-size: 0.7em;
  transition: 0.4s ease-in-out;
  color: black;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.33em;
  z-index: 3;
}

/* 3D Social Media Buttons */
.parent {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.child {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.3s cubic-bezier(0.68, 0.85, 0.265, 1.85);
  border-radius: 10px;
  margin: 5px;
  box-shadow:
    inset 1px 1px 2px #fff,
    0 0 10px rgba(255, 255, 255, 0.2);
}

.child:hover {
  background-color: white;
  background-position:
    -100px 100px,
    -100px 100px;
  transform: perspective(300px) rotateX(60deg) translateY(4px);
}

.child-1:hover {
  box-shadow: 0px 20px 30px #1e90ff;
}

.child-2:hover {
  box-shadow: 0px 20px 30px #ff00ff;
}

.child-3:hover {
  box-shadow: 0px 20px 30px rgba(51, 51, 51, 0.5);
}

.child-4:hover {
  box-shadow: 0px 20px 30px #4267b2;
}

.child-5:hover {
  box-shadow: 0px 20px 30px rgba(85, 85, 85, 0.6);
}

.child-6:hover {
  box-shadow: 0px 20px 30px #E60023;
}

.child-7:hover {
  box-shadow: 0px 20px 30px #FF4500;
}

.child-8:hover {
  box-shadow: 0px 20px 30px #5865F2;
}

.child-9:hover {
  box-shadow: 0px 20px 30px #FF0000;
}

.child .social-btn {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  font-size: 40px;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.85, 0.265, 1.55);
}

.child:hover > .social-btn {
  transform: translate3d(0px, 35px, 50px) perspective(150px) rotateX(-60deg)
    translateY(4px) translateZ(20px);
}

.child .social-btn svg {
  width: 1.5em;
  height: 1.5em;
  transition: all 0.3s ease;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 6rem 2rem 2rem;
  background: var(--void);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--fire-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--mercury);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--fire-red);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: all 0.3s;
}

.newsletter-input:focus {
  border-color: var(--fire-red);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  padding: 0.75rem 1rem;
  background: var(--gradient-fire);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--silver);
  font-size: 0.875rem;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s var(--ease-smooth);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .contact-main {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .theme-toggle {
    width: 50px;
    height: 50px;
    right: 15px;
  }

  .theme-icon {
    font-size: 1.3rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
    min-height: 50vh;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
  }

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

  .button {
    width: 100%;
    min-width: unset;
  }

  .main {
    transform: scale(0.9);
  }

  .parent {
    gap: 8px;
    padding: 2rem 0;
  }

  .child {
    width: 80px;
    height: 80px;
    margin: 3px;
  }

  .child .social-btn {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .theme-toggle {
    width: 52px;
    height: 52px;
    right: 15px;
    bottom: 80px;
    top: auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .contact-form-container {
    padding: 1.5rem 1rem;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .parent {
    gap: 5px;
    padding: 1.5rem 0;
  }

  .child {
    width: 65px;
    height: 65px;
    margin: 2px;
  }

  .child .social-btn {
    font-size: 26px;
  }
}

