:root {
  --primary-color: #8ed4ed;
  --primary-dark: #5abed0;
  --secondary-color: #2c3e50;
  --light-color: #ecf0f1;
  --transition: all 0.4s ease;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  background-color: #fafafa;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header .navbar {
  padding: 15px 0;
}

.logo h2 {
  color: var(--secondary-color);
  font-weight: 700;
  margin: 0;
  position: relative;
  display: inline-block;
}

.logo h2:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.logo h2:hover:after {
  width: 100%;
}

/* Banner Section */
#banner {
  position: relative;
  overflow: hidden;
}

#banner img {
  width: 100%;
  height: auto;

  object-fit: cover;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
#about {
  padding: 60px 0;
  background-color: #fff;
}

#about h2 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
}

#about h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: var(--primary-color);
}

.about-text {
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.about-text p {
  margin-bottom: 15px;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.about-img img:hover {
  transform: scale(1.02);
}

/* Speaker Section */
#testimonial {
  padding: 60px 0;
  background-color: #f8f9fa;
}

#testimonial h2 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 40px;
  display: inline-block;
  position: relative;
}

#testimonial h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Updated Speaker Card Styles */
.speakerInfo {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.speakerInfo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.speaker-img-container {
  width: 100%;
  padding-top: 100%; /* Creates a square container */
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
  border-radius: 15px 15px 0 0;
}

.speaker-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.speakerInfo:hover .speaker-img {
  transform: scale(1.05);
}

.speaker-content {
  padding: 20px;
  background-color: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.speaker-content h3 {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.speaker-content p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Lesson Section */
#lesson {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

#lesson::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at top right,
      rgba(142, 212, 237, 0.2),
      transparent 50%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(44, 62, 80, 0.1),
      transparent 50%
    );
  z-index: 1;
}

.section-header {
  position: relative;
  z-index: 2;
}

.heading-line {
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.lesson-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.lesson-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 3;
}

.offline-lesson::before {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-dark)
  );
}

.online-lesson::before {
  background: linear-gradient(to right, var(--secondary-color), #4a6b8a);
}

.lesson-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.lesson-icon {
  display: flex;
  justify-content: center;
  margin-top: -30px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 4;
}

.offline-lesson .icon-circle {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
}

.online-lesson .icon-circle {
  background: linear-gradient(135deg, var(--secondary-color), #4a6b8a);
}

.lesson-icon i {
  font-size: 26px;
  color: white;
}

.lesson-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.lesson-title {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 10px;
  text-align: center;
}

.lesson-badge {
  text-align: center;
  margin-bottom: 20px;
}

.lesson-badge span {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.offline-lesson .lesson-badge span {
  background-color: rgba(142, 212, 237, 0.2);
  color: var(--primary-dark);
}

.online-lesson .lesson-badge span {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary-color);
}

.lesson-info {
  margin-bottom: 20px;
}

.info-item {
  margin-bottom: 15px;
}

.info-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: #555;
}

.info-item h4 i {
  margin-right: 8px;
  color: var(--primary-color);
}

.online-lesson .info-item h4 i {
  color: var(--secondary-color);
}

.info-item p {
  margin-bottom: 0;
}

.lesson-list {

  padding-left: 0;
  margin-bottom: 0;
}

.lesson-list li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 5px;
}

.day-badge {
  display: inline-block;
  background-color: #f1f1f1;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-right: 8px;
  font-weight: 500;
}

.offline-lesson .day-badge {
  background-color: rgba(142, 212, 237, 0.2);
  color: var(--primary-dark);
}

.online-lesson .day-badge {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary-color);
}

.lesson-description {
  margin-bottom: 20px;
  flex-grow: 1;
}

.lesson-description p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.lesson-features {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  margin-right: 5px;
  margin-bottom: 10px;
  flex: 1 0 30%;
}

.feature i {
  margin-right: 5px;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.online-lesson .feature i {
  color: var(--secondary-color);
}

.feature span {
  font-size: 0.85rem;
  color: #555;
}

.apply-btn {
  margin-top: auto;
  text-align: center;
}

.btn-apply {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-dark)
  );
  border: none;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(90, 190, 208, 0.2);
}

.online-lesson .btn-apply {
  background: linear-gradient(to right, var(--secondary-color), #4a6b8a);
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.btn-apply:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(90, 190, 208, 0.3);
  color: white;
}

.online-lesson .btn-apply:hover {
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.btn-apply i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-apply:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .lesson-card {
    margin-bottom: 40px;
  }

  .feature {
    flex: 1 0 40%;
  }
}

@media (max-width: 767px) {
  .feature {
    flex: 1 0 100%;
  }
}

/* Teacher Section */
.teacher-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.teacher-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.teacher-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.teacher-img {
  height: 250px;
  overflow: hidden;
}

.teacher-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.teacher-card:hover .teacher-img img {
  transform: scale(1.1);
}

.teacher-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.7)
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.teacher-card:hover .teacher-overlay {
  opacity: 1;
}

.teacher-social {
  display: flex;
  gap: 15px;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.teacher-card:hover .teacher-social {
  transform: translateY(0);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.experience-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.teacher-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.teacher-info h3 {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

.teacher-info h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.teacher-card:hover .teacher-info h3:after {
  width: 100%;
}

.teacher-info .position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.teacher-info .position i {
  margin-right: 8px;
  color: #666;
}

.teacher-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}

.expertise-tag {
  background-color: rgba(142, 212, 237, 0.2);
  color: var(--primary-dark);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.teacher-bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.schedule-btn {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-dark)
  );
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule-btn:hover {
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--primary-color)
  );
  box-shadow: 0 5px 15px rgba(90, 190, 208, 0.3);
  color: white;
  transform: translateY(-3px);
}

/* Animations */
.fade-up {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zoom-in {
  animation: zoomIn 0.6s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 767px) {
  .speakerInfo {
    margin-bottom: 20px;
  }

  .offlineLesson,
  .onlineLesson {
    margin-bottom: 20px;
  }

  .teacher-card {
    margin-bottom: 30px;
  }
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modal-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  border: none;
  padding: 20px 25px;
  position: relative;
  overflow: hidden;
}

.modal-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 0;
}

.modal-title {
  font-weight: 700;
  position: relative;
  z-index: 1;
  padding-left: 10px;
  border-left: 4px solid white;
}

.modal-header .btn-close {
  background-color: white;
  opacity: 0.8;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.modal-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-body {
  padding: 25px;
}

.schedule-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.schedule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.schedule-card.online {
  border-left: 4px solid var(--secondary-color);
}

.schedule-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: space-between;
}

.schedule-title {
  display: flex;
  align-items: center;
}

.schedule-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 4px 10px rgba(90, 190, 208, 0.2);
}

.schedule-card.online .schedule-icon {
  background: linear-gradient(135deg, var(--secondary-color), #4a6b8a);
  box-shadow: 0 4px 10px rgba(44, 62, 80, 0.2);
}

.schedule-day {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin: 0;
}

.schedule-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  background-color: rgba(142, 212, 237, 0.2);
  color: var(--primary-dark);
}

.schedule-card.online .schedule-type {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary-color);
}

.class-code {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: block;
}

.schedule-details {
  display: flex;
  flex-wrap: wrap;
  margin-left: 48px;
}

.detail-item {
  margin-right: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.detail-item i {
  color: var(--primary-color);
  margin-right: 5px;
  font-size: 0.9rem;
}

.schedule-card.online .detail-item i {
  color: var(--secondary-color);
}

.detail-item span {
  font-size: 0.9rem;
  color: #555;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-top: 10px;
  margin-left: 48px;
}

.in-person {
  background-color: rgba(142, 212, 237, 0.15);
  color: var(--primary-dark);
}

.online-class {
  background-color: rgba(44, 62, 80, 0.1);
  color: var(--secondary-color);
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 25px;
}

.btn-primary {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-dark)
  );
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(90, 190, 208, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(90, 190, 208, 0.3);
}

.btn-primary i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-outline-secondary {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline-secondary:hover {
  background-color: var(--secondary-color);
  color: white;
}

@media (max-width: 576px) {
  .schedule-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-type {
    margin-top: 10px;
    margin-left: 48px;
  }

  .detail-item {
    margin-right: 15px;
  }
}

/* Footer Styles */
.footer-section {
  background: linear-gradient(135deg, var(--secondary-color), #1a2530);
  color: white;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.footer-content {
  position: relative;
  z-index: 10;
}

.logo h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.logo-underline {
  height: 3px;
  width: 50px;
  background: var(--primary-color);
  margin-top: 8px;
  transition: var(--transition);
}

.logo:hover .logo-underline {
  width: 100%;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 15px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.footer-title {
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 12px;
  position: relative;
}

.title-underline {
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 20px;
  transition: var(--transition);
}

.footer-links:hover .title-underline,
.footer-contact:hover .title-underline {
  width: 60px;
}

.links-list {
  list-style: none;
  padding-left: 0;
}

.links-list li {
  margin-bottom: 10px;
}

.links-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.links-list li a i {
  font-size: 0.7rem;
  margin-right: 8px;
  color: var(--primary-color);
  transition: var(--transition);
}

.links-list li a:hover {
  color: white;
  transform: translateX(5px);
}

.links-list li a:hover i {
  transform: translateX(3px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(90, 190, 208, 0.2);
  transition: var(--transition);
}

.contact-item:hover .icon-box {
  transform: scale(1.1);
}

.contact-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding-top: 8px;
}

.newsletter-title {
  color: white;
  font-size: 1rem;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding-right: 50px;
  border-radius: 30px;
  height: 46px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.newsletter-btn {
  position: absolute;
  right: 3px;
  top: 3px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.newsletter-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  color: white;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 5;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  list-style: none;
  padding-left: 0;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links li a:hover {
  color: var(--primary-color);
}

/* Floating Shapes Animation */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shape1,
.shape2,
.shape3,
.shape4 {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  opacity: 0.1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.shape1 {
  width: 200px;
  height: 200px;
  left: -100px;
  top: 10%;
  animation: float1 15s infinite;
}

.shape2 {
  width: 150px;
  height: 150px;
  right: -50px;
  top: 30%;
  animation: float2 20s infinite;
}

.shape3 {
  width: 100px;
  height: 100px;
  left: 30%;
  bottom: 20%;
  animation: float3 25s infinite;
}

.shape4 {
  width: 80px;
  height: 80px;
  right: 20%;
  bottom: 10%;
  animation: float4 22s infinite;
}

@keyframes float1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(100px, 50px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes float2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-60px, 90px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes float3 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(70px, -30px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes float4 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-40px, -60px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .footer-about,
  .footer-links,
  .footer-contact {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

.whats-float {
  position: fixed;
  transform: translate(108px, 0px);
  top: 25%;
  right: 0;
  width: 150px;
  overflow: hidden;
  background-color: #25d366;
  color: #fff;
  border-radius: 10px 0 0 10px;
  z-index: 9999;
  transition: all 0.5s ease-in-out;
  vertical-align: middle;
  font-family: sans-serif;
}

.whats-float a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  position: relative;
  padding-left: 45px;
}

.whats-float a span {
  color: white;
  font-size: 15px;
  padding-top: 8px;
  padding-bottom: 10px;
  line-height: 16px;
  font-weight: bold;
}

.whats-float i {
  font-size: 30px;
  color: white;
  line-height: 30px;
  padding: 10px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  text-align: center;
  position: absolute;
  left: 0;
}

.whats-float:hover {
  transform: translate(0px, 0px);
}

.whats-float:hover i {
  transform: rotate(360deg);
}

.btn-ticket {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #000066;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px #000066;
}

.btn-ticket i {
  font-size: 18px;
}

.btn-ticket:hover {
  background-color: #000066;
  box-shadow: 0 6px 16px #000066(255, 77, 79, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .btn-ticket {
    width: 30%;
    display: flex;
    justify-content: center;
    font-size: 15px;
    padding: 14px;
  }
}