

.fas-hero {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.fas-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fas-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(114, 55, 13, 0.88) 0%, rgba(90, 44, 10, 0.78) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  padding: 20px;
}

.fas-hero-overlay h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.fas-hero-overlay p {
  font-size: 1.4rem;
  max-width: 800px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

/* Modern Tab Navigation */
.modern-tabs {
  background: white;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modern-tab {
  flex: 1;
  min-width: 150px;
  background: transparent;
  border: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.modern-tab i {
  font-size: 1.2rem;
}

.modern-tab:hover {
  background: #f8f5f0;
  color: #72370d;
  transform: translateY(-2px);
}

.modern-tab.active {
  background: linear-gradient(135deg, #72370d 0%, #5a2c0a 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(114, 55, 13, 0.3);
}

.modern-tab.active:hover {
  transform: translateY(-2px);
}

/* Content Sections */
.tab-content-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline Section */
.timeline-section {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.timeline-section::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #72370d 0%, #c89666 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 30px;
  width: 15px;
  height: 15px;
  background: #72370d;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(114, 55, 13, 0.2);
}

.timeline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, #72370d 0%, #5a2c0a 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(114, 55, 13, 0.3);
}

.timeline-content h5 {
  color: #72370d;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.timeline-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Info Cards */
.info-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #72370d;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-card-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #72370d 0%, #5a2c0a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(114, 55, 13, 0.2);
}

.info-card-icon i {
  font-size: 30px;
  color: white;
}

.info-card h4 {
  color: #72370d;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.7;
}

.info-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #72370d;
  font-weight: 700;
  font-size: 1.1rem;
}

.info-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Intro Section */
.intro-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 35px;
  margin-bottom: 40px;
  border-left: 5px solid #72370d;
}

.intro-section p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 15px;
}

.intro-section p:last-child {
  margin-bottom: 0;
}

.founder-highlight {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #72370d;
}

.founder-highlight strong {
  color: #72370d;
  font-size: 1.05rem;
}

/* Section Titles */
.section-title {
  color: #72370d;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title i {
  color: #72370d;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

/* Contact Form Styling */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
  font-weight: 600;
  color: #72370d;
  margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #72370d;
  box-shadow: 0 0 0 0.2rem rgba(114, 55, 13, 0.15);
}

.btn-submit {
  background: linear-gradient(135deg, #72370d 0%, #5a2c0a 100%);
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(114, 55, 13, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114, 55, 13, 0.4);
}

/* Donation Options */
.donation-option {
  background: white;
  border: 3px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.donation-option:hover {
  border-color: #72370d;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.donation-option.featured {
  border-color: #72370d;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0ea 100%);
}

.donation-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #72370d;
  margin: 15px 0;
}

.donation-label {
  color: #72370d;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Sidebar */
.sidebar-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
}

.sidebar-card h5 {
  color: #72370d;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #72370d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #72370d;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}

.sidebar-link:hover {
  background: #f8f5f0;
  color: #5a2c0a;
  transform: translateX(5px);
}

.sidebar-link i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .fas-hero {
    height: 300px;
  }

  .fas-hero-overlay h1 {
    font-size: 2rem;
  }

  .fas-hero-overlay p {
    font-size: 1.1rem;
  }

  .modern-tabs {
    flex-direction: column;
  }

  .modern-tab {
    width: 100%;
    min-width: auto;
  }

  .timeline-section {
    padding-left: 35px;
  }

  .timeline-section::before {
    left: 15px;
  }

  .timeline-item::before {
    left: -30px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}