/* Pages Styles - About, Contact, Blog */

/* General Page Styles */
.about-page, .contact-page, .blog-page {
  background: #F8FAFC;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  color: #10B981;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

/* Hero Sections */
.about-hero, .contact-hero, .blog-hero {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.about-hero h1, .contact-hero h1, .blog-hero h1 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 3rem;
  font-weight: 700 !important;
  margin-bottom: 16px;
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Mission Section */
.mission-section {
  padding: 80px 24px;
  background: white;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 24px;
}

.mission-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.image-placeholder {
  background: #F1F5F9;
  border-radius: 16px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Values Section */
.values-section {
  padding: 80px 24px;
}

.values-section h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  text-align: center;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #E2E8F0;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h3 {
  color: #1a1a2e;
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.value-card p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 24px;
  background: white;
}

.team-section h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  text-align: center;
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 48px;
}

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

.team-card {
  text-align: center;
  padding: 32px;
}

.team-avatar {
  width: 120px;
  height: 120px;
  background: #F1F5F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 20px;
}

.team-card h3 {
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.team-card p {
  color: #64748b;
  font-size: 0.9rem;
}

/* About CTA */
.about-cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  text-align: center;
  color: white;
}

.about-cta h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 2rem;
  margin-bottom: 16px;
  color: white;
}

.about-cta p {
  margin-bottom: 32px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: #059669 !important;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #059669 !important;
}

/* Contact Page */
.contact-content {
  padding: 80px 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #E2E8F0;
}

.contact-form-card h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  color: #1a1a2e;
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form .form-group label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.contact-form .form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  background: #F9FAFB;
}

.contact-form .form-input:focus {
  outline: none;
  border-color: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
  background: white;
}

.contact-form textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #10B981;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #E2E8F0;
}

.info-card.highlight {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  border: none;
}

.info-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #1a1a2e;
}

.info-card.highlight h3 {
  color: white;
}

.info-card p {
  color: #64748b;
  font-size: 0.875rem;
  margin: 4px 0;
}

.info-card.highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-link {
  color: #10B981;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
}

.social-link:hover {
  text-decoration: underline;
}

.btn-demo {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: #10B981;
  color: white !important;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-demo:hover {
  background: #059669;
  color: white !important;
}

/* Blog Page */
.featured-section {
  padding: 60px 24px;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #E2E8F0;
}

.featured-image {
  position: relative;
}

.featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #10B981;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.image-placeholder.large {
  height: 100%;
  min-height: 400px;
  border-radius: 0;
}

.featured-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-category {
  color: #10B981;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-content h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.75rem;
  color: #1a1a2e;
  margin: 16px 0;
  line-height: 1.3;
}

.featured-content p {
  color: #64748b;
  line-height: 1.7;
}

.post-meta {
  display: flex;
  gap: 16px;
  color: #94A3B8;
  font-size: 0.875rem;
  margin-top: 16px;
}

.read-more {
  color: #10B981;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  display: inline-block;
}

.read-more:hover {
  text-decoration: underline;
}

/* Posts Grid */
.posts-section {
  padding: 60px 24px;
}

.posts-section h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 32px;
}

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

.post-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #E2E8F0;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.post-image .image-placeholder {
  height: 180px;
  border-radius: 0;
}

.post-content {
  padding: 24px;
}

.post-content h3 {
  font-size: 1.125rem;
  color: #1a1a2e;
  margin: 12px 0;
  line-height: 1.4;
}

.post-content p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}

.post-content .post-meta {
  margin-top: 16px;
}

/* Newsletter */
.newsletter-section {
  margin-top: 60px;
  padding: 48px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  text-align: center;
  color: white;
}

.newsletter-section h3 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: white;
}

.newsletter-section p {
  opacity: 0.8;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
}

.btn-subscribe {
  padding: 14px 32px;
  background: #10B981;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-subscribe:hover {
  background: #059669;
  transform: translateY(-2px);
}

/* Notification */
.notification.is-success {
  background: #ECFDF5;
  color: #059669;
  padding: 16px 24px;
  border-radius: 10px;
  margin-bottom: 24px;
  border: 1px solid #A7F3D0;
}

/* Responsive */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero h1, .contact-hero h1, .blog-hero h1 {
    font-size: 2rem;
  }

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

  .mission-grid, .contact-grid, .featured-post {
    grid-template-columns: 1fr;
  }

  .values-grid, .team-grid, .posts-grid {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 32px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input, .btn-subscribe {
    width: 100%;
  }

  .contact-form-card {
    padding: 24px;
  }
}
