/* NeuroFin Coach - Custom Styles */

:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #3b82f6;
  --gold: #d4af37;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.3;
}

p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* Sections */
section {
  position: relative;
  overflow: hidden;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 50%, #0c4a6e 100%);
  color: white;
  padding: 80px 0;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  z-index: 1;
  position: relative;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-10px);
}

/* Section Titles */
.section-title {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  display: inline-block;
}

.section-title i {
  color: var(--gold);
  margin-right: 0.5rem;
}

/* Buttons */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #2563eb 100%);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--secondary-blue);
  color: var(--secondary-blue);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--secondary-blue);
  color: white;
}

/* Solution List */
.solution-list {
  list-style: none;
  padding: 0;
}

.solution-list li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.solution-list i {
  color: var(--gold);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* Process Flow */
.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flow-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.flow-item i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.flow-item p {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: bold;
}

/* Results Table */
.results-table {
  background: white;
  border-collapse: collapse;
}

.results-table thead {
  background: var(--primary-blue);
  color: white;
}

.results-table th {
  padding: 1.25rem;
  text-align: left;
  font-weight: 700;
}

.results-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.results-table tbody tr:hover {
  background-color: #f1f5f9;
}

.results-table tbody tr:last-child td {
  border-bottom: none;
}

/* Methodology Cards */
.methodology-card {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.methodology-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.methodology-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
}

.methodology-card h4 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.methodology-card p {
  color: var(--text-light);
  margin: 0;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--gold);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  color: var(--text-dark);
  margin: 0;
  font-weight: 700;
}

/* About List */
.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.about-list i {
  color: var(--gold);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-color: var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-title {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.pricing-duration {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.pricing-features i {
  color: var(--gold);
  margin-right: 0.75rem;
}

.pricing-ideal {
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

.contact-form label {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: white;
  padding: 3rem 0 1rem;
}

footer h5 {
  color: white;
  font-size: 1.1rem;
}

footer p {
  color: #94a3b8;
  margin: 0;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--gold);
}

/* Social Links */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* CTA Final */
.cta-final {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #2563eb 100%);
  text-align: center;
  padding: 3rem 0;
}

.cta-final h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-final .lead {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .process-flow {
    flex-direction: column;
    gap: 1.5rem;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .methodology-card {
    margin-bottom: 1rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .results-table {
    font-size: 0.9rem;
  }

  .results-table th,
  .results-table td {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .process-flow {
    padding: 1.5rem;
  }

  .testimonial-card {
    margin-bottom: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

section {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}

.shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-full {
  border-radius: 50%;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  nav,
  .cta-final,
  footer {
    display: none;
  }
}

