/* ═══════════════════════════════════════════════
   CONTACT PAGE — STYLES
   Font: Inter throughout
═══════════════════════════════════════════════ */

:root {
  --orange:    #FF5C00;
  --orange-dk: #e04e00;
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #161616;
  --border:    rgba(255,255,255,0.08);
  --gray:      rgba(255,255,255,0.55);
  --white:     #ffffff;
  --radius:    16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section { padding: 100px 20px; }
.accent { color: var(--orange); }

.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,92,0,0.08);
  border: 1px solid rgba(255,92,0,0.2);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}

.section-heading {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 14px;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  all: unset; display: block; position: fixed;
  top: 20px; left: 50%; transform: translateX(-50%);
  width: 90%; max-width: 1100px; z-index: 1000;
}

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; border-radius: 16px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.navbar-logo {
  text-decoration: none; font-weight: 700; font-size: 1.2rem;
  color: var(--white); white-space: nowrap; flex-shrink: 0;
}
.navbar-logo .logo-accent { color: var(--orange); }

.navbar-links { display: flex; gap: 28px; align-items: center; }

.nav-link {
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.65); transition: color 0.2s; white-space: nowrap;
}
.nav-link:hover    { color: var(--white); font-weight: 600; }
.nav-link--active  { color: var(--white); font-weight: 700; }

.navbar-cta {
  display: inline-block; padding: 9px 20px; border-radius: 999px;
  text-decoration: none; font-size: 0.88rem; font-weight: 600;
  background: var(--orange); color: var(--white);
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.navbar-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }

#menuBtn {
  display: none; flex-direction: column; justify-content: center;
  gap: 6px; width: 40px; height: 40px; cursor: pointer;
  flex-shrink: 0; z-index: 1200;
}
#menuBtn .bar {
  display: block; height: 2px; width: 100%;
  background: var(--white); border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
#menuBtn.active .bar:nth-child(1) { transform: translateY(8px)  rotate(45deg); }
#menuBtn.active .bar:nth-child(2) { opacity: 0; }
#menuBtn.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

#mobileMenu {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 85vw); height: 100vh; background: var(--bg);
  border-left: 1px solid rgba(255,255,255,0.07);
  box-shadow: -8px 0 40px rgba(0,0,0,0.6); z-index: 1150;
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; padding: 80px 36px 48px;
  transition: right 0.4s cubic-bezier(0.77,0,0.18,1);
}

#closeMenu {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
#closeMenu::before, #closeMenu::after {
  content: ''; position: absolute; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
}
#closeMenu::before { transform: rotate(45deg); }
#closeMenu::after  { transform: rotate(-45deg); }

#mobileMenu a.mob-link {
  text-decoration: none; font-size: 1.4rem; font-weight: 600;
  color: rgba(255,255,255,0.65); padding: 14px 0; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
#mobileMenu a.mob-link:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
#mobileMenu a.mob-link:hover         { color: var(--white); padding-left: 6px; }
#mobileMenu a.mob-link.mob-active    { color: var(--orange); }

#mobileMenu .mob-cta {
  margin-top: 28px; display: inline-block; padding: 13px 28px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; background: var(--orange); color: var(--white);
  border-radius: 3px; text-decoration: none; transition: background 0.2s;
}
#mobileMenu .mob-cta:hover { background: var(--orange-dk); }

#menuOverlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 1100;
  backdrop-filter: blur(2px);
}
#menuOverlay.visible { display: block; }

@media (max-width: 960px) { .navbar-links { gap: 18px; } .nav-link { font-size: 0.82rem; } }
@media (max-width: 768px) {
  .navbar { top: 14px; width: 94%; }
  .navbar-inner { padding: 10px 16px; border-radius: 14px; }
  .navbar-links, .navbar-cta { display: none; }
  #menuBtn { display: flex; }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 160px 0 80px;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}

.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(255,92,0,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2; max-width: 780px;
  text-align: center; padding: 0 20px; margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}

.hero-headline {
  font-weight: 800; font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 20px; animation: fadeDown 0.6s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem); color: rgba(255,255,255,0.65);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.7;
  animation: fadeDown 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; animation: fadeDown 0.6s 0.3s ease both;
}

.hero-cta-primary {
  padding: 13px 28px; background: var(--orange); color: var(--white);
  border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta-primary:hover { background: var(--orange-dk); transform: translateY(-2px); }

.hero-cta-secondary {
  padding: 13px 28px; border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); border-radius: 8px; text-decoration: none;
  font-weight: 500; font-size: 0.95rem; transition: border-color 0.2s;
}
.hero-cta-secondary:hover { border-color: rgba(255,255,255,0.4); }

.hero-visual {
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%); width: 320px; height: 320px; pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.28; }
.orb-1 { width:260px; height:260px; background:var(--orange); top:10px; left:30px; animation:float 7s ease-in-out infinite; }
.orb-2 { width:180px; height:180px; background:#7b2fff; bottom:0; right:0; animation:float 9s ease-in-out infinite reverse; }

.floating-card {
  position: absolute; background: rgba(20,20,20,0.88);
  border: 1px solid var(--border); backdrop-filter: blur(12px);
  padding: 12px 18px; border-radius: 12px;
  font-size: 0.82rem; font-weight: 600; white-space: nowrap; color: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.fc-1 { top:60px; left:-20px; animation: float 5s ease-in-out infinite; }
.fc-2 { bottom:80px; right:-30px; animation: float 6s ease-in-out infinite reverse; }

/* ══════════════════════════════
   CONTACT MAIN
══════════════════════════════ */
.contact-main { background: var(--bg-2); }

.contact-main-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.contact-intro {
  font-size: 0.97rem; color: var(--gray);
  line-height: 1.7; margin-top: 8px; margin-bottom: 24px;
}

/* 24/7 availability badge */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  padding: 9px 20px;
  border-radius: 100px;
}

.avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(74,222,128,0.08); }
}

/* Horizontal card row */
.contact-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-channel-card {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact-channel-card:hover {
  border-color: rgba(255,92,0,0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.contact-channel-featured {
  background: linear-gradient(160deg, #1a0f00 0%, #111 70%);
  border-color: rgba(255,92,0,0.2);
}

.cc-icon-wrap {
  font-size: 2rem;
  margin-bottom: 6px;
}

.contact-channel-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.contact-channel-card p {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

.cc-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 9px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.cc-cta:hover { background: var(--orange-dk); }
.cc-cta--muted { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); cursor: default; }
.cc-cta--muted:hover { background: rgba(255,255,255,0.08); }

/* ══════════════════════════════
   QUICK CHANNELS
══════════════════════════════ */
.quick-section { background: var(--bg); text-align: center; }

.quick-grid {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center; margin-top: 44px;
}

.quick-card {
  flex: 1; min-width: 220px; max-width: 280px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center; text-decoration: none; color: var(--white);
  transition: border-color 0.3s, transform 0.3s;
}
.quick-card:hover { border-color: rgba(255,92,0,0.3); transform: translateY(-4px); }

.quick-featured {
  background: linear-gradient(160deg, #1a0f00 0%, #111 70%);
  border-color: rgba(255,92,0,0.2);
}

.qc-icon { font-size: 2rem; }

.quick-card h4 { font-weight: 700; font-size: 1rem; }

.quick-card p { font-size: 0.88rem; color: var(--gray); }

.qc-action {
  display: inline-block; margin-top: 6px;
  padding: 8px 18px; background: var(--orange); color: var(--white);
  border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s;
}
.quick-card:hover .qc-action { background: var(--orange-dk); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding-top: 64px; }

.footer-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-logo {
  font-weight: 800; font-size: 1.15rem;
  text-decoration: none; color: var(--white); letter-spacing: -0.01em;
}
.footer-logo .accent { color: var(--orange); }

.footer-desc { font-size: 0.9rem; line-height: 1.65; color: var(--gray); max-width: 250px; }

.social-links { display: flex; gap: 12px; margin-top: 4px; }

.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 600; color: var(--white); text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.social-links a:hover { background: rgba(255,92,0,0.15); border-color: rgba(255,92,0,0.3); }

.footer-col h5 { font-weight: 700; font-size: 0.9rem; letter-spacing: -0.01em; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { text-decoration: none; font-size: 0.88rem; color: var(--gray); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--gray);
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .contact-cards-row { gap: 16px; }
}

@media (max-width: 768px) {
  .hero          { padding: 140px 0 60px; min-height: auto; }
  .hero-visual   { display: none; }
  .hero-ctas     { flex-direction: column; align-items: center; }
  .contact-cards-row { flex-direction: column; align-items: center; }
  .contact-channel-card { max-width: 100%; width: 100%; }
  .quick-grid    { flex-direction: column; align-items: center; }
  .quick-card    { max-width: 100%; }
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}