/*-----------------------------------------------------------
  Secondary Pages Unified Styles
  
  This file contains unified styles for all secondary pages
  accessed from the "More" dropdown menu in the navigation.
  
  Pages covered:
  - Team
  - Products
  - Features
  - Blog
  - Contact
  - About
  - Privacy Policy
  - Terms & Conditions
-------------------------------------------------------------*/

/* ============================================
   CSS Variables for Secondary Pages
============================================ */
:root {
  /* Color Scheme - matching main site */
  --sp-bg-primary: #080c2f;
  --sp-bg-secondary: rgba(16, 20, 59, 0.8);
  --sp-bg-card: rgba(16, 20, 59, 0.6);
  --sp-accent: #2ccdee;
  --sp-accent-hover: #1ab8d9;
  --sp-text-primary: #ffffff;
  --sp-text-secondary: #b4b1c2;
  --sp-text-muted: #8a8a9a;
  --sp-border: rgba(44, 205, 238, 0.2);
  --sp-border-hover: rgba(44, 205, 238, 0.5);
  
  /* Typography - Power Grotesk & TT Firs Neue */
  --sp-font-heading: 'Power Grotesk', sans-serif;
  --sp-font-body: 'TT Firs Neue', sans-serif;
  
  /* Spacing */
  --sp-section-padding: 100px 0;
  --sp-card-padding: 30px;
  --sp-card-radius: 12px;
  
  /* Shadows */
  --sp-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  --sp-shadow-hover: 0 10px 30px rgba(44, 205, 238, 0.15);
  
  /* Transitions */
  --sp-transition: all 0.3s ease;
}

/* ============================================
   Hero Section Styles
============================================ */
.secondary-hero,
.hero-area {
  position: relative;
  background: var(--sp-bg-primary);
  padding: 120px 0 80px;
  overflow: hidden;
}

.secondary-hero .hero-content,
.hero-area .hero-content {
  position: relative;
  z-index: 2;
}

.secondary-hero .hero-content ul,
.hero-area .hero-content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.secondary-hero .hero-content ul li,
.hero-area .hero-content ul li {
  color: var(--sp-text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.secondary-hero .hero-content ul li:not(:last-child)::after,
.hero-area .hero-content ul li:not(:last-child)::after {
  content: '/';
  margin-left: 10px;
  color: var(--sp-accent);
}

.secondary-hero .hero-content h1,
.hero-area .hero-content h1 {
  font-family: var(--sp-font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--sp-text-primary);
  margin: 0;
  line-height: 1.2;
}

.secondary-hero .hero-image,
.hero-area .hero-image {
  position: relative;
  z-index: 2;
}

.secondary-hero .hero-image img,
.hero-area .hero-image img {
  max-width: 100%;
  height: auto;
}

/* Hero Shapes */
.secondary-hero .all-shapes,
.hero-area .all-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.secondary-hero .all-shapes img,
.hero-area .all-shapes img {
  position: absolute;
}

.hero-shape1 {
  top: 20%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape2 {
  top: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-shape3 {
  bottom: 20%;
  left: 15%;
  animation: float 7s ease-in-out infinite;
}

.hero-shape4 {
  bottom: 10%;
  right: 5%;
  animation: float 5s ease-in-out infinite reverse;
}

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

/* ============================================
   Card Component Styles
============================================ */
.sp-card {
  background: var(--sp-bg-card);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-card-radius);
  padding: var(--sp-card-padding);
  transition: var(--sp-transition);
  height: 100%;
}

.sp-card:hover {
  border-color: var(--sp-border-hover);
  box-shadow: var(--sp-shadow-hover);
  transform: translateY(-5px);
}

.sp-card-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.sp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--sp-transition);
}

.sp-card:hover .sp-card-image img {
  transform: scale(1.05);
}

.sp-card-title {
  font-family: var(--sp-font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--sp-text-primary);
  margin-bottom: 10px;
}

.sp-card-subtitle {
  font-size: 14px;
  color: var(--sp-accent);
  margin-bottom: 15px;
  font-weight: 500;
}

.sp-card-text {
  font-size: 15px;
  color: var(--sp-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   Team Card Styles
============================================ */
.team-card {
  background: var(--sp-bg-card);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-card-radius);
  padding: 25px;
  text-align: center;
  transition: var(--sp-transition);
  height: 100%;
}

.team-card:hover {
  border-color: var(--sp-border-hover);
  box-shadow: var(--sp-shadow-hover);
  transform: translateY(-5px);
}

.team-card .team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--sp-border);
  transition: var(--sp-transition);
}

.team-card:hover .team-image {
  border-color: var(--sp-accent);
}

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

.team-card .team-info h3 {
  font-family: var(--sp-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--sp-text-primary);
  margin-bottom: 5px;
}

.team-card .team-info span {
  display: block;
  font-size: 14px;
  color: var(--sp-accent);
  margin-bottom: 15px;
  font-weight: 500;
}

.team-card .team-info p {
  font-size: 14px;
  color: var(--sp-text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.team-card .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-card .social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 205, 238, 0.1);
  border-radius: 50%;
  color: var(--sp-accent);
  font-size: 14px;
  transition: var(--sp-transition);
}

.team-card .social-links a:hover {
  background: var(--sp-accent);
  color: var(--sp-bg-primary);
}

/* ============================================
   Token/Product Card Styles
============================================ */
.token-card {
  background: var(--sp-bg-card);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-card-radius);
  padding: 30px;
  transition: var(--sp-transition);
  height: 100%;
}

.token-card:hover {
  border-color: var(--sp-border-hover);
  box-shadow: var(--sp-shadow-hover);
  transform: translateY(-5px);
}

.token-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.token-badge.infv {
  background: linear-gradient(135deg, #2ccdee, #1ab8d9);
  color: #080c2f;
}

.token-badge.xcof {
  background: linear-gradient(135deg, #6c5ce7, #a55eea);
  color: #ffffff;
}

.token-badge.dream {
  background: linear-gradient(135deg, #00b894, #00cec9);
  color: #ffffff;
}

.token-badge.xkol {
  background: linear-gradient(135deg, #fd79a8, #e84393);
  color: #ffffff;
}

.token-card h3 {
  font-family: var(--sp-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--sp-text-primary);
  margin-bottom: 15px;
}

.token-card p {
  font-size: 15px;
  color: var(--sp-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.token-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sp-accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--sp-transition);
}

.token-link:hover {
  color: var(--sp-accent-hover);
  gap: 12px;
}

.token-link i {
  font-size: 12px;
}

/* Token Features List */
.token-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.token-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--sp-text-secondary);
  font-size: 15px;
}

.token-features li::before {
  content: '✓';
  color: var(--sp-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   Form Styles
============================================ */
.sp-form {
  background: var(--sp-bg-card);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-card-radius);
  padding: 40px;
}

.sp-form-group {
  margin-bottom: 20px;
}

.sp-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--sp-text-primary);
  margin-bottom: 8px;
}

.sp-form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--sp-border);
  border-radius: 8px;
  color: var(--sp-text-primary);
  font-size: 15px;
  transition: var(--sp-transition);
}

.sp-form-control:focus {
  outline: none;
  border-color: var(--sp-accent);
  box-shadow: 0 0 0 3px rgba(44, 205, 238, 0.1);
}

.sp-form-control::placeholder {
  color: var(--sp-text-muted);
}

textarea.sp-form-control {
  min-height: 150px;
  resize: vertical;
}

select.sp-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232ccdee' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

select.sp-form-control option {
  background: var(--sp-bg-primary);
  color: var(--sp-text-primary);
}

/* Form Validation States */
.sp-form-control.is-invalid {
  border-color: #dc3545;
}

.sp-form-control.is-valid {
  border-color: #28a745;
}

.invalid-feedback {
  display: none;
  font-size: 13px;
  color: #dc3545;
  margin-top: 5px;
}

.sp-form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Form Submit Button */
.sp-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--sp-accent), var(--sp-accent-hover));
  border: none;
  border-radius: 8px;
  color: var(--sp-bg-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--sp-transition);
}

.sp-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(44, 205, 238, 0.3);
}

.sp-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form Message */
.sp-form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}

.sp-form-message.success {
  display: block;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.sp-form-message.error {
  display: block;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

/* ============================================
   Contact Info Cards
============================================ */
.contact-info-card {
  background: var(--sp-bg-card);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-card-radius);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--sp-transition);
  margin-bottom: 20px;
}

.contact-info-card:hover {
  border-color: var(--sp-border-hover);
  transform: translateX(5px);
}

.contact-info-card i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 205, 238, 0.1);
  border-radius: 50%;
  color: var(--sp-accent);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--sp-text-primary);
  margin-bottom: 5px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--sp-text-secondary);
  margin: 0;
}

/* ============================================
   Section Title Styles
============================================ */
.sp-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.sp-section-title h2 {
  font-family: var(--sp-font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--sp-text-primary);
  margin-bottom: 15px;
}

.sp-section-title p {
  font-size: 16px;
  color: var(--sp-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Content Area Styles
============================================ */
.sp-content-area {
  padding: var(--sp-section-padding);
  background: var(--sp-bg-primary);
}

.sp-content-area.alt-bg {
  background: linear-gradient(180deg, var(--sp-bg-primary) 0%, rgba(16, 20, 59, 0.5) 100%);
}

/* Padding Utilities */
.ptb-100 {
  padding: 100px 0;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-50 {
  padding: 50px 0;
}

/* ============================================
   Responsive Styles
============================================ */
@media (max-width: 1199px) {
  .secondary-hero .hero-content h1,
  .hero-area .hero-content h1 {
    font-size: 42px;
  }
  
  .sp-section-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .secondary-hero,
  .hero-area {
    padding: 100px 0 60px;
  }
  
  .secondary-hero .hero-content h1,
  .hero-area .hero-content h1 {
    font-size: 36px;
  }
  
  .secondary-hero .hero-image,
  .hero-area .hero-image {
    margin-top: 40px;
    text-align: center;
  }
  
  .ptb-100 {
    padding: 80px 0;
  }
  
  .sp-form {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .secondary-hero,
  .hero-area {
    padding: 80px 0 50px;
  }
  
  .secondary-hero .hero-content h1,
  .hero-area .hero-content h1 {
    font-size: 28px;
  }
  
  .sp-section-title h2 {
    font-size: 26px;
  }
  
  .ptb-100 {
    padding: 60px 0;
  }
  
  .sp-card,
  .team-card,
  .token-card {
    padding: 20px;
  }
  
  .sp-form {
    padding: 20px;
  }
  
  .contact-info-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .secondary-hero .hero-content h1,
  .hero-area .hero-content h1 {
    font-size: 24px;
  }
  
  .sp-section-title h2 {
    font-size: 22px;
  }
  
  .team-card .team-image {
    width: 100px;
    height: 100px;
  }
}

/* ============================================
   New Page Hero Styles (Incubator, Grants, etc.)
============================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a0a12 0%, #1a0a2e 50%, #0a0a12 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 30px;
  font-size: 0.9rem;
  color: #a78bfa;
  margin-bottom: 1.5rem;
}

.page-hero .hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Content Section Base
============================================ */
.content-section {
  padding: 80px 0;
  background: rgba(10, 10, 20, 0.8);
  position: relative;
}

.content-section:nth-child(even) {
  background: rgba(15, 10, 30, 0.6);
}

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

.section-header.text-center {
  text-align: center;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Stats Grid
============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.stat-card .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card .stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}

.stat-card .stat-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

/* ============================================
   Benefits Grid
============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.benefit-card.featured {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
  border-color: rgba(139, 92, 246, 0.4);
}

.benefit-card .benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ============================================
   Timeline
============================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #8b5cf6, #3b82f6, #10b981);
}

.timeline-item {
  position: relative;
  padding: 1.5rem 0 1.5rem 2rem;
}

.timeline-marker {
  position: absolute;
  left: -50px;
  top: 1.5rem;
  width: 50px;
  height: 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.timeline-content h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.timeline-item.featured .timeline-marker {
  background: linear-gradient(135deg, #10b981, #059669);
}

.timeline-item.featured .timeline-content h4 {
  color: #10b981;
}

/* ============================================
   Eligibility Section
============================================ */
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.eligibility-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  padding: 2rem;
}

.eligibility-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

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

.check-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.focus-tag {
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  font-size: 0.9rem;
  color: #a78bfa;
  transition: all 0.3s;
}

.focus-tag:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.05);
}

/* ============================================
   Apply CTA Box
============================================ */
.apply-cta-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.apply-cta-box .apply-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.apply-cta-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.apply-cta-box p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.apply-form-preview {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.form-step .step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.apply-cta-box .apply-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Grant Stats Mini */
.grant-stats-mini {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mini-stat {
  text-align: center;
}

.mini-stat .mini-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
}

.mini-stat .mini-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   Grant Tiers
============================================ */
.grant-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.grant-tier-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.grant-tier-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.grant-tier-card.featured {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.08));
  border-color: rgba(139, 92, 246, 0.4);
  transform: scale(1.02);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.tier-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.tier-badge.micro { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.tier-badge.builder { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
.tier-badge.scale { background: rgba(16, 185, 129, 0.2); color: #34d399; }

.tier-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
}

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

.tier-features li {
  padding: 0.6rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-features li::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
}

.tier-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.tier-timeline .timeline-label { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.tier-timeline .timeline-value { color: #fff; font-weight: 600; }

.tier-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 10px;
  color: #a78bfa;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
}

.tier-btn:hover {
  background: rgba(139, 92, 246, 0.25);
  transform: scale(1.02);
}

.tier-btn.primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-color: transparent;
  color: #fff;
}

/* ============================================
   Focus & Expertise Grid
============================================ */
.focus-grid,
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.focus-card,
.expertise-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.focus-card:hover,
.expertise-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.focus-icon,
.expertise-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.focus-card h4,
.expertise-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.focus-card p,
.expertise-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.mentor-count {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 4px 10px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  font-size: 0.75rem;
  color: #a78bfa;
}

/* ============================================
   Process Steps
============================================ */
.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 30px;
  color: rgba(139, 92, 246, 0.5);
  font-size: 1.5rem;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ============================================
   Mentors Grid
============================================ */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.mentor-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.mentor-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.mentor-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
}

.mentor-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.mentor-title {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.mentor-tags {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.mentor-tags span {
  padding: 4px 10px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  font-size: 0.75rem;
  color: #a78bfa;
}

/* How Grid */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.how-step {
  text-align: center;
  padding: 1.5rem;
}

.how-step .step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.how-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.how-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Become Mentor Box */
.become-mentor-box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 78, 59, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  align-items: center;
}

.become-mentor-box h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.become-mentor-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-list li::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
}

.bm-requirements {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 1.5rem;
}

.bm-requirements h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.bm-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bm-requirements li {
  padding: 0.4rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ============================================
   Global Button Styles
============================================ */
.default-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.default-btn.style1-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: #fff;
}

.default-btn.style1-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.default-btn.style2-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.default-btn.style2-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.4);
}

.default-btn.large-btn {
  padding: 16px 36px;
  font-size: 1rem;
}

.outline-btn {
  display: inline-block;
  padding: 10px 24px;
  color: #a78bfa;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.outline-btn:hover {
  color: #fff;
}

/* ============================================
   New Pages Responsive
============================================ */
@media (max-width: 991px) {
  .page-hero .hero-title {
    font-size: 2.25rem;
  }
  
  .page-hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .content-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  .timeline-marker {
    left: -40px;
    width: 40px;
    font-size: 0.7rem;
  }
  
  .process-step::after {
    display: none;
  }
  
  .become-mentor-box {
    grid-template-columns: 1fr;
  }
  
  .grant-stats-mini {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .page-hero {
    padding: 120px 0 60px;
  }
  
  .page-hero .hero-title {
    font-size: 1.75rem;
  }
  
  .stat-card .stat-number {
    font-size: 1.75rem;
  }
  
  .apply-cta-box {
    padding: 2rem;
  }
  
  .tier-amount {
    font-size: 1.5rem;
  }
  
  .eligibility-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Contact Page Specific Styles
============================================ */

/* Contact Info Cards Container */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

/* Enhanced Contact Info Card */
.contact-info-card {
  background: var(--sp-bg-card);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-card-radius);
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--sp-transition);
}

.contact-info-card:hover {
  border-color: var(--sp-border-hover);
  transform: translateX(5px);
  box-shadow: var(--sp-shadow-hover);
}

.contact-info-card i {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 205, 238, 0.1);
  border-radius: 50%;
  color: var(--sp-accent);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-card .info-content {
  flex: 1;
}

.contact-info-card .info-content h4 {
  font-family: var(--sp-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--sp-text-primary);
  margin-bottom: 8px;
}

.contact-info-card .info-content p {
  font-size: 14px;
  color: var(--sp-text-secondary);
  margin: 0 0 5px 0;
  line-height: 1.5;
}

.contact-info-card .info-content p:last-child {
  margin-bottom: 0;
}

.contact-info-card .info-content a {
  color: var(--sp-text-secondary);
  text-decoration: none;
  transition: var(--sp-transition);
}

.contact-info-card .info-content a:hover {
  color: var(--sp-accent);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  height: 100%;
}

.contact-form-wrapper h3 {
  font-family: var(--sp-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--sp-text-primary);
  margin-bottom: 10px;
}

.contact-form-wrapper .form-subtitle {
  font-size: 15px;
  color: var(--sp-text-secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Form Check Styles */
.contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

.contact-form .form-check-input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--sp-border);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--sp-transition);
}

.contact-form .form-check-input:checked {
  background: var(--sp-accent);
  border-color: var(--sp-accent);
}

.contact-form .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(44, 205, 238, 0.1);
  outline: none;
}

.contact-form .form-check-label {
  font-size: 14px;
  color: var(--sp-text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.contact-form .form-check-label a {
  color: var(--sp-accent);
  text-decoration: none;
  transition: var(--sp-transition);
}

.contact-form .form-check-label a:hover {
  text-decoration: underline;
}

.contact-form .form-check .invalid-feedback {
  position: absolute;
  bottom: -20px;
  left: 28px;
}

/* Submit Button States */
.sp-form-submit {
  position: relative;
  min-width: 180px;
}

.sp-form-submit .btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-form-submit .btn-loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sp-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Form Message Styles */
.sp-form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.sp-form-message.success {
  display: block;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.sp-form-message.error {
  display: block;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

/* Validation Styles */
.sp-form-control.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.sp-form-control.is-valid {
  border-color: #28a745 !important;
}

.invalid-feedback {
  display: none;
  font-size: 13px;
  color: #dc3545;
  margin-top: 5px;
}

.sp-form-control.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Contact Page Responsive */
@media (max-width: 991px) {
  .contact-info-cards {
    margin-bottom: 30px;
  }
  
  .contact-form-wrapper h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .contact-info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .contact-info-card .info-content {
    text-align: center;
  }
  
  .contact-form-wrapper h3 {
    font-size: 20px;
  }
  
  .sp-form-submit {
    width: 100%;
  }
}

/* ============================================
   Color Contrast & Readability Fixes
   For all secondary pages (developers, careers, 
   security, success-stories, etc.)
============================================ */

/* Tier Card Component - Used in Developers page */
.tier-card {
  position: relative;
  background: rgba(20, 20, 40, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.tier-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.tier-card.featured {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.12));
  border-color: rgba(139, 92, 246, 0.5);
  transform: scale(1.02);
}

.tier-card .tier-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.tier-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-align: center;
}

.tier-card .tier-range {
  font-size: 1rem;
  font-weight: 600;
  color: #a78bfa;
  text-align: center;
  margin-bottom: 1.25rem;
  font-family: 'JetBrains Mono', monospace;
}

.tier-card .tier-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-card .tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.tier-card .tier-features li {
  padding: 0.65rem 0;
  color: #e2e0ea;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tier-card .tier-features li::before {
  content: '✓';
  color: #34d399;
  font-weight: 700;
  font-size: 1rem;
}

.tier-card .tier-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 10px;
  color: #c4b5fd;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
}

.tier-card .tier-btn:hover {
  background: rgba(139, 92, 246, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
}

.tier-card .tier-btn.featured-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-color: transparent;
  color: #fff;
}

.tier-card .tier-btn.featured-btn:hover {
  box-shadow: 0 5px 20px rgba(139, 92, 246, 0.5);
}

/* Enhanced Stat Card Readability */
.stat-card {
  background: rgba(20, 20, 45, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-card .stat-number {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.stat-card .stat-label {
  color: #c4c0d8;
  font-weight: 500;
}

/* Enhanced Benefit Card Readability */
.benefit-card {
  background: rgba(20, 20, 45, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.18);
}

.benefit-card h3 {
  color: #ffffff;
  font-weight: 700;
}

.benefit-card p {
  color: #cccada;
  line-height: 1.7;
}

/* Enhanced Section Headers */
.section-header h2 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-header p {
  color: #c5c3d6;
}

/* Enhanced Eligibility Card Readability */
.eligibility-card {
  background: rgba(20, 20, 45, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.eligibility-card h3 {
  color: #ffffff;
  font-weight: 700;
}

.check-list li {
  color: #d8d6e6;
}

/* Enhanced Apply CTA Box */
.apply-cta-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(59, 130, 246, 0.12) 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
}

.apply-cta-box h2 {
  color: #ffffff;
}

.apply-cta-box p {
  color: #d8d6e8;
}

/* Enhanced Focus Cards */
.focus-card h4,
.expertise-card h4 {
  color: #ffffff;
  font-weight: 600;
}

.focus-card p,
.expertise-card p {
  color: #c8c6da;
}

/* Story Cards - Success Stories Page */
.story-card {
  background: rgba(20, 20, 45, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.story-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.story-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.story-card .story-founder {
  color: #a78bfa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.story-card .story-desc {
  color: #d0cedf;
  font-size: 0.95rem;
  line-height: 1.7;
}

.story-card .story-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.story-card .story-stat .stat-value {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}

.story-card .story-stat .stat-label {
  color: #a8a6ba;
  font-size: 0.85rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(20, 20, 45, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.testimonial-card p {
  color: #e0deec;
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-card strong {
  color: #ffffff;
}

.testimonial-card span {
  color: #a78bfa;
}

/* Alumni Mini Cards */
.alumni-card {
  background: rgba(20, 20, 45, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.alumni-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-3px);
}

.alumni-card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.alumni-card p {
  color: #b8b6ca;
  font-size: 0.9rem;
}

/* Security Page Cards */
.security-feature-card {
  background: rgba(20, 20, 45, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.security-feature-card h3 {
  color: #ffffff;
  font-weight: 700;
}

.security-feature-card p {
  color: #cccada;
  line-height: 1.7;
}

/* Audit Cards */
.audit-card {
  background: rgba(20, 20, 45, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.audit-card h4 {
  color: #ffffff;
}

.audit-card ul li {
  color: #d8d6e6;
}

/* Bounty Tiers */
.bounty-tier strong {
  color: #ffffff;
}

.bounty-tier {
  color: #d0cedf;
}

/* Best Practices */
.practice-card {
  background: rgba(20, 20, 45, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
}

.practice-card h4 {
  color: #ffffff;
  font-weight: 600;
}

.practice-card p {
  color: #c8c6da;
}

/* Global Text Contrast Improvements */
.content-section {
  background: rgba(12, 12, 28, 0.95);
}

.content-section:nth-child(even) {
  background: rgba(18, 14, 38, 0.92);
}

/* Code blocks in cards */
.benefit-card code,
.tier-card code {
  background: rgba(0, 0, 0, 0.4);
  color: #10b981;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: block;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* Links in content */
.content-section a:not(.default-btn):not(.tier-btn):not(.apply-btn) {
  color: #a78bfa;
  transition: color 0.3s;
}

.content-section a:not(.default-btn):not(.tier-btn):not(.apply-btn):hover {
  color: #c4b5fd;
}

/* Form Step Text Enhancement */
.form-step {
  color: #e0deec;
}

.form-step a {
  color: #ffffff !important;
}

/* Mini Stats Enhancement */
.mini-stat .mini-num {
  color: #ffffff;
}

.mini-stat .mini-label {
  color: #a8a6ba;
}

/* Grant Stats Mini */
.grant-stats-mini {
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   News/Blog Page Enhanced Styles
============================================ */

/* Hero Subtitle */
.hero-area .hero-content .hero-subtitle {
  font-size: 18px;
  color: var(--sp-text-secondary);
  margin-top: 15px;
  font-weight: 400;
}

/* News Card Enhanced */
.news-card-enhanced {
  background: var(--sp-bg-card);
  border-radius: var(--sp-card-radius);
  overflow: hidden;
  border: 1px solid var(--sp-border);
  transition: var(--sp-transition);
}

.news-card-enhanced:hover {
  transform: translateY(-8px);
  border-color: var(--sp-border-hover);
  box-shadow: var(--sp-shadow-hover);
}

/* News Image Wrapper */
.news-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

/* News Detail Image - Larger for detail page */
.news-detail-image {
  height: 400px;
  border-radius: 16px;
  margin-bottom: 30px;
}

.news-detail-image .news-gradient-overlay {
  border-radius: 16px;
}

.news-detail-image .news-icon-badge {
  width: 70px;
  height: 70px;
  top: 25px;
  right: 25px;
}

.news-detail-image .news-icon-badge i {
  font-size: 32px;
}

.news-image-wrapper .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card-enhanced:hover .news-image-wrapper .blog-image {
  transform: scale(1.1);
}

/* Gradient Overlays */
.news-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.news-card-enhanced:hover .news-gradient-overlay {
  opacity: 0.5;
}

.gradient-blockchain {
  background: linear-gradient(135deg, rgba(44, 205, 238, 0.6) 0%, rgba(8, 12, 47, 0.9) 100%);
}

.gradient-technology {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.6) 0%, rgba(8, 12, 47, 0.9) 100%);
}

.gradient-defi {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.6) 0%, rgba(8, 12, 47, 0.9) 100%);
}

.gradient-ecosystem {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.6) 0%, rgba(8, 12, 47, 0.9) 100%);
}

.gradient-tokenomics {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.6) 0%, rgba(8, 12, 47, 0.9) 100%);
}

.gradient-security {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.6) 0%, rgba(8, 12, 47, 0.9) 100%);
}

.gradient-gamefi {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.6) 0%, rgba(8, 12, 47, 0.9) 100%);
}

.gradient-grants {
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.6) 0%, rgba(8, 12, 47, 0.9) 100%);
}

/* News Icon Badge */
.news-icon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-icon-badge i {
  font-size: 22px;
  color: #ffffff;
}

/* News Card Content */
.news-card-enhanced .content {
  padding: 25px;
}

.news-card-enhanced .content h3 {
  margin: 12px 0;
  line-height: 1.4;
}

.news-card-enhanced .content h3 a {
  font-size: 18px;
  font-weight: 600;
  color: var(--sp-text-primary);
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-enhanced .content h3 a:hover {
  color: var(--sp-accent);
}

/* News Meta */
.news-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--sp-text-muted);
  font-size: 13px;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-meta i {
  font-size: 14px;
  color: var(--sp-accent);
}

/* Category Tags with Colors */
.tag-blockchain { background: linear-gradient(135deg, #2ccdee, #1a9bb8); }
.tag-technology { background: linear-gradient(135deg, #8a2be2, #6a1bb2); }
.tag-defi { background: linear-gradient(135deg, #00ff88, #00cc6a); color: #080c2f !important; }
.tag-ecosystem { background: linear-gradient(135deg, #ffa500, #cc8400); }
.tag-tokenomics { background: linear-gradient(135deg, #ffd700, #ccac00); color: #080c2f !important; }
.tag-security { background: linear-gradient(135deg, #dc143c, #b01030); }
.tag-gamefi { background: linear-gradient(135deg, #ff00ff, #cc00cc); }
.tag-grants { background: linear-gradient(135deg, #32cd32, #28a428); }

.news-card-enhanced .tag,
.news-sidebar-enhanced .tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.news-card-enhanced .tag:hover {
  transform: scale(1.05);
}

/* News Sidebar Enhanced - Clean Design without gray background */
.news-sidebar-enhanced {
  background: transparent;
  border-radius: var(--sp-card-radius);
  padding: 0;
  border: none;
}

/* News Search Box */
.news-search-box {
  margin-bottom: 35px;
  background: linear-gradient(135deg, rgba(44, 205, 238, 0.1) 0%, rgba(8, 12, 47, 0.8) 100%);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(44, 205, 238, 0.2);
}

.news-search-box .form-control {
  background: rgba(8, 12, 47, 0.6);
  border: 1px solid rgba(44, 205, 238, 0.3);
  border-radius: 30px;
  padding: 15px 55px 15px 25px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.news-search-box .form-control:focus {
  border-color: var(--sp-accent);
  box-shadow: 0 0 0 3px rgba(44, 205, 238, 0.15);
  background: rgba(8, 12, 47, 0.8);
}

.news-search-box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.news-search-box .input-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--sp-accent);
  border: none;
  border-radius: 50%;
  color: #080c2f;
  cursor: pointer;
  transition: var(--sp-transition);
}

.news-search-box .input-btn:hover {
  background: var(--sp-accent-hover);
  transform: translateY(-50%) scale(1.05);
}

/* News Categories */
.news-categories h3,
.news-recent h3,
.news-tags h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(44, 205, 238, 0.3);
  position: relative;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.news-categories h3::after,
.news-recent h3::after,
.news-tags h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--sp-accent), transparent);
}

/* News Categories - Clean Card Style */
.news-categories {
  background: linear-gradient(135deg, rgba(44, 205, 238, 0.08) 0%, rgba(8, 12, 47, 0.6) 100%);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(44, 205, 238, 0.15);
  margin-bottom: 30px;
}

.news-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-categories ul li {
  margin-bottom: 10px;
}

.news-categories ul li:last-child {
  margin-bottom: 0;
}

.news-categories ul li a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: rgba(8, 12, 47, 0.5);
  border-radius: 12px;
  color: #ffffff;
  transition: var(--sp-transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

.news-categories ul li a:hover {
  background: rgba(44, 205, 238, 0.15);
  border-color: rgba(44, 205, 238, 0.3);
  color: #ffffff;
  transform: translateX(5px);
}

.news-categories .category-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(44, 205, 238, 0.2), rgba(44, 205, 238, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  border: 1px solid rgba(44, 205, 238, 0.2);
}

.news-categories .category-icon i {
  font-size: 16px;
  color: var(--sp-accent);
}

.news-categories .category-count {
  margin-left: auto;
  background: rgba(44, 205, 238, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sp-accent);
}

/* News Recent Articles - Clean Card Style */
.news-recent {
  background: linear-gradient(135deg, rgba(44, 205, 238, 0.08) 0%, rgba(8, 12, 47, 0.6) 100%);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(44, 205, 238, 0.15);
  margin-bottom: 30px;
}

.news-recent .article-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-recent .article-item:first-child {
  padding-top: 0;
}

.news-recent .article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-recent .article-item .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.news-recent .article-item .heading span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.news-recent .article-item h3 {
  margin: 0;
}

.news-recent .article-item h3 a {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.news-recent .article-item h3 a:hover {
  color: var(--sp-accent);
}

/* News Tags - Clean Card Style */
.news-tags {
  background: linear-gradient(135deg, rgba(44, 205, 238, 0.08) 0%, rgba(8, 12, 47, 0.6) 100%);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(44, 205, 238, 0.15);
}

.news-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-tags .tag-pill {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(8, 12, 47, 0.5);
  border: 1px solid rgba(44, 205, 238, 0.2);
  border-radius: 25px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  transition: var(--sp-transition);
  -webkit-font-smoothing: antialiased;
}

.news-tags .tag-pill:hover {
  background: var(--sp-accent);
  border-color: var(--sp-accent);
  color: #080c2f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(44, 205, 238, 0.3);
}

/* Pagination Enhancement */
.page-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-pagination .page-item .page-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sp-bg-card);
  border: 1px solid var(--sp-border);
  border-radius: 10px;
  color: var(--sp-text-secondary);
  font-weight: 500;
  transition: var(--sp-transition);
}

.page-pagination .page-item .page-link:hover,
.page-pagination .page-item.active .page-link {
  background: var(--sp-accent);
  border-color: var(--sp-accent);
  color: #080c2f;
}

.page-pagination .page-item .page-link img {
  width: 12px;
  height: auto;
  filter: brightness(0) invert(0.7);
  transition: filter 0.3s ease;
}

.page-pagination .page-item .page-link:hover img {
  filter: brightness(0) invert(0);
}

/* Responsive News Styles */
@media (max-width: 991px) {
  .news-sidebar-enhanced {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .news-image-wrapper {
    height: 180px;
  }
  
  .news-card-enhanced .content {
    padding: 20px;
  }
  
  .news-card-enhanced .content h3 a {
    font-size: 16px;
  }
  
  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .hero-area .hero-content .hero-subtitle {
    font-size: 16px;
  }
}

/* ============================================
   Blog Details Page Enhancements
   ============================================ */

/* Blog Details Content Area */
.blog-details-area .blog-left-widget {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blog-details-area .main-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.blog-details-area .main-heading span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Tag Share Section */
.blog-details-area .tag-share {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.blog-details-area .tag-share .tags,
.blog-details-area .tag-share .share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-area .tag-share h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.blog-details-area .tag-share .tags ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details-area .tag-share .tags ul li a.tag-pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(44, 205, 238, 0.1);
  border: 1px solid rgba(44, 205, 238, 0.2);
  border-radius: 20px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-details-area .tag-share .tags ul li a.tag-pill:hover {
  background: var(--sp-accent);
  border-color: var(--sp-accent);
  color: #080c2f;
}

.blog-details-area .tag-share .share ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details-area .tag-share .share ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.blog-details-area .tag-share .share ul li a:hover {
  background: var(--sp-accent);
  border-color: var(--sp-accent);
  color: #080c2f;
  transform: translateY(-3px);
}

/* Details List Enhancement */
.blog-details-area .details-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.blog-details-area .details-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.blog-details-area .details-list li i {
  color: var(--sp-accent);
  font-size: 18px;
}

/* Blog Review Quote */
.blog-details-area .blog-review {
  background: linear-gradient(135deg, rgba(44, 205, 238, 0.08) 0%, rgba(8, 12, 47, 0.6) 100%);
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid var(--sp-accent);
}

.blog-details-area .blog-review .logo {
  margin-bottom: 20px;
}

.blog-details-area .blog-review .logo img {
  height: 40px;
  width: auto;
}

.blog-details-area .blog-review h5 {
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-details-area .blog-review .details h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--sp-accent);
  margin-bottom: 5px;
}

.blog-details-area .blog-review .details p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Article Navigation */
.blog-details-area .details-next-preview {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0;
}

.blog-details-area .details-next-preview .article-item {
  flex: 1;
}

.blog-details-area .details-next-preview .article-item .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sp-accent);
  margin-bottom: 15px;
}

.blog-details-area .details-next-preview .article-item .read-more img {
  width: 16px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(52%) saturate(1000%) hue-rotate(150deg) brightness(101%) contrast(92%);
}

.blog-details-area .details-next-preview .article-item .heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.blog-details-area .details-next-preview .article-item .heading span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.blog-details-area .details-next-preview .article-item h3 a {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.blog-details-area .details-next-preview .article-item h3 a:hover {
  color: var(--sp-accent);
}

/* Comments Section */
.blog-details-area .comments-widget {
  margin-top: 50px;
}

.blog-details-area .comments-widget h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #ffffff;
}

.blog-details-area .comment-item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-details-area .comment-item .image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details-area .comment-item .content h6 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 10px;
}

.blog-details-area .comment-item .content h6 span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-left: 10px;
}

.blog-details-area .comment-item .content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-details-area .comment-item .content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sp-accent);
}

/* Leave Comment Form */
.blog-details-area .leave-widget {
  margin-top: 50px;
}

.blog-details-area .leave-widget h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #ffffff;
}

.blog-details-area .leave-widget .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.blog-details-area .leave-widget .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--sp-accent);
  box-shadow: 0 0 0 3px rgba(44, 205, 238, 0.1);
}

.blog-details-area .leave-widget textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.blog-details-area .leave-widget .form-check-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.blog-details-area .leave-widget .default-btn {
  margin-top: 10px;
}

/* Responsive Blog Details */
@media (max-width: 767px) {
  .news-detail-image {
    height: 250px;
  }
  
  .blog-details-area .tag-share {
    flex-direction: column;
  }
  
  .blog-details-area .details-next-preview {
    flex-direction: column;
  }
  
  .blog-details-area .comment-item {
    flex-direction: column;
    gap: 15px;
  }
}
