/* css/public-speaking.css - Public Speaking page styles */


/* ===== HERO ===== */
.hero {
  padding-top: 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
}

/* Background image (optional - remove if not needed) */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,34,64,0.85) 0%, rgba(10,34,64,0.3) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

/* ── HERO LOGO ── */
.hero-logo {
  max-width: 320px;
  margin: 0 auto 24px;
}
.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.flame-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(184, 146, 42, 0.5);
  display: inline-block;
  animation: flicker 1.8s ease-in-out infinite;
}
@keyframes flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

/* ── TITLE ── */
.title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.08;
  color: var(--white);
  margin: 0 auto 18px;
}
.title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── SUBTITLE ── */
.sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 253, 248, 0.72);
  max-width: 520px;
  margin: 0 auto 34px;
  line-height: 1.75;
}

/* ── PILLARS ── */
.pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 38px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 146, 42, 0.35);
  color: var(--gold-pale);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pillar .dot {
  color: var(--gold-light);
}

/* ── CTA BUTTON ── */
.cta-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold) 0%, #C9941A 100%);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 17px 42px;
  border-radius: 40px;
  box-shadow: 0 10px 28px rgba(184, 146, 42, 0.35);
  transition: transform var(--trans), box-shadow var(--trans);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(184, 146, 42, 0.48);
}

.cta-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 253, 248, 0.5);
  letter-spacing: 0.02em;
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 768px) {
  .hero {
    padding: 90px 20px 60px;
    min-height: auto;
  }
  .hero-logo {
    max-width: 220px;
    margin-bottom: 16px;
  }
  .title {
    font-size: clamp(30px, 8vw, 42px);
  }
  .sub {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .pillars {
    gap: 10px;
    margin-bottom: 28px;
  }
  .pillar {
    font-size: 11px;
    padding: 7px 14px;
  }
  .cta-btn {
    padding: 14px 32px;
    font-size: 12px;
  }
  .cta-note {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 180px;
    margin-bottom: 12px;
  }
  .title {
    font-size: clamp(26px, 7vw, 34px);
  }
  .sub {
    font-size: 13px;
  }
  .pillar {
    font-size: 10px;
    padding: 5px 12px;
  }
  .cta-btn {
    padding: 12px 28px;
    font-size: 11px;
  }
}

/* ===== SECTIONS ===== */
.sec {
  padding: 96px 80px;
}
@media (max-width: 900px) {
  .sec {
    padding: 64px 28px;
  }
}
.sec-alt {
  background: var(--light);
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.h2 em {
  font-style: italic;
  color: var(--gold);
}
.subp {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 560px;
}
.sec-head {
  margin-bottom: 52px;
}
.lbl {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.lbl::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
}

/* ===== HIGHLIGHTS ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 900px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--trans), transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10, 34, 64, 0.08);
}
.highlight-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.highlight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.highlight-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== AUDIENCE ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}
.audience-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: background var(--trans), border-color var(--trans);
}
.audience-item:hover {
  background: var(--gold-pale);
  border-color: var(--gold-border);
}
.audience-icon {
  font-size: 24px;
  flex-shrink: 0;
}

/* ===== DETAILS ===== */
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
@media (max-width: 600px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}
.detail-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--trans);
}
.detail-item:hover {
  border-color: var(--gold-border);
}
.detail-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.detail-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CTA SPEAK ===== */
.cta-speak {
  background: var(--navy);
  padding: 100px 80px;
  text-align: center;
}
@media (max-width: 900px) {
  .cta-speak {
    padding: 64px 28px;
  }
}
.cta-speak-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-speak-content h2 em {
  font-style: italic;
  color: var(--gold);
}
.cta-speak-content p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 34, 64, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 780px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalFadeIn 0.35s ease;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
  .modal-box {
    padding: 28px 20px;
    max-height: 95vh;
  }
}
.modal-close {
  position: sticky;
  float: right;
  top: 0;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  padding: 4px 8px;
  transition: color var(--trans);
}
.modal-close:hover {
  color: var(--gold);
}
.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.modal-header .modal-sub {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ===== FORM STYLES ===== */
.modal-form {
  margin-top: 8px;
}
.form-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.form-section-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans);
}
.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
}
.form-input.error,
.form-select.error {
  border-color: #C0392B;
  background: rgba(192, 57, 43, 0.04);
}

/* ===== CHECKBOX GRID ===== */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
@media (max-width: 500px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  cursor: pointer;
  padding: 4px 0;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.consent-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.consent-group .checkbox-label {
  font-size: 13px;
}

/* ===== PAYMENT INFO ===== */
.payment-info {
  background: var(--gold-pale);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--gold-border);
}
.payment-details {
  background: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 12px 0 16px;
  border: 1px solid var(--border);
}
.payment-details p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 4px;
}
.payment-details .acct {
  background: var(--gold-pale);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 700;
  color: var(--navy);
}

/* ===== PRICE TAG ===== */
.price-tag {
  background: linear-gradient(135deg, var(--navy) 0%, #153660 100%);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.price-duration {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 14px;
  border-radius: 40px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .price-amount {
    font-size: 26px;
  }
  .price-duration {
    font-size: 12px;
    padding: 4px 10px;
  }
  .price-tag {
    padding: 12px 16px;
    gap: 8px;
  }
}

/* ===== BUTTONS ===== */
.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-large {
  padding: 16px 32px;
  font-size: 13px;
  border-radius: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .modal-box {
    padding: 24px 16px;
  }
  .modal-header h2 {
    font-size: 22px;
  }
  .payment-info {
    padding: 16px;
  }
}

/* ===== SCROLL REVEAL ===== */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
.rev.in {
  opacity: 1;
  transform: translateY(0);
}
.rev-d1 {
  transition-delay: 0.1s;
}
.rev-d2 {
  transition-delay: 0.2s;
}
.rev-d3 {
  transition-delay: 0.3s;
}