/* ==========================================================================
   #VIDEO STORIES
   ========================================================================== */
.video-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-story-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.video-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-story-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.video-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.video-title {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--color-heading);
  line-height: 1.4;
}

.video-description {
  color: var(--color-text);
  margin-bottom: 1rem;
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin-top: auto;
}

.video-meta i {
  margin-right: 0.25rem;
  font-size: 0.9em;
}

/* ==========================================================================
   #CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background: #f9f9f9;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
}

.contact-intro p {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important; /* Force white color */
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative; /* For perfect centering */
}

/* Ensure icons are perfectly centered */
.contact-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff !important; /* Force white color */
  text-align: center;
  width: 100%;
  padding: 0 2px; /* Small adjustment if needed */
  box-sizing: border-box;
}

.contact-text {
  flex: 1;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.contact-text p,
.contact-text a {
  color: var(--color-text);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.contact-text a {
  font-weight: 500;
  color: var(--color-primary);
}

.contact-text a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.contact-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-heading);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

.contact-form .btn-block {
  width: 100%;
  justify-content: center;
}

.contact-form .btn i {
  margin-left: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* ==========================================================================
   #PODCAST
   ========================================================================== */
.podcast-section {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.featured-episode {
  margin-bottom: 4rem;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.episode-player {
  display: flex;
  flex-wrap: wrap;
}

.video-container {
  flex: 1 1 60%;
  min-width: 300px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.episode-details {
  flex: 1 1 40%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.episode-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.episode-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.episode-description {
  margin-bottom: 2rem;
  color: var(--color-gray);
  line-height: 1.7;
}

.episode-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.episodes-grid {
  margin-top: 3rem;
}

.grid-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  color: var(--color-dark);
}

.episodes-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.episode-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episode-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.episode-image {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.episode-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.play-button:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translate(-50%, -50%) scale(1.1);
}

.episode-info {
  padding: 1.5rem;
}

.episode-info h4 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: var(--color-dark);
}

.episode-info p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.episode-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.episode-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.episode-link:hover {
  color: #000;
}

.episode-link:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   #BLOG
   ========================================================================== */
.blog-section {
  padding: 6rem 0;
  background-color: var(--color-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.category-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.4rem;
  margin: 0.5rem 0 1rem;
  line-height: 1.4;
  color: var(--color-dark);
}

.blog-excerpt {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  flex: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: #000;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Featured Blog Post */
.blog-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.blog-card.featured .blog-image {
  flex: 1;
  padding-top: 0;
  height: 100%;
  min-height: 300px;
}

.blog-card.featured .blog-content {
  flex: 1;
  padding: 2.5rem;
  justify-content: center;
}

.blog-card.featured .blog-title {
  font-size: 1.8rem;
}

/* ==========================================================================
   #EVENTS
   ========================================================================== */
.events-section {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.events-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
  position: relative;
  padding-top: 50%;
  overflow: hidden;
}

.event-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.event-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-details {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  flex: 1;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--color-light-gray);
  border-radius: 8px;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
}

.day {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-dark);
}

.year {
  font-size: 0.9rem;
  color: var(--color-gray);
}

.event-info {
  flex: 1;
}

.event-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.event-meta i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.event-excerpt {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.event-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

/* Featured Event */
.event-card.featured {
  flex-direction: column;
}

.event-card.featured .event-image {
  padding-top: 40%;
}

.event-card.featured .event-details {
  flex-direction: row;
}

.event-card.featured .event-title {
  font-size: 1.8rem;
}

/* Past Events */
.past-events {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.past-events h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.past-events p {
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--color-primary);
}

.newsletter-form .btn {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 991.98px) {
  .episode-player {
    flex-direction: column;
  }
  
  .video-container,
  .episode-details {
    flex: 1 1 100%;
  }
  
  .blog-card.featured {
    flex-direction: column;
  }
  
  .event-card.featured .event-details {
    flex-direction: column;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: 1.5rem;
    width: 100%;
    height: auto;
    padding: 1rem;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  .month,
  .day,
  .year {
    font-size: 1.25rem;
  }
  
  .event-actions {
    flex-direction: column;
  }
  
  .event-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .episodes-container {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
}
