/* ===== AVS Virtual Assistants — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Navy palette */
  --navy-900: #0b1527;
  --navy-800: #0f1d35;
  --navy-700: #152847;
  --navy-600: #1c3459;
  --navy-500: #24426e;
  /* Pink accents (matching logo) */
  --copper: #ff1493;
  --copper-light: #ff69b4;
  --gold: #ff3ca0;
  --gold-light: #ffb6d9;
  /* Teal accent */
  --teal: #3ec6c0;
  --teal-light: #6ee0db;
  /* Pink accent (hero logo) */
  --pink: #ff1493;
  --pink-light: #ff69b4;
  /* Neutral */
  --white: #ffffff;
  --gray-100: #f0f2f5;
  --gray-200: #dce0e8;
  --gray-300: #b0b8c9;
  --gray-400: #8491a7;
  --gray-500: #5d6b82;
  --text-body: #c9d1de;
  --text-heading: #ffffff;
  /* Misc */
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 30px rgba(0,0,0,.35);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-900);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--copper-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--text-heading); line-height: 1.25; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: .5rem;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff1493, #ff3ca0);
  color: #ffffff;
  box-shadow: 0 4px 25px rgba(255,20,147,.35);
}
@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(255,20,147,.5);
    color: #ffffff;
  }
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff1493;
  color: #ff69b4;
}
.btn-outline:hover {
  background: #ff1493;
  color: #ffffff;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
  background: rgba(11,21,39,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.navbar.scrolled {
  background: rgba(11,21,39,.3);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,20,147,.12);
  box-shadow: 0 4px 30px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.nav-logo span { color: var(--copper); }

/* ---------- AVS Logo Mark (pink headset icon) ---------- */
.avs-logo-mark {
  width: 48px;
  height: 42px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255,20,147,.3));
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-300);
  font-weight: 500;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--copper);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: .9rem;
  color: var(--gray-400);
  max-width: 300px;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--copper);
  margin-bottom: 18px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray-400); font-size: .9rem; display: inline-block; padding: 6px 0; }
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9rem;
  color: var(--gray-400);
}
.footer-contact-item svg { flex-shrink: 0; color: var(--copper); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  text-align: center;
  font-size: .8rem;
  color: var(--gray-500);
}

/* ---------- Credibility Bar ---------- */
.cred-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 50px;
  padding: 30px 0;
}
.cred-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cred-badge svg { color: var(--teal); }

/* ---------- Section Spacing ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--navy-800); }

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}
.section-header p {
  margin-top: 14px;
  color: var(--gray-400);
  font-size: 1.05rem;
}

/* ---------- Card Styles ---------- */
.card {
  background: linear-gradient(135deg, rgba(21,40,71,.7), rgba(15,29,53,.7));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255,20,147,.2);
  }
  .card:hover::before { opacity: 1; }
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,20,147,.15), rgba(255,20,147,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 10px; }
.card p { font-size: .92rem; color: var(--gray-400); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,20,147,.15);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(255,20,147,.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(62,198,192,.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 14px; position: relative; }
.cta-banner p { margin-bottom: 28px; color: var(--gray-300); position: relative; font-size: 1.05rem; }
.cta-banner .btn { position: relative; }

/* ---------- Animated Woman Illustration (SVG based) ---------- */
.station-illustration {
  position: relative;
  display: inline-block;
}

/* Floating / breathing keyframes for the women at stations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}
@keyframes type-hands {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-2px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-1px); }
}
@keyframes screen-flicker {
  0%, 100% { opacity: .85; }
  50% { opacity: 1; }
}
@keyframes slide-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Nav overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
}
.nav-overlay.active { display: block; }

/* Hamburger X animation */
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-phone { display: none !important; }
  .nav-toggle {
    display: flex;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy-900);
    background: rgba(11,21,39,.97);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-left: 1px solid rgba(255,20,147,.08);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,.3);
    z-index: 1001;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .cta-banner { padding: 32px 16px; }
  .card { padding: 28px 20px; }
  .btn { padding: 12px 24px; font-size: .88rem; }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ========== PRICING & PAYMENT STYLES ========== */

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 30px 36px;
  overflow: visible;
}
.pricing-card .card-icon {
  margin-left: auto;
  margin-right: auto;
}
.pricing-card p { flex-grow: 1; }

.pricing-card.featured {
  border-color: rgba(255,20,147,.25);
  box-shadow: 0 0 40px rgba(255,20,147,.08);
  position: relative;
  overflow: visible;
}
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--copper), var(--gold));
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 20px;
  border-radius: 50px;
  z-index: 1;
  white-space: nowrap;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 20px 0 28px;
}
.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-400);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Pricing Secure Note */
.pricing-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: .85rem;
  color: var(--gray-400);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
