/* ===========================================
   Girl Talk Live - Main Stylesheet
   Modern, clean design with responsive layout
   =========================================== */

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

:root {
  --primary: #ec4899;
  --primary-dark: #db2777;
  --secondary: #8b5cf6;
  --dark: #1f2937;
  --darker: #111827;
  --light: #f9fafb;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --white: #ffffff;
  --success: #10b981;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--darker);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--darker);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  border-radius: var(--radius-sm);
}

.logo:hover {
  color: var(--darker);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark);
}

.mobile-menu-toggle .icon {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
  padding: 5rem 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--darker);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--gray);
}

/* Buttons */
.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-primary {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.cta-large {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.testimonial-author {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--gray);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section .cta-btn {
  background: white;
  color: var(--primary);
  margin-top: 2rem;
}

.cta-section .cta-btn:hover {
  background: var(--light);
}

/* Footer */
.footer {
  background: var(--darker);
  color: var(--light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #9ca3af;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #9ca3af;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

/* Floating CTA */
.cta-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Content Pages */
.content-block {
  margin-bottom: 3rem;
}

.content-block ul, .content-block ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-block li {
  margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-method .icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Policy Pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.last-updated {
  color: var(--gray);
  font-style: italic;
  font-size: 0.9rem;
}

/* FAQ */
.faq-category {
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
}

.faq-question .icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 1.5rem;
  color: var(--gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Steps Detail Page */
.step-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon .icon {
  width: 40px;
  height: 40px;
  color: white;
}

/* Safety Page */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.safety-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.safety-icon {
  width: 50px;
  height: 50px;
  background: #fce7f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.safety-icon .icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.safety-card ul {
  list-style: none;
  margin-top: 1rem;
}

.safety-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.safety-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Tips Page */
.tips-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tip-card-large {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.starter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.starter-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.starter-card h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Article Page */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
}

.article-meta {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.article-meta span {
  margin: 0 0.5rem;
}

.article-content .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 2rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-navigation {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.related-posts {
  margin-top: 2rem;
}

.related-posts ul {
  list-style: none;
  margin-left: 0;
}

.related-posts li {
  margin-bottom: 0.5rem;
}

/* Blog List */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-card h2 a {
  color: var(--darker);
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* Text Center */
.text-center {
  text-align: center;
  margin-top: 2rem;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 3rem;
}

/* Features Detail */
.feature-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-main.reverse {
  direction: rtl;
}

.feature-main.reverse > * {
  direction: ltr;
}

.feature-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .contact-grid,
  .feature-main {
    grid-template-columns: 1fr;
  }

  .cta-floating {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   MISSING CLASSES ADDED
   ============================================ */

/* Section Wrappers - shared padding */
.about-content,
.blog-list,
.contact-content,
.faq-content,
.features,
.features-detail,
.features-cta,
.how-it-works,
.safety-content,
.testimonials,
.tips-article,
.tips-section {
  padding: 4rem 0;
}

/* Features CTA - center buttons */
.features-cta .feature-card-cta .cta-btn {
  display: block;
  margin: 0 auto;
}

/* Testimonials section background */
.testimonials {
  background: var(--white);
}

/* Features CTA section */
.features-cta {
  /* Minimal styling - inherits padding from section */
}

.features-cta .feature-card-cta .cta-btn {
  display: block;
  margin: 0 auto;
}

/* About page values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Contact page */
.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--darker);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
  color: var(--darker);
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Features page */
.features-detail {
  padding: 4rem 0;
}

.feature-info h2 {
  margin-bottom: 1rem;
}

.feature-info ul,
.feature-info ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.feature-info li {
  margin-bottom: 0.5rem;
}

.feature-card-cta {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card-cta:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card-cta h3 {
  margin-bottom: 1rem;
  color: var(--darker);
}

.feature-card-cta p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

/* How It Works page */
.steps-content {
  padding: 4rem 0;
}

.step-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--darker);
}

.step-content p {
  color: var(--gray);
  line-height: 1.7;
}

/* Tips article pages */
.tips-article {
  padding: 4rem 0;
}

.tips-section {
  margin-bottom: 3rem;
}

.tips-section h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--darker);
}

.intro {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 2rem;
  text-align: center;
}

.mistakes-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.mistakes-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
}

.mistakes-list li:last-child {
  border-bottom: none;
}

.mistakes-list li strong {
  color: var(--darker);
}

.mistakes-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

.tip-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.tip-card h3 {
  margin-bottom: 0.75rem;
  color: var(--darker);
}

.tip-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Blog list page */
.blog-list {
  padding: 4rem 0;
}

/* ============================================ */

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
