/* ============================================================
   CONTACT.CSS — HubPro Contact / About Page
   Completely self-contained — no other CSS file needed
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:         #1A3A5C;
  --navy-light:   #21476E;
  --navy-dark:    #122B4A;
  --orange:       #FF6A00;
  --orange-dark:  #E05E00;
  --orange-light: #FF8533;
  --steel:        #A0B3C8;
  --green:        #22C55E;
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--steel);
  line-height: 1.6;
  min-height: 100vh;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.1; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
img { display: block; max-width: 100%; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background-color: rgba(18,43,74,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 1024px) { .navbar-inner { height: 72px; } }

.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; background-color: var(--orange); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: white; font-size: 14px; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; letter-spacing: 0.05em; transition: color 0.2s; }
.logo:hover .logo-text { color: var(--orange); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { position: relative; padding: 0.5rem 0.75rem; font-size: 14px; font-weight: 500; color: var(--steel); border-radius: 4px; transition: color 0.2s; text-decoration: none; }
.nav-link:hover { color: white; }
.nav-link.active { color: var(--orange); }

.navbar-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .navbar-cta { display: flex; } }
.login-link { font-size: 14px; font-weight: 500; color: var(--steel); text-decoration: none; transition: color 0.2s; }
.login-link:hover { color: white; }
.join-btn { padding: 10px 20px; background-color: var(--orange); color: white; font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.025em; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.join-btn:hover { background-color: var(--orange-dark); box-shadow: 0 10px 25px rgba(255,106,0,0.2); }

.mobile-toggle { display: flex; align-items: center; justify-content: center; padding: 0.5rem; color: white; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-menu { display: none; background-color: rgba(18,43,74,0.98); backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.05); padding: 1rem 0; }
.mobile-menu.open { display: block; }
.mobile-nav-link { display: block; padding: 0.75rem 1rem; font-size: 16px; font-weight: 500; color: var(--steel); border-radius: 4px; transition: all 0.2s; text-decoration: none; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: white; background-color: rgba(255,255,255,0.05); }
.mobile-cta-section { padding: 1rem 1rem 0; margin-top: 0.25rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-login { text-align: center; padding: 0.75rem; color: var(--steel); font-weight: 500; text-decoration: none; display: block; }
.mobile-login:hover { color: white; }
.mobile-join-btn { text-align: center; padding: 0.75rem; background-color: var(--orange); color: white; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.025em; border-radius: 4px; text-decoration: none; display: block; transition: background-color 0.2s; }
.mobile-join-btn:hover { background-color: var(--orange-dark); }

/* ── UTILITIES ─────────────────────────────────────────────── */
.section-divider-top { clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%); margin-top: -5rem; padding-top: 8rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ───────────────────────────────────────────────────── */
.ct-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ct-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ct-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,43,74,0.88) 0%, rgba(18,43,74,0.68) 50%, rgba(18,43,74,0.5) 100%);
}
.ct-hero-inner {
  position: relative; z-index: 10;
  padding-top: 6rem; padding-bottom: 4rem;
  width: 100%;
}
.ct-overline { display: block; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--orange); margin-bottom: 1rem; }
.ct-h1 { font-family: var(--font-display); font-size: clamp(2.75rem, 9vw, 5rem); font-weight: 700; color: white; line-height: 0.95; margin-bottom: 1.5rem; }
.ct-h1 span { color: var(--orange); }
.ct-hero-desc { font-size: 1.125rem; color: #d1d5db; max-width: 36rem; line-height: 1.7; }
@media (min-width: 768px) { .ct-hero-desc { font-size: 1.25rem; } }

.ct-hero-wedge {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background-color: var(--navy);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ── STATS ──────────────────────────────────────────────────── */
.ct-stats-section { background-color: var(--navy); padding: 4rem 0; }
.ct-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .ct-stats-grid { grid-template-columns: repeat(4, 1fr); } }

.ct-stat { text-align: center; }
.ct-stat-num { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--orange); line-height: 1.1; }
.ct-stat-label { font-size: 13px; color: var(--steel); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; margin-top: 0.25rem; }

/* ── OUR STORY ──────────────────────────────────────────────── */
.ct-story-section { background-color: var(--navy-light); padding: 5rem 0; }
.ct-story-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .ct-story-grid { grid-template-columns: repeat(2, 1fr); } }

.ct-section-overline { display: block; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--orange); }
.ct-h2 { font-family: var(--font-display); font-size: clamp(2.25rem, 6vw, 3.25rem); font-weight: 700; color: white; margin-top: 0.75rem; margin-bottom: 1.5rem; }
.ct-h2 span { color: var(--orange); }

.ct-accent-bar {
  border-left: 4px solid var(--orange);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.ct-accent-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 0.75rem; }
.ct-accent-text { color: var(--steel); line-height: 1.7; }
.ct-accent-text + .ct-accent-text { margin-top: 1rem; }

.ct-quote-card { background-color: rgba(26,58,92,0.8); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 2rem; }
.ct-blockquote { color: #d1d5db; font-size: 1.125rem; font-style: italic; line-height: 1.7; border-left: 4px solid var(--orange); padding-left: 1.5rem; margin-bottom: 1.5rem; }
.ct-offer-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.ct-offer-list { display: flex; flex-direction: column; gap: 1rem; }
.ct-offer-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.ct-offer-icon { width: 2.5rem; height: 2.5rem; background-color: rgba(255,106,0,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-offer-name { font-size: 14px; font-weight: 600; color: white; }
.ct-offer-desc { font-size: 12px; color: var(--steel); }

/* ── HOW TO NAVIGATE ────────────────────────────────────────── */
.ct-how-section { background-color: var(--navy); padding: 5rem 0; }
.ct-how-header { text-align: center; margin-bottom: 3.5rem; }
.ct-how-title { font-family: var(--font-display); font-size: clamp(2.25rem, 6vw, 3.25rem); font-weight: 700; color: white; margin-top: 0.75rem; margin-bottom: 1rem; }
.ct-how-title span { color: var(--orange); }
.ct-how-sub { color: var(--steel); max-width: 42rem; margin: 0 auto; }

.ct-steps { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.ct-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.ct-step-icon { width: 3.5rem; height: 3.5rem; background-color: var(--orange); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-step-body { padding-top: 0.25rem; }
.ct-step-num { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; display: block; }
.ct-step-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.ct-step-desc { color: var(--steel); line-height: 1.7; }

/* ── CONTACT INFO ───────────────────────────────────────────── */
.ct-contact-section { background-color: var(--navy-light); padding: 5rem 0; }
.ct-contact-header { text-align: center; margin-bottom: 3.5rem; }
.ct-contact-title { font-family: var(--font-display); font-size: clamp(2.25rem, 6vw, 3.25rem); font-weight: 700; color: white; margin-top: 0.75rem; margin-bottom: 1rem; }
.ct-contact-title span { color: var(--orange); }
.ct-contact-sub { color: var(--steel); max-width: 42rem; margin: 0 auto; }

.ct-contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .ct-contact-grid { grid-template-columns: repeat(3, 1fr); } }

.ct-contact-card {
  background-color: rgba(26,58,92,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s;
}
.ct-contact-card:hover { border-color: rgba(255,106,0,0.3); }
.ct-contact-icon { width: 3.5rem; height: 3.5rem; background-color: rgba(255,106,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.ct-contact-card-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.ct-contact-link { color: var(--orange); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.ct-contact-link:hover { color: var(--orange-light); }
.ct-contact-value { color: var(--steel); font-size: 14px; }

/* ── FINAL CTA ──────────────────────────────────────────────── */
.ct-cta-section { background-color: var(--navy); padding: 5rem 0; text-align: center; }
.ct-cta-title { font-family: var(--font-display); font-size: clamp(2.25rem, 8vw, 4rem); font-weight: 700; color: white; margin-bottom: 1rem; }
.ct-cta-title span { color: var(--orange); }
.ct-cta-desc { color: var(--steel); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2rem; line-height: 1.7; }
.ct-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  background-color: var(--orange); color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; letter-spacing: 0.05em;
  border-radius: 0.25rem; text-decoration: none; transition: all 0.3s;
}
.ct-cta-btn:hover { background-color: var(--orange-dark); box-shadow: 0 20px 40px rgba(255,106,0,0.25); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.ct-footer { background-color: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.05); }
.ct-footer-inner { padding: 3rem 0 2rem; }
.ct-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px)  { .ct-footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .ct-footer-grid { grid-template-columns: repeat(4,1fr); } }
.ct-footer-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; margin-bottom: 0.75rem; }
.ct-footer-logo-icon { width: 32px; height: 32px; background-color: var(--orange); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: white; font-size: 14px; flex-shrink: 0; }
.ct-footer-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; letter-spacing: 0.05em; }
.ct-footer-desc { font-size: 14px; color: var(--steel); line-height: 1.7; }
.ct-footer-heading { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.ct-footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.ct-footer-links a { font-size: 14px; color: var(--steel); text-decoration: none; transition: color 0.2s; }
.ct-footer-links a:hover { color: var(--orange); }
.ct-footer-links li { font-size: 14px; color: var(--steel); }
.ct-footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
@media (min-width: 768px) { .ct-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.ct-footer-copy { font-size: 12px; color: var(--steel); }
