.sessions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.sessions-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}

.fire-icon {
  font-size: 24px;
}

.sessions-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.session-card {
  background: white;
  border-radius: 3px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.session-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.session-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.calendar-icon {
  font-size: 18px;
  color: #e53e3e;
}

.date-text {
  font-weight: 600;
  font-size: 16px;
  color: #2d3748;
}

.session-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.location-icon {
  font-size: 16px;
  color: #e53e3e;
}

.location-text {
  color: #4a5568;
  font-size: 14px;
}

.early-bird-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffe4c4;
  padding: 8px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
  border: 1px solid #ffe4c4;
}

.lightning-icon {
  font-size: 16px;
}

.early-bird-text {
  font-size: 12px;
  font-weight: 600;
  color: #744210;
  line-height: 1.3;
}

.seats-info {
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #e53e3e 0%, #f56565 100%);
  transition: width 0.3s ease;
}

.seats-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.seats-left {
  font-weight: 600;
  font-size: 14px;
  color: #2d3748;
}

.seats-label {
  font-size: 12px;
  color: #718096;
}

.action-button {
  width: 100%;
}

.btn-session {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reserve {
  background: var(--primary-bg-color);
  color: white;
}

.btn-reserve:hover {
  background: var(--primary-bg-hover);
  transform: translateY(-1px);
}

.btn-early-bird {
  background: linear-gradient(135deg, #e53e3e 0%, #f56565 100%);
  color: white;
}

.btn-early-bird:hover {
  background: linear-gradient(135deg, #c53030 0%, #e53e3e 100%);
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sessions-grid {
    grid-template-columns: 1fr;
  }

  .sessions-container {
    padding: 15px;
  }

  .session-card {
    padding: 20px;
  }
}

.hero-section {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 3px;
  padding: 3rem 2rem;
  margin: 2rem auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.hero-title .orange-text {
  color: #ff8c00;
}

.hero-title .white-text {
  color: #ffffff;
}

.hero-subtitle {
  color: #e0e0e0;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-pill {
  background: rgba(139, 90, 43, 0.8);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  text-align: center;
  min-width: 180px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 140, 0, 0.3);
  transition: all 0.3s ease;
}

.stat-pill:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
  border-color: rgba(255, 140, 0, 0.6);
}

.stat-number {
  color: #ff8c00;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

.promo-banner {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
  border-radius: 3px;
  padding: 1.25rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
  }
  50% {
    box-shadow: 0 5px 30px rgba(255, 140, 0, 0.6);
  }
}

.promo-text {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.promo-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.sessions-section {
  margin: 3rem auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.session-card {
  background: white;
  border-radius: 3px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.session-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.session-card.border-orange {
  border: 3px solid #ff8c00;
}

.session-card.border-yellow {
  border: 3px solid #ffd700;
}

.session-card.border-green {
  border: 3px solid #10b981;
}

.badge-ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  background: #ff8c00;
  color: white;
  padding: 0.4rem 3rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.badge-ribbon.yellow {
  background: #ffd700;
  color: #2d2d2d;
}

.badge-ribbon.green {
  background: #10b981;
}

.session-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

.calendar-icon {
  font-size: 2rem;
  color: #ff8c00;
}

.session-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #666;
  font-size: 1rem;
}

.location-icon {
  color: #ff8c00;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-pill {
    padding: 1rem 2rem;
    min-width: 140px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .promo-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .session-date {
    font-size: 1.4rem;
  }
}

/* FOOTER CONSULTATION */
.consultation-container {
  background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-top: 4px solid #ff8c42;
  position: relative;
  overflow: hidden;
}

.consultation-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42, #ffb142, #ff8c42);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.consultation-container .header {
  text-align: center;
  margin-bottom: 30px;
}

.consultation-container .header h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.icon-shield {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.5));
}

.consultation-container .subtitle {
  color: #b8b8b8;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.consultation-container .buttons-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.consultation-container .btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.consultation-container .btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
}

.consultation-container .btn-whatsapp:hover {
  background: linear-gradient(135deg, #20ba5a 0%, #1a9d4d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.consultation-container .btn-call {
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

.consultation-container .btn-call:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.consultation-container .btn-email {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.consultation-container .btn-email:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.consultation-container .info-section {
  text-align: center;
  border-top: 1px solid #404040;
  padding-top: 25px;
}

.consultation-container .office-hours {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.consultation-container .office-hours strong {
  color: #ff8c42;
}

.consultation-container .features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #a0a0a0;
  font-size: 14px;
}

.consultation-container .features::before {
  content: "✅";
  margin-right: 4px;
}

.consultation-container .features span {
  display: inline-block;
}

.consultation-container .features span:not(:last-child)::after {
  content: "•";
  margin: 0 8px;
  color: #666;
}

@media (max-width: 768px) {
  .consultation-container {
    padding: 35px 25px;
  }

  .consultation-container .header h2 {
    font-size: 24px;
  }

  .consultation-container .subtitle {
    font-size: 16px;
  }

  .consultation-container .buttons-container {
    flex-direction: column;
    align-items: stretch;
  }

  .consultation-container .btn {
    justify-content: center;
  }
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 18px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: left;
}

.cta-button i {
  font-size: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 202, 202, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-content {
  flex: 1;
}

.cta-button h6 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
}

.cta-button p {
  margin: 0;
  font-size: 12px;
  color: #fff;
  opacity: 0.9;
}

.cta-bordered {
  background-color: #2c3e50;
  border: 2px solid #f79768;
}

.cta-green {
  background-color: #25d366;
  border: 2px solid #25d366;
}

.cta-secondary {
  background-color: #ffa22b;
  border: 2px solid #ffa22b;
}

.cta-bordered:hover {
  background-color: #34495e;
  border-color: #ff9560;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 131, 69, 0.3);
}

.cta-primary {
  background-color: #fe8345;
  border: 2px solid #fe8345;
}

.cta-primary:hover {
  background-color: #ff9560;
  color: #b66b45;
  border-color: #ff9560;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 131, 69, 0.4);
}

.cta-green:hover {
  background-color: #25d366;
  color: #1eaa52;
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 254, 69, 0.4);
}

.cta-secondary:hover {
  background-color: #ffa22b;
  color: #c47c1f;
  border-color: #ffa22b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 217, 146, 0.4);
}

@media (max-width: 991px) {
  .col-xl-4.col-lg-4.col-md-12 {
    margin-bottom: 15px;
  }

  .col-xl-4.col-lg-4.col-md-12:last-child {
    margin-bottom: 0;
  }
}

/* timer css */
/* Countdown Timer - Orange Style */
.countdown-container {
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
  margin-top: 1rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.countdown-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: 20px;
  pointer-events: none;
}

.countdown-label {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  background: rgba(139, 69, 19, 0.6);
  padding: 1.2rem 0.8rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.timer-box {
  background: white;
  border-radius: 10px;
  padding: 0.8rem 0.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease;
}

.timer-box:hover {
  transform: translateY(-5px);
}

.timer-box::before {
  display: none;
}

.timer-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ff6b35;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
  animation: countdown-flip 1s ease-in-out;
}

@keyframes countdown-flip {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  50% {
    transform: rotateX(90deg);
    opacity: 0.5;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.timer-label {
  font-size: 0.65rem;
  color: #8b6914;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.timer-colon {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .countdown-container {
    padding: 1.2rem 1rem;
  }
  
  .timer-grid {
    gap: 0.6rem;
    padding: 1rem 0.6rem;
  }
  
  .timer-box {
    padding: 0.7rem 0.4rem;
  }
  
  .timer-number {
    font-size: 1.2rem;
  }
  
  .timer-label {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .timer-number {
    font-size: 1rem;
  }
  
  .timer-label {
    font-size: 0.55rem;
  }
  
  .timer-grid {
    gap: 0.4rem;
  }
}