/* ═══════════════════════════════════════
   AWARDS PAGE STYLES
═══════════════════════════════════════ */

/* ─── HERO SECTION ─── */
.awards-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.awards-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.awards-hero::after {
  content: '🏆';
  position: absolute;
  bottom: 20px;
  right: 40px;
  font-size: 120px;
  opacity: 0.05;
}

.awards-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.awards-hero h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.awards-hero .hero-subtitle {
  color: #d4af37;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-line {
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin: 0 auto 25px;
}

.awards-hero .hero-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── SECTION COMMON ─── */
.section-tag {
  display: inline-block;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 15px;
}

/* ─── SUCCESS STORY ─── */
.success-story {
  padding: 80px 0;
  background: #ffffff;
}

.success-content {
  padding-right: 40px;
}

.success-content p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

.success-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #d4af37;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

.success-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.success-image img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  background: #e2e8f0;
}

/* ─── FOUNDER SECTION ─── */
.founder-section {
  padding: 80px 0;
  background: #f7fafc;
}

.founder-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #4a5568;
  font-size: 18px;
  text-align: center;
}

.founder-details {
  margin-top: 20px;
}

.founder-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-bottom-color: #d4af37;
}

.founder-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.founder-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 12px;
}

.founder-card p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 15px;
}

.founder-card strong {
  color: #0a1628;
}

/* ─── GALLERY SECTION ─── */
.awards-gallery-section {
  padding: 80px 0;
  background: #ffffff;
}

.gallery-subtitle {
  color: #4a5568;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Gallery Filter */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 24px;
  border: 2px solid #e2e8f0;
  background: transparent;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #d4af37;
  color: #d4af37;
}

.filter-btn.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  display: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item.show {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f7fafc;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.05);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-badge {
  display: inline-block;
  background: #d4af37;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.overlay-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.overlay-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.overlay-link:hover {
  color: #ffffff;
}

/* Load More Button */
.gallery-load-more {
  margin-top: 40px;
}

.btn-load-more {
  padding: 12px 40px;
  border: 2px solid #d4af37;
  background: transparent;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #d4af37;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  background: #d4af37;
  color: #ffffff;
}

/* ─── AWARDS LIST ─── */
.awards-grid-section {
  padding: 80px 0;
  background: #f7fafc;
}

.grid-subtitle {
  color: #4a5568;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 50px;
}

.awards-list {
  margin-top: 10px;
}

.award-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  height: 100%;
}

.award-item:hover {
  border-color: #d4af37;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.award-item.featured {
  border-left: 4px solid #d4af37;
  background: linear-gradient(135deg, #fefcf5 0%, #ffffff 100%);
}

.award-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #d4af37;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.award-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.award-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 4px;
}

.award-org {
  color: #d4af37;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.award-content p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 10px;
}

.award-link {
  color: #d4af37;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.award-link:hover {
  color: #b8960f;
  text-decoration: underline;
}

/* ─── MODAL STYLES ─── */
.modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
}

.modal-header {
  background: #0a1628;
  color: #ffffff;
  border-bottom: 3px solid #d4af37;
  padding: 18px 25px;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-title {
  font-weight: 700;
  font-size: 20px;
}

.modal-body {
  padding: 0;
  background: #f7fafc;
}

.modal-body img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background: #ffffff;
}

.modal-caption {
  padding: 20px 25px;
  margin: 0;
  color: #4a5568;
  font-size: 16px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

/* ─── MISSION SECTION ─── */
.mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
  color: #ffffff;
}

.mission-section h2 {
  color: #ffffff;
}

.mission-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.mission-quote {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #d4af37;
  padding: 30px 35px;
  border-radius: 8px;
  margin-top: 10px;
}

.mission-quote p {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 70px 0;
  background: #f7fafc;
}

.cta-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 15px;
}

.cta-section p {
  color: #4a5568;
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-section .btn-primary {
  background: #0a1628;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
  background: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .awards-hero h1 {
    font-size: 42px;
  }

  section h2 {
    font-size: 32px;
  }

  .success-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .success-stats {
    gap: 25px;
  }

  .stat-number {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 767px) {
  .awards-hero {
    padding: 70px 0 50px;
  }

  .awards-hero h1 {
    font-size: 32px;
  }

  .awards-hero .hero-subtitle {
    font-size: 18px;
  }

  .awards-hero .hero-text {
    font-size: 16px;
  }

  section h2 {
    font-size: 26px;
  }

  .founder-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }

  .gallery-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 6px 16px;
    font-size: 12px;
  }

  .award-item {
    flex-direction: column;
    padding: 25px;
    gap: 12px;
  }

  .award-badge {
    top: -8px;
    right: 15px;
    font-size: 10px;
    padding: 2px 12px;
  }

  .success-stats {
    flex-wrap: wrap;
    gap: 15px;
  }

  .stat-item {
    flex: 0 0 45%;
  }

  .mission-quote {
    padding: 20px;
  }

  .mission-quote p {
    font-size: 17px;
  }

  .cta-section h3 {
    font-size: 24px;
  }

  .cta-section .btn-primary {
    padding: 12px 30px;
    font-size: 15px;
  }

  .overlay-content h4 {
    font-size: 15px;
  }

  .overlay-content p {
    font-size: 12px;
  }
}