/* ===================================================
   Custom Stylesheet for Talk With Hu Dhaval
   HuDhaval.com
   Color Scheme: Royal Blue (#0066FF), Amber Yellow (#F59E0B),
                 Deep Slate Navy (#0B132B / #0F172A), Crisp White
   Typography: Plus Jakarta Sans & Inter
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --primary: #0066FF;
  --primary-dark: #0052FF;
  --primary-light: #EFF6FF;
  --accent-yellow: #F59E0B;
  --accent-yellow-light: #FEF3C7;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --bg-slate: #F8FAFC;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: #FAFAFB;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.025em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Smooth Focus Rings */
input:focus, select:focus, textarea:focus, button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.25);
}

/* Session Duration Select Card */
.session-select-card {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.session-select-card:hover {
  border-color: #93C5FD;
}

.session-select-card.selected {
  border-color: #0066FF !important;
  background-color: #EFF6FF !important;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.12);
}

/* Format Card */
.format-card {
  transition: all 0.2s ease-in-out;
}

.format-card.selected {
  border-color: #0066FF !important;
  background-color: #EFF6FF !important;
}

/* FAQ Accordion Styling */
.faq-item {
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: #93C5FD;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.08);
}

.faq-item.active .faq-btn {
  background-color: #EFF6FF;
  color: #0066FF;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #0066FF;
}

/* Soft Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}
