/* ========================================
   CONSOLIDATED CUSTOM STYLES
   ======================================== */

/* ========================================
   MENU DROPDOWN BUTTON AND DROPDOWN MENU
   ======================================== */

.menu-dropdown-btn {
  background: transparent !important;
  border: none;
  border-radius: 50%;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
  box-shadow: none;
}

.menu-dropdown-btn .lni-menu {
  color: #fff;
  font-size: 1.7rem;
  transition: color 0.2s;
}

.menu-dropdown-btn:hover .lni-menu,
.menu-dropdown-btn:focus .lni-menu,
.menu-dropdown-btn.show .lni-menu {
  color: #56AB2F;
}

.dropdown-menu[aria-labelledby="menuDropdown"] {
  min-width: 180px;
}

.dropdown-menu[aria-labelledby="menuDropdown"] .dropdown-item {
  color: #388E1C;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu[aria-labelledby="menuDropdown"] .dropdown-item:hover,
.dropdown-menu[aria-labelledby="menuDropdown"] .dropdown-item:focus {
  background: #E8F5E0;
  color: #56AB2F;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

html {
  min-width: 390px;
}

/* ========================================
   TEAM SECTION STYLES
   ======================================== */

.team-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F5F5F5 0%, #ffffff 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h3 {
  font-size: 42px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 16px;
  color: #666;
}

.team-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(86, 171, 47, 0.2);
}

.team-member-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #A8E063 0%, #56AB2F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.team-member-content {
  padding: 30px;
}

.team-member-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 5px;
}

.team-member-title {
  font-size: 14px;
  color: #56AB2F;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.experience-section {
  margin-bottom: 20px;
}

.experience-section h5 {
  font-size: 13px;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.credly-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #56AB2F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.credly-link:hover {
  color: #A8E063;
  text-decoration: underline;
}

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

.experience-list li {
  font-size: 13px;
  color: #666;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.experience-list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #56AB2F;
  font-weight: 700;
}

.shared-experience {
  background: #F5F5F5;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.shared-experience h4 {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.shared-experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.shared-item {
  text-align: center;
}

.shared-item-icon {
  font-size: 48px;
  color: #56AB2F;
  margin-bottom: 15px;
}

.shared-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.shared-item p {
  font-size: 14px;
  color: #666;
}

/* ========================================
   PRIVACY SECTION STYLES
   ======================================== */

.privacy-section {
  padding: 80px 0;
  background: #ffffff;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1A1A1A;
  margin-top: 40px;
  margin-bottom: 20px;
}

.privacy-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 30px;
}

.privacy-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.privacy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.privacy-divider {
  border-top: 2px solid #E8E8E8;
  margin: 60px 0;
}

.contact-form-section {
  background: #F5F5F5;
  padding: 60px 0;
  margin-top: 40px;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-wrapper h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 30px;
  text-align: center;
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: #56AB2F;
  box-shadow: 0 0 0 3px rgba(168, 224, 99, 0.2);
}

.form-button {
  margin-top: 20px;
}

.privacy-page-title {
  text-align: center;
  margin-bottom: 50px;
}

.privacy-page-title h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1A1A1A;
}

.privacy-page-title p {
  font-size: 16px;
  color: #666;
}

.highlight {
  color: #56AB2F;
  font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .team-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title h3 {
    font-size: 32px;
  }

  .shared-experience-grid {
    grid-template-columns: 1fr;
  }

  .pricing-style-4 .pricing-active {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PRICING GRID - ALL ITEMS VISIBLE
   ======================================== */

.pricing-style-4 .pricing-active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px 0;
}

.pricing-style-4 .pricing-active .single-pricing-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-style-4 .pricing-active .single-pricing {
  margin: 0 !important;
  transform: none !important;
  border: 1px solid #e0e0e0 !important;
}

.pricing-style-4 .pricing-active .single-pricing.active {
  transform: none !important;
  z-index: auto !important;
  border: 2px solid #56AB2F !important;
}

.pricing-style-4 .pricing-active-wrapper .tns-controls {
  display: none !important;
}

@media only screen and (max-width: 1200px) {
  .pricing-style-4 .pricing-active {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .pricing-style-4 .pricing-active {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   EXTRACTED INLINE STYLES - FORM MESSAGES
   ======================================== */
#contactFormMessage,
#privacySuccessMessage {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
}

#privacySuccessMessage {
  background: rgba(168, 224, 99, 0.15);
  border: 1px solid #56AB2F;
  color: #56AB2F;
}

/* ========================================
   EXTRACTED INLINE STYLES - HERO SECTION
   ======================================== */
.hero-section.hero-style-5.img-bg {
  background: linear-gradient(135deg, #ffffff 0%, #F5F5F5 100%);
  background-image: none;
}

/* ========================================
   EXTRACTED INLINE STYLES - FEATURE SECTION
   ======================================== */
.feature-section.feature-style-5 {
  background: linear-gradient(135deg, #F5F5F5 0%, #ffffff 100%);
}

/* ========================================
   EXTRACTED INLINE STYLES - SUPPORT FORM
   ======================================== */
.support-form-container {
  background: white;
  padding: 60px 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.form-group textarea {
  font-family: inherit;
  resize: vertical;
}

.form-group .text-center {
  text-align: center;
}

.form-button {
  text-align: center;
}

.form-button .button {
  padding: 15px 40px;
  font-size: 16px;
}

/* ========================================
   EXTRACTED INLINE STYLES - PRIVACY PAGE
   ======================================== */
.privacy-acknowledgement {
  margin-top: 40px;
  font-weight: 500;
}

/* ========================================
   EXTRACTED INLINE STYLES - COMMUNITY PAGE
   ======================================== */
.community-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #F5F5F5 100%);
}

.community-image {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.community-hero-icon {
  text-align: center;
  padding: 60px 20px;
}

.community-hero-icon i {
  font-size: 80px;
  color: #56AB2F;
  margin-bottom: 20px;
  display: block;
}

.community-hero-icon p {
  color: #666;
  font-size: 16px;
}

.program-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.program-card-icon {
  margin-bottom: 20px;
}

.program-card-icon i {
  font-size: 50px;
  color: #56AB2F;
}

.program-card h3 {
  margin-bottom: 15px;
  color: #333;
}

.program-card p {
  color: #666;
  line-height: 1.6;
}

/* ========================================
   EXTRACTED INLINE STYLES - BENEFITS & CTA
   ======================================== */
.benefits-container {
  background: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.benefits-container ul {
  list-style: none;
  padding: 0;
}

.benefits-container li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
}

.benefits-container li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.benefits-container li i {
  color: #56AB2F;
  font-weight: bold;
  margin-right: 15px;
  margin-top: 3px;
  font-size: 18px;
}

.benefits-container strong {
  color: #333;
}

.benefits-container span {
  color: #666;
}

.cta-section {
  background: linear-gradient(135deg, #56AB2F 0%, #388E1C 100%);
  padding: 60px 40px;
  border-radius: 10px;
  text-align: center;
  color: white;
}

.cta-section h2 {
  margin-bottom: 20px;
  color: white;
}

.cta-section p {
  margin-bottom: 30px;
  font-size: 16px;
  color: rgba(255,255,255,0.95);
}

.cta-section .button {
  background: white;
  color: #56AB2F;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
}

/* ========================================
   EXTRACTED INLINE STYLES - TICKET PAGE
   ======================================== */
#supportFormMessage {
  display: none;
  margin-top: 25px;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.support-contact-section {
  text-align: center;
  margin-top: 40px;
}

.support-contact-section p {
  color: #666;
  margin-bottom: 20px;
}

.support-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.support-contact-links a {
  display: inline-block;
  color: #56AB2F;
  text-decoration: none;
  font-weight: 600;
}
