/* Blog Landing Page Specific Styles */

/* Hero Enhancements for Blog */
.blog-hero .hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
}

.blog-hero .hero-content h1 span {
  background: linear-gradient(135deg, #ff4500, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-hero .hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 32px;
}

/* Research Section */
.research-section {
  padding: 80px 0;
  background: #f8faff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  color: #1a202c;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 18px;
  color: #718096;
}

/* Research Grid */
.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Research Cards */
.research-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #edf2f7;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.research-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.research-card-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.research-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.research-card:hover .research-card-image img {
  transform: scale(1.05);
}

.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ff4500;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.research-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.research-title {
  font-size: 20px;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  color: #1a202c;
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.research-abstract {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: "Lora", serif;
  flex: 1;
}

.research-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #f7fafc;
}

.author-info-compact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details-sm {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
}

.post-date {
  font-size: 12px;
  color: #a0aec0;
  margin-top: 2px;
}

.research-stats-compact {
  display: flex;
  gap: 16px;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #718096;
  font-weight: 600;
}

.stat-badge i {
  color: var(--primary-color);
  opacity: 0.7;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-state i {
  font-size: 64px;
  color: #cbd5e0;
  margin-bottom: 24px;
}

.empty-state h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #1a202c;
  margin-bottom: 12px;
}

.empty-state p {
  font-size: 16px;
  color: #718096;
  margin-bottom: 32px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .research-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .research-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-hero .hero-content h1 {
    font-size: 36px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .research-card-image {
    height: 180px;
  }
}

/* Enhancements for CTA */
.cta-section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 40px;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  margin-bottom: 16px;
}

.cta-content p {
  color: #cbd5e0;
  font-size: 18px;
  margin-bottom: 32px;
}

/* Premium Logo Styles */
.logo-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 8px 0;
}

.logo-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ff6b2c, #ff8c52);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(255, 107, 44, 0.25);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.5px;
}

/* About Page Styles */

/* About Hero */
.about-hero .hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.about-section p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  color: #4a5568;
  line-height: 1.8;
}

/* DAVOS Meaning Section */
.davos-meaning-section {
  padding: 80px 0;
  background: #f8faff;
}

.section-heading-center {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  color: #1a202c;
  margin-bottom: 60px;
}

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

.davos-card {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.davos-card:hover {
  transform: translateY(-8px);
}

.davos-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff4500, #ff6b35);
  color: white;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 16px rgba(255, 69, 0, 0.2);
}

.davos-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2d3748;
}

.davos-card p {
  font-size: 14px;
  color: #718096;
  line-height: 1.5;
}

/* Problem & Solution */
.problem-solution-section {
  padding: 80px 0;
  background: white;
}

.split-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split-content {
  flex: 1;
  padding: 40px;
  background: #fff5f2;
  border-radius: 24px;
}

.split-content.solution-bg {
  background: #f0fff4;
}

.split-content h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1a202c;
  font-family: "Outfit", sans-serif;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #4a5568;
}

.feature-list li i {
  color: #e53e3e; /* Red for problems */
  margin-top: 4px;
}

.solution-list li i {
  color: #38a169; /* Green for solutions */
}

/* Key Features Alt */
.features-section-alt {
  padding: 80px 0;
  background: #2d3748;
  color: white;
}

.features-section-alt .section-heading-center {
  color: white;
}

.features-grid-5 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-box {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 16px;
  width: calc(33.333% - 16px);
  text-align: center;
  backdrop-filter: blur(10px);
}

.feature-box i {
  font-size: 32px;
  color: #ff6b35;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-box p {
  color: #cbd5e0;
  font-size: 15px;
  line-height: 1.6;
}

/* How It Works */
.how-it-works-section {
  padding: 80px 0;
  background: white;
}

.steps-container {
  display: flex;
  gap: 60px;
}

.steps-column {
  flex: 1;
}

.steps-column h3 {
  font-size: 24px;
  margin-bottom: 32px;
  color: var(--primary-color);
  text-align: center;
  font-family: "Outfit", sans-serif;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: center;
  background: #f7fafc;
  padding: 20px;
  border-radius: 12px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #2d3748;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-item p {
  margin: 0;
  font-size: 16px;
  color: #4a5568;
  font-weight: 500;
}

/* Vision */
.vision-section {
  padding: 80px 0;
  background: #f8faff;
  text-align: center;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
}

.vision-content h2 {
  font-size: 32px;
  margin-bottom: 24px;
  font-family: "Outfit", sans-serif;
}

.vision-content p {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 48px;
}

.values-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.value-item h4 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 15px;
  color: #718096;
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  .davos-grid {
    grid-template-columns: 1fr;
  }
  
  .split-layout {
    flex-direction: column;
  }
  
  .feature-box {
    width: 100%;
  }
  
  .steps-container {
    flex-direction: column;
  }
  
  .values-row {
    flex-direction: column;
    gap: 24px;
  }
}

/* Help Center Styles */
.help-hero {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.help-hero h1 {
  font-size: 42px;
  font-family: "Outfit", sans-serif;
  margin-bottom: 16px;
}

.help-hero p {
  font-size: 18px;
  color: #cbd5e0;
  max-width: 600px;
  margin: 0 auto;
}

.help-content-section {
  padding: 60px 0;
  background: #f8faff;
  min-height: 80vh;
}

.help-grid {
  display: flex;
  gap: 40px;
}

/* Help Sidebar */
.help-sidebar {
  width: 250px;
  flex-shrink: 0;
}

.help-nav-sticky {
  position: sticky;
  top: 100px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.help-nav-sticky h3 {
  font-size: 16px;
  color: #a0aec0;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.help-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-nav-links li {
  margin-bottom: 8px;
}

.help-nav-links a {
  display: block;
  padding: 10px 16px;
  color: #4a5568;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.help-nav-links a:hover,
.help-nav-links a.active {
  background: #fff5f2;
  color: #e53e3e;
  font-weight: 600;
}

/* Help Main Content */
.help-main-content {
  flex: 1;
}

.faq-category {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.faq-category h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #1a202c;
  font-family: "Outfit", sans-serif;
  border-bottom: 2px solid #edf2f7;
  padding-bottom: 12px;
}

/* FAQ Items */
.faq-item {
  background: white;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f7fafc;
}

.faq-question::after {
  content: '\f078'; /* FontAwesome chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: #a0aec0;
  transition: transform 0.3s;
}

.faq-question.active {
  color: #e53e3e;
  background: #fff5f2;
}

.faq-question.active::after {
  transform: rotate(180deg);
  color: #e53e3e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: white;
}

.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  color: #718096;
  line-height: 1.6;
}

/* Contact Support Section */
.contact-category {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.contact-category h2 {
  border: none;
  margin-bottom: 8px;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.contact-card {
  flex: 1;
  padding: 24px;
  border-radius: 12px;
  background: #f8faff;
  transition: transform 0.2s;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: #fff5f2;
}

.contact-card i {
  font-size: 32px;
  color: #ff6b35;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2d3748;
}

.contact-card p {
  color: #718096;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .help-grid {
    flex-direction: column;
  }
  
  .help-sidebar {
    width: 100%;
  }
  
  .help-nav-sticky {
    position: static;
    overflow-x: auto;
  }
  
  .help-nav-links {
    display: flex;
    gap: 12px;
  }
  
  .help-nav-links li {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .contact-options {
    flex-direction: column;
  }
}
