/* ═══════════════════════════════════════════════════════
   WCBED — Women Chamber of Business & Economic Development
   styles.css
═══════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --black:      #111111;
  --grey-light: #F5F5F5;
  --grey-mid:   #E8E8E8;
  --grey-text:  #666666;
  --plum:       #5A2A4D;
  --plum-dark:  #3E1C35;
  --plum-light: #7A3A6A;
  --gold:       #C8A96A;
  --gold-light: #DEC48E;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h: 80px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 16px rgba(17,17,17,0.06);
  --shadow-md: 0 8px 40px rgba(17,17,17,0.10);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ── Utility ────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.container--narrow {
  max-width: 780px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
  color: var(--black);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  border-radius: var(--radius);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.btn-primary:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
}

.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-outline:hover {
  background: var(--plum);
  color: var(--white);
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90, 42, 77, 0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 170px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--plum);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--plum);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--plum); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.72) 0%,
    rgba(90, 42, 77, 0.55) 60%,
    rgba(17, 17, 17, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 5%;
  margin-left: 5%;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.6rem;
  letter-spacing: -0.015em;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}

/* Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(200, 169, 106, 0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ── COUNTDOWN ──────────────────────────────────────── */
.countdown-section {
  background: var(--plum-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(200, 169, 106, 0.08) 0%, transparent 70%);
}

.countdown-date-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  margin-top: -1.5rem;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 130px;
  padding: 2rem 1rem;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

.countdown-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 169, 106, 0.7);
  margin-top: 0.6rem;
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: rgba(200, 169, 106, 0.3);
  padding: 0 0.2rem;
  margin-bottom: 1.4rem;
}

/* ── STATS ──────────────────────────────────────────── */
.stats-section {
  padding: 110px 0;
  background: var(--grey-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.stat-card {
  background: var(--white);
  padding: 3.5rem 2.5rem;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.stat-card:hover {
  border-top-color: var(--plum);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 1rem;
}
.stat-number span {
  font-size: 0.55em;
  vertical-align: super;
}

.stat-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.stat-body {
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.8;
}

/* ── ABOUT ──────────────────────────────────────────── */
.about-section {
  padding: 110px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.about-card {
  padding: 3.5rem 2.8rem;
  border: 1px solid var(--grey-mid);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-card:hover {
  border-color: var(--plum);
  box-shadow: var(--shadow-sm);
}

.about-card--accent {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--white);
}
.about-card--accent h3 { color: var(--gold); }
.about-card--accent p { color: rgba(255,255,255,0.85); }

.about-card-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: block;
  line-height: 1;
}
.about-card--accent .about-card-icon { color: var(--gold-light); }

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--plum);
}

.about-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--grey-text);
}

/* ── SERVICES ───────────────────────────────────────── */
.services-section {
  padding: 110px 0;
  background: var(--grey-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 2.8rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: var(--plum-dark);
  color: var(--white);
  transform: translateY(-3px);
}
.service-card:hover .service-num { color: var(--gold); }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.75); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  transition: color var(--transition);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.8rem;
  line-height: 1.3;
  transition: color var(--transition);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--grey-text);
  line-height: 1.75;
  transition: color var(--transition);
}

/* ── HOW IT WORKS ───────────────────────────────────── */
.how-section {
  padding: 110px 0;
  background: var(--white);
}

.how-body p {
  font-size: 1.05rem;
  color: var(--grey-text);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.how-body p:last-child { margin-bottom: 0; }

/* ── TIERS ──────────────────────────────────────────── */
.tiers-section {
  padding: 110px 0;
  background: var(--grey-light);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: start;
}

.tier-card {
  background: var(--white);
  padding: 3rem 2.4rem;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.tier-card:hover {
  border-top-color: var(--plum);
  box-shadow: var(--shadow-sm);
}

.tier-card--featured {
  background: var(--plum);
  color: var(--white);
  border-top-color: var(--gold) !important;
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.tier-card--featured .tier-badge { color: var(--gold); }
.tier-card--featured h3 { color: var(--white); }
.tier-card--featured p { color: rgba(255,255,255,0.82); }
.tier-card--featured .tier-list li { color: rgba(255,255,255,0.85); }
.tier-card--featured .tier-list li::before { color: var(--gold); }
.tier-card--featured .btn-outline {
  color: var(--gold);
  border-color: var(--gold);
}
.tier-card--featured .btn-outline:hover {
  background: var(--gold);
  color: var(--plum-dark);
}

.tier-badge {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.tier-featured-label {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--plum-dark);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
}

.tier-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--plum);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tier-card p {
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tier-list {
  margin-bottom: 2rem;
}
.tier-list li {
  font-size: 0.86rem;
  color: var(--grey-text);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(17,17,17,0.06);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.tier-list li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── CONTACT / FORM ─────────────────────────────────── */
.contact-section {
  padding: 110px 0;
  background: var(--white);
}

.inquiry-form {
  margin-top: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.req { color: var(--plum); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--black);
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A2A4D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(90, 42, 77, 0.1);
  background: var(--white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-error {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.35rem;
  min-height: 1em;
}

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

/* Custom Checkbox */
.form-check { margin-bottom: 2rem; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.6;
  position: relative;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--grey-mid);
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: background var(--transition), border-color var(--transition);
}
.checkbox-label input:checked ~ .checkmark {
  background: var(--plum);
  border-color: var(--plum);
}
.checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 1.5px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
  margin-top: -2px;
}
.checkbox-label input:checked ~ .checkmark::after {
  transform: rotate(45deg) scale(1);
}

.btn-submit { width: 100%; justify-content: center; padding: 16px; font-size: 0.85rem; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
}

.footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col address,
.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.footer-note {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 0.5rem;
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 5%;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ── WHATSAPP FAB ───────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .stats-grid,
  .about-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .tier-card--featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-info { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 5%;
    gap: 1.4rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    border-bottom: 1px solid var(--grey-mid);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { font-size: 0.9rem; }

  .nav-toggle { display: flex; }

  .hero-content { margin-left: 0; }
  .hero-scroll-cue { display: none; }

  .stats-grid,
  .about-grid,
  .services-grid { grid-template-columns: 1fr; }

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

  .footer-info { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .countdown-unit { min-width: 80px; padding: 1.5rem 0.5rem; }
  .countdown-sep { font-size: 2rem; }
}

@media (max-width: 480px) {
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.2rem; }
  .footer-info { grid-template-columns: 1fr; }
  .countdown-grid { gap: 0; }
  .countdown-unit { min-width: 70px; }
  .whatsapp-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}
