/* ===== ROOT VARIABLES ===== */
:root {
  /* Base Colors */
  --primary-color: #3066BE;
  --primary-dark: #224D9D;
  --primary-light: #4F85E4;
  
  --secondary-color: #FF7D00;
  --secondary-dark: #D16700;
  --secondary-light: #FF9A3F;
  
  --tertiary-color: #28CC9E;
  --tertiary-dark: #1BA77F;
  --tertiary-light: #4FEABF;
  
  /* Neutral Colors */
  --text-dark: #252A34;
  --text-medium: #596172;
  --text-light: #8896AB;
  
  --bg-light: #F8F9FC;
  --bg-white: #FFFFFF;
  --bg-off-white: #F0F2F8;
  
  /* Shadow Colors */
  --shadow-light: rgba(32, 41, 69, 0.08);
  --shadow-medium: rgba(32, 41, 69, 0.12);
  --shadow-dark: rgba(32, 41, 69, 0.16);
  
  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-dark));
  
  /* Overlay Colors */
  --overlay-dark: rgba(13, 21, 43, 0.6);
  --overlay-light: rgba(248, 249, 252, 0.85);
  
  /* Card Variables */
  --card-radius: 16px;
  --card-shadow: 10px 10px 30px var(--shadow-light), 
                -10px -10px 30px var(--bg-white);
  --card-pressed: inset 6px 6px 10px var(--shadow-light), 
                 inset -6px -6px 10px var(--bg-white);
  
  /* Button Variables */
  --btn-radius: 8px;
  --transition-speed: 0.3s;
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--card-radius) / 2);
  object-fit: cover;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.container {
  position: relative;
  z-index: 2;
}

/* ===== UTILITY CLASSES ===== */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: 1;
}

.text-white {
  color: var(--bg-white);
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-tertiary {
  background-color: var(--tertiary-color);
}

.bg-off-white {
  background-color: var(--bg-off-white);
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 500;
  border-radius: var(--btn-radius);
  transition: all var(--transition-speed);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 5px 5px 15px var(--shadow-light),
             -5px -5px 15px var(--bg-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 20px var(--shadow-medium),
             -7px -7px 20px var(--bg-white);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--card-pressed);
}

.btn:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover:after {
  width: 300%;
  height: 300%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-white);
}

.btn-primary:hover {
  color: var(--bg-white);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--bg-white);
}

.btn-secondary:hover {
  color: var(--bg-white);
}

.btn-outline-primary {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-light);
  color: var(--bg-white);
  border-color: var(--primary-light);
}

.btn-outline-light {
  background: transparent;
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
}

.btn-block {
  display: block;
  width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-white);
  padding: 15px 0;
  box-shadow: 0 2px 15px var(--shadow-light);
  transition: all var(--transition-speed);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px var(--shadow-medium);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: color var(--transition-speed);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.navbar-nav {
  margin-left: auto;
}

.nav-link {
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: color var(--transition-speed);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-speed);
}

.nav-link:hover:after {
  width: 80%;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
  border-radius: var(--btn-radius);
  box-shadow: 3px 3px 8px var(--shadow-light),
              -3px -3px 8px var(--bg-white);
  transition: box-shadow var(--transition-speed);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: var(--card-pressed);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--bg-white);
}

.hero-content h1 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 0.25rem;
  font-family: 'Space Grotesk', sans-serif;
}

.stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== VISION SECTION ===== */
.vision-section {
  background-color: var(--bg-white);
}

.vision-image {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed);
}

.vision-image:hover {
  transform: translateY(-10px);
}

.vision-content {
  padding: 20px 0 20px 20px;
}

.vision-content h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.progress-container {
  margin-top: 30px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--text-medium);
  font-weight: 500;
}

.progress {
  height: 8px;
  background-color: var(--bg-off-white);
  border-radius: 4px;
  box-shadow: inset 2px 2px 5px var(--shadow-light);
  margin-bottom: 20px;
}

.progress-bar {
  border-radius: 4px;
  background: var(--gradient-primary);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background-color: var(--bg-off-white);
}

.pricing-card {
  background-color: var(--bg-white);
  border-radius: var(--card-radius);
  border: none;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 15px 15px 40px var(--shadow-medium),
              -15px -15px 40px var(--bg-white);
}

.pricing-card.featured {
  transform: scale(1.05);
  border-top: 4px solid var(--secondary-color);
  position: relative;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: var(--secondary-color);
  color: var(--bg-white);
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px 0 0 4px;
  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pricing-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.features-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-off-white);
  color: var(--text-medium);
  position: relative;
  padding-left: 25px;
}

.features-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tertiary-color);
  font-weight: bold;
}

.features-list li:last-child {
  border-bottom: none;
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories-section {
  background-color: var(--bg-white);
}

.testimonial-card {
  border: none;
  border-radius: var(--card-radius);
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 30px var(--shadow-medium),
              -12px -12px 30px var(--bg-white);
}

.testimonial-card .card-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 5px solid var(--bg-white);
  box-shadow: 0 5px 15px var(--shadow-light);
}

.testimonial-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
  text-align: center;
  color: var(--text-medium);
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  position: absolute;
  font-size: 50px;
  color: var(--primary-light);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 0.8;
}

.testimonial-text:before {
  top: 0;
  left: 0;
}

.testimonial-text:after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  text-align: center;
}

.rating {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 10px;
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
  background-color: var(--bg-off-white);
  position: relative;
  overflow: hidden;
}

.resources-section:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--tertiary-light);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.resource-content {
  padding-right: 30px;
}

.resource-image-container {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed);
}

.resource-image-container:hover {
  transform: translateY(-10px);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: var(--btn-radius) !important;
  overflow: hidden;
  box-shadow: 5px 5px 15px var(--shadow-light),
              -5px -5px 15px var(--bg-white);
}

.accordion-button {
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--bg-white);
  padding: 15px 20px;
  border-radius: var(--btn-radius) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--bg-white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233066BE'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 20px;
  background-color: var(--bg-white);
}

.accordion-body ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.accordion-body li {
  margin-bottom: 10px;
}

.accordion-body a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
  position: relative;
  padding-left: 5px;
}

.accordion-body a:hover {
  color: var(--primary-dark);
}

.accordion-body a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width var(--transition-speed);
}

.accordion-body a:hover::before {
  width: 100%;
}

/* ===== MEDIA SECTION ===== */
.media-section {
  background-color: var(--bg-white);
}

.media-tabs {
  margin-top: 30px;
}

.nav-tabs {
  border-bottom: none;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.nav-tabs .nav-item {
  margin: 0 5px;
}

.nav-tabs .nav-link {
  border: none;
  border-radius: var(--btn-radius);
  padding: 10px 20px;
  font-weight: 600;
  color: var(--text-medium);
  background-color: var(--bg-off-white);
  box-shadow: 5px 5px 10px var(--shadow-light),
              -5px -5px 10px var(--bg-white);
  transition: all var(--transition-speed);
}

.nav-tabs .nav-link:hover {
  transform: translateY(-3px);
}

.nav-tabs .nav-link.active {
  color: var(--bg-white);
  background: var(--gradient-primary);
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.media-item {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 30px;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-item:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 30px var(--shadow-medium),
              -12px -12px 30px var(--bg-white);
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.media-item:hover img {
  transform: scale(1.1);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  margin-bottom: 30px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed);
}

.video-container:hover {
  transform: translateY(-8px);
}

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

/* ===== COMMUNITY SECTION ===== */
.community-section {
  background-color: var(--bg-off-white);
  position: relative;
  overflow: hidden;
}

.community-section:after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-light);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.community-image {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed);
}

.community-image:hover {
  transform: translateY(-10px);
}

.community-content h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.community-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.community-stats .stat-item {
  flex: 1;
  min-width: 120px;
  padding: 15px;
  background-color: var(--bg-white);
  border-radius: var(--btn-radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed);
}

.community-stats .stat-item:hover {
  transform: translateY(-5px);
}

.community-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Space Grotesk', sans-serif;
}

.community-stats .stat-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  text-align: center;
}

.community-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* ===== WORKSHOPS SECTION ===== */
.workshops-section {
  background-color: var(--bg-white);
}

.workshop-card {
  border: none;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: 15px 15px 40px var(--shadow-medium),
              -15px -15px 40px var(--bg-white);
}

.workshop-card .card-image {
  width: 100%;
  height: 200px;
  position: relative;
}

.date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: var(--bg-white);
  border-radius: var(--btn-radius);
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.date-badge .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}

.date-badge .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}

.workshop-details {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.workshop-details .detail {
  display: flex;
  align-items: center;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.workshop-details .detail i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* ===== WEBINARS SECTION ===== */
.webinars-section {
  background-color: var(--bg-off-white);
  position: relative;
  overflow: hidden;
}

.webinars-section:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--secondary-light);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.webinar-list {
  padding-right: 20px;
}

.webinar-item {
  display: flex;
  background-color: var(--bg-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.webinar-item:hover {
  transform: translateX(5px);
  box-shadow: 10px 10px 25px var(--shadow-medium),
              -10px -10px 25px var(--bg-white);
}

.webinar-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--gradient-primary);
  color: var(--bg-white);
  min-width: 80px;
  padding: 20px 15px;
}

.webinar-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}

.webinar-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 5px;
}

.webinar-content {
  padding: 20px;
  flex-grow: 1;
}

.webinar-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.webinar-details {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}

.webinar-details .detail {
  display: flex;
  align-items: center;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.webinar-details .detail i {
  margin-right: 8px;
  color: var(--primary-color);
}

.webinar-highlight {
  background-color: var(--bg-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.webinar-highlight img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.webinar-highlight-content {
  padding: 30px;
}

.webinar-highlight-content h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--bg-white);
}

.contact-info {
  padding-right: 30px;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-off-white);
  color: var(--primary-color);
  font-size: 1.5rem;
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 5px 5px 15px var(--shadow-light),
              -5px -5px 15px var(--bg-white);
  transition: transform var(--transition-speed);
}

.contact-item:hover i {
  transform: scale(1.1);
  color: var(--primary-dark);
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-form-container {
  background-color: var(--bg-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 40px;
}

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

.form-control {
  border-radius: var(--btn-radius);
  padding: 12px 15px;
  border: 1px solid var(--bg-off-white);
  background-color: var(--bg-white);
  box-shadow: inset 3px 3px 8px var(--shadow-light),
              inset -3px -3px 8px var(--bg-white);
  transition: all var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(79, 133, 228, 0.1),
              inset 3px 3px 8px var(--shadow-light),
              inset -3px -3px 8px var(--bg-white);
}

textarea.form-control {
  resize: none;
}

.form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.15em;
  box-shadow: 3px 3px 5px var(--shadow-light),
              -3px -3px 5px var(--bg-white);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(79, 133, 228, 0.1),
              3px 3px 5px var(--shadow-light),
              -3px -3px 5px var(--bg-white);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--text-dark);
  color: var(--bg-off-white);
  padding: 80px 0 20px;
  position: relative;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gradient-primary);
}

.footer-brand h3 {
  color: var(--bg-white);
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-speed);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-speed);
}

.social-links a:hover {
  color: var(--bg-white);
  border-bottom-color: var(--primary-light);
}

.footer-links h4 {
  color: var(--bg-white);
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 1.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-speed), transform var(--transition-speed);
  display: inline-block;
  position: relative;
}

.footer-links ul li a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-links ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-light);
  transition: width var(--transition-speed);
}

.footer-links ul li a:hover::after {
  width: 100%;
}

.newsletter {
  margin-top: 30px;
}

.newsletter h4 {
  margin-bottom: 15px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.newsletter .input-group {
  position: relative;
}

.newsletter .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  padding-right: 50px;
}

.newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.newsletter .btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 5;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  padding: 50px 20px;
}

.success-container {
  max-width: 600px;
  width: 100%;
  background-color: var(--bg-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 50px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--tertiary-light);
  color: var(--tertiary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto 30px;
}

.success-container h1 {
  color: var(--tertiary-dark);
  margin-bottom: 20px;
}

.success-container p {
  margin-bottom: 30px;
  color: var(--text-medium);
}

/* ===== PRIVACY AND TERMS PAGES ===== */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.privacy-content,
.terms-content {
  background-color: var(--bg-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 50px;
  margin-bottom: 40px;
}

.privacy-content h1,
.terms-content h1 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.privacy-content h2,
.terms-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.privacy-content h3,
.terms-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-content p,
.terms-content p {
  margin-bottom: 20px;
  color: var(--text-medium);
}

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

.privacy-content ul li,
.terms-content ul li {
  margin-bottom: 10px;
  color: var(--text-medium);
}

/* ===== ABOUT PAGE ===== */
.about-page {
  padding-top: 100px;
}

.about-hero {
  position: relative;
  padding: 80px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: var(--bg-white);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-content h1 {
  color: var(--bg-white);
  margin-bottom: 20px;
}

.team-section,
.values-section,
.mission-section,
.history-section {
  padding: 80px 0;
}

.team-section,
.history-section {
  background-color: var(--bg-off-white);
}

.values-section,
.mission-section {
  background-color: var(--bg-white);
}

.team-member {
  background-color: var(--bg-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 30px;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 30px var(--shadow-medium),
              -12px -12px 30px var(--bg-white);
}

.team-member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.team-member:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 25px;
  text-align: center;
}

.team-member-info h3 {
  margin-bottom: 5px;
}

.team-member-info .position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.team-social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-off-white);
  color: var(--primary-color);
  border-radius: 50%;
  transition: all var(--transition-speed);
  text-decoration: none;
}

.team-social-links a:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.value-item {
  background-color: var(--bg-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 30px var(--shadow-medium),
              -12px -12px 30px var(--bg-white);
}

.value-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-off-white);
  color: var(--primary-color);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 35px;
  transition: all var(--transition-speed);
}

.value-item:hover .value-icon {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: rotateY(180deg);
}

.value-item h3 {
  margin-bottom: 15px;
  text-align: center;
}

.mission-content {
  padding: 30px;
  background-color: var(--bg-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  height: 100%;
}

.mission-content h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.history-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
}

.history-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  position: relative;
  width: calc(50% - 30px);
  padding: 30px;
  background-color: var(--bg-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.timeline-content:hover {
  transform: scale(1.03);
  box-shadow: 12px 12px 30px var(--shadow-medium),
              -12px -12px 30px var(--bg-white);
}

.timeline-date {
  position: absolute;
  top: 20px;
  width: 120px;
  padding: 8px 15px;
  background: var(--gradient-primary);
  color: var(--bg-white);
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 5px 10px var(--shadow-light);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-date {
  left: -140px;
}

.timeline-item:nth-child(even) .timeline-date {
  right: -140px;
}

.timeline-item:after {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd):after {
  left: calc(50% - 10px);
}

.timeline-item:nth-child(even):after {
  right: calc(50% - 10px);
}

.timeline-content h3 {
  margin-top: 15px;
  margin-bottom: 15px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .timeline-date {
    width: 100px;
    font-size: 0.85rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-date {
    left: -120px;
  }
  
  .timeline-item:nth-child(even) .timeline-date {
    right: -120px;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .navbar-collapse {
    background-color: var(--bg-white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 20px;
    margin-top: 15px;
  }
  
  .nav-link {
    padding: 0.75rem 1rem;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .vision-content {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .webinar-highlight {
    margin-top: 40px;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .history-timeline:before {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .timeline-date {
    left: 0 !important;
    right: auto !important;
    top: -40px;
  }
  
  .timeline-item:after {
    left: 30px !important;
    right: auto !important;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .section-title {
    margin-bottom: 35px;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .webinar-item {
    flex-direction: column;
  }
  
  .webinar-date {
    width: 100%;
    padding: 10px;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .community-cta {
    flex-direction: column;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .footer {
    padding-top: 60px;
  }
  
  .footer-links {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .privacy-content,
  .terms-content,
  .success-container {
    padding: 30px 20px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease forwards;
}

.animate-float {
  animation: floatAnimation 5s ease-in-out infinite;
}

/* Icon placeholders */
.icon-location:before {
  content: '📍';
}
.icon-phone:before {
  content: '📞';
}
.icon-email:before {
  content: '📧';
}
.icon-clock:before {
  content: '🕒';
}
.icon-time:before {
  content: '🕒';
}
.icon-user:before {
  content: '👤';
}
.icon-ticket:before {
  content: '🎟️';
}

html,body{
  overflow-x: hidden;
}