/* Gallery Page Styles */
.gallery-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.gallery-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
}

/* Video Gallery */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-item {
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.video-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  transition: var(--transition);
}

.video-item:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 20px;
}

.video-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}

.video-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 10px;
}

.video-duration {
  display: inline-block;
  color: var(--primary-color);
  font-size: 13px;
}

.video-duration i {
  margin-right: 5px;
}

/* Media Kit */
.media-kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.media-kit-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.media-kit-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.kit-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--white);
}

.media-kit-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--white);
}

.media-kit-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Events Page Styles */
.events-intro {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.type-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.type-badge.conference {
  background: rgba(255, 107, 0, 0.2);
  color: var(--primary-color);
}

.type-badge.workshop {
  background: rgba(0, 150, 255, 0.2);
  color: #00a0ff;
}

.type-badge.speaking {
  background: rgba(150, 0, 255, 0.2);
  color: #a060ff;
}

.type-badge.networking {
  background: rgba(0, 200, 100, 0.2);
  color: #00d070;
}

/* Speaking Topics */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.topic-card {
  padding: 30px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.topic-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.topic-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--white);
}

.topic-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--white);
}

.topic-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Past Events */
.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.past-event-card {
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}

.past-event-card:hover {
  border-color: var(--primary-color);
}

.past-event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.past-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: grayscale(30%);
}

.past-event-card:hover .past-event-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.past-event-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.event-past-badge {
  background: rgba(0, 0, 0, 0.8);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.past-event-content {
  padding: 20px;
}

.past-event-date {
  display: block;
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 10px;
}

.past-event-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}

.past-event-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
}

.past-event-location {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.past-event-location i {
  color: var(--primary-color);
  margin-right: 5px;
}

/* Book Speaking Section */
.book-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.book-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.book-info p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.speaking-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.speaking-features .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.speaking-features i {
  font-size: 20px;
  color: var(--primary-color);
}

.speaking-features span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.book-form {
  background: rgba(255, 107, 0, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
}

.book-form h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--white);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive Adjustments for Gallery & Events */
@media (max-width: 1024px) {
  .video-grid,
  .topics-grid,
  .past-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-kit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .video-grid,
  .media-kit-grid,
  .topics-grid,
  .past-events-grid {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .whatsapp-float {
    bottom: 75px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

/* Contact Page Specific Styles */
.contact-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

.calendly-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

.calendly-info h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.calendly-benefits {
  list-style: none;
}

.calendly-benefits li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.calendly-benefits i {
  font-size: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 5px;
}

.calendly-benefits h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.calendly-benefits p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.calendly-widget-wrapper {
  background: rgba(255, 107, 0, 0.05);
  border-radius: 20px;
  padding: 20px;
  border: 2px solid var(--primary-color);
}

/* FAQ Section */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 107, 0, 0.1);
}

.faq-question h4 {
  font-size: 18px;
  color: var(--white);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 25px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.map-container {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.map-placeholder {
  height: 400px;
  background: rgba(255, 107, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.map-placeholder i {
  font-size: 60px;
  color: var(--primary-color);
}

.map-placeholder p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Alternative Contact Methods */
.alt-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.alt-contact-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.alt-contact-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
}

.alt-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--white);
}

.alt-contact-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}

.alt-contact-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border-top: 2px solid var(--primary-color);
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--white);
}

.newsletter-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.newsletter-input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 107, 0, 0.3);
  border-radius: 30px;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.newsletter-input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-input-group button {
  padding: 15px 40px;
}

.newsletter-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Form Select Styling */
.form-group select {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 107, 0, 0.3);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .philosophy-grid,
  .skills-grid,
  .services-grid,
  .features-grid,
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lessons-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calendly-container {
    grid-template-columns: 1fr;
  }

  .alt-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 38px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .philosophy-grid,
  .skills-grid,
  .mission-vision-grid,
  .problems-grid,
  .services-grid,
  .features-grid,
  .capabilities-grid,
  .awards-grid,
  .stats-grid,
  .lessons-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 15px 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 10px;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input-group button {
    width: 100%;
  }

  .map-placeholder {
    height: 300px;
  }
} /* ===================================
   Page-Specific Styles
   Additional styles for multi-page layout
   =================================== */

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  background-image: url("/public/images/bg-leader.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 107, 0, 0.1) 0%,
    transparent 70%
  );
}

.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.page-header > * {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 56px;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* Breadcrumb Navigation */
.breadcrumb-section {
  background: #0a0a0a;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
  color: var(--primary-color);
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  padding: 15px 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
  list-style: none;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: var(--white);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary-color);
  padding-left: 30px;
}

/* Philosophy/Features Grid */
.philosophy-grid,
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.philosophy-card,
.skill-category {
  padding: 30px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.philosophy-card:hover,
.skill-category:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.philosophy-icon,
.mv-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 30px;
  color: var(--white);
}

.philosophy-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}

.philosophy-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Mission & Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mission-box,
.vision-box {
  padding: 40px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  text-align: center;
}

.mission-box h3,
.vision-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.mission-box p,
.vision-box p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Skills Category */
.skill-category h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.skill-category h3 i {
  color: var(--primary-color);
}

.skill-category ul {
  list-style: none;
}

.skill-category ul li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.skill-category ul li:last-child {
  border-bottom: none;
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.award-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.award-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.award-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
}

.award-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}

.award-year {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.award-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Journey/Timeline Enhancements */
.journey-intro {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.intro-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.timeline-highlights {
  margin-top: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.timeline-highlights h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.timeline-highlights ul {
  list-style: none;
  text-align: left;
}

.timeline-highlights li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 25px;
  position: relative;
}

.timeline-highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.timeline-quote {
  margin-top: 20px;
  padding: 20px;
  border-left: 4px solid var(--primary-color);
  background: rgba(255, 107, 0, 0.05);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* Lessons Grid */
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lesson-card {
  padding: 30px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.lesson-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.lesson-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 107, 0, 0.2);
  position: absolute;
  top: 20px;
  right: 20px;
}

.lesson-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.lesson-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Venture Detail Pages */
.venture-header {
  text-align: center;
  margin-bottom: 60px;
}

.venture-icon-large {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 56px;
  color: var(--white);
}

.venture-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: var(--white);
}

.venture-tagline {
  font-size: 20px;
  color: var(--primary-color);
}

.venture-description {
  margin-bottom: 50px;
}

.venture-description h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.venture-description p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* Services/Features Grid */
.services-grid,
.features-grid,
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.service-item,
.feature-item,
.capability-item {
  padding: 25px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.service-item:hover,
.feature-item:hover,
.capability-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.service-item i,
.feature-item i,
.capability-item i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.service-item h4,
.feature-item h4,
.capability-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--white);
}

.service-item p,
.feature-item p,
.capability-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 15px;
  border: 2px solid var(--primary-color);
}

.stat-box h4 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* How It Works */
.steps-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.step-item {
  flex: 1;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.step-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--white);
}

.step-item p {
  color: rgba(255, 255, 255, 0.8);
}

.step-arrow {
  font-size: 24px;
  color: var(--primary-color);
  margin: 0 20px;
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.problem-item {
  padding: 30px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.problem-item:hover {
  border-color: var(--primary-color);
}

.problem-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.problem-item h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--white);
}

.problem-item p {
  color: var(--primary-color);
  font-weight: 500;
}

/* Technology Stack */
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.tech-badge {
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 30px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.testimonial-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--primary-color);
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Page Specific Styles */
.contact-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

.calendly-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

.calendly-info h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.calendly-benefits {
  list-style: none;
}

.calendly-benefits li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.calendly-benefits i {
  font-size: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 5px;
}

.calendly-benefits h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.calendly-benefits p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.calendly-widget-wrapper {
  background: rgba(255, 107, 0, 0.05);
  border-radius: 20px;
  padding: 20px;
  border: 2px solid var(--primary-color);
}

/* FAQ Section */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 107, 0, 0.1);
}

.faq-question h4 {
  font-size: 18px;
  color: var(--white);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 25px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.map-container {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.map-placeholder {
  height: 400px;
  background: rgba(255, 107, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.map-placeholder i {
  font-size: 60px;
  color: var(--primary-color);
}

.map-placeholder p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Alternative Contact Methods */
.alt-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.alt-contact-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.alt-contact-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
}

.alt-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--white);
}

.alt-contact-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}

.alt-contact-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border-top: 2px solid var(--primary-color);
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--white);
}

.newsletter-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.newsletter-input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 107, 0, 0.3);
  border-radius: 30px;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.newsletter-input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-input-group button {
  padding: 15px 40px;
}

.newsletter-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Form Select Styling */
.form-group select {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 107, 0, 0.3);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

/* Responsive Adjustments for Contact Page */
@media (max-width: 1024px) {
  .calendly-container {
    grid-template-columns: 1fr;
  }

  .alt-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input-group button {
    width: 100%;
  }

  .map-placeholder {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .philosophy-grid,
  .skills-grid,
  .services-grid,
  .features-grid,
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lessons-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 38px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .philosophy-grid,
  .skills-grid,
  .mission-vision-grid,
  .problems-grid,
  .services-grid,
  .features-grid,
  .capabilities-grid,
  .awards-grid,
  .stats-grid,
  .lessons-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 15px 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 10px;
  }
}

.how-it-works {
  margin-top: 50px;
}

.mt-50 {
  margin-top: 50px;
}
