/* Main Styles for LLGHTER Driving Academy */

/* Variables */
:root {
  --color-primary: #3F51B5;    /* Deep indigo */
  --color-secondary: #FF4081;  /* Pink accent */
  --color-accent: #8BC34A;     /* Light green */
  --color-dark: #212121;       /* Near black for text */
  --color-light: #F9F9F9;      /* Off-white background */
  --color-white: #FFFFFF;
  --color-gray: #E0E0E0;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --border-radius: 8px;
  --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  line-height: 1.6;
  background-color: var(--color-light);
  overflow-x: hidden;
}

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

a:hover {
  color: var(--color-secondary);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: var(--color-dark);
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.section-title span {
  color: var(--color-primary);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover::before {
  left: 100%;
  transition: 0.7s;
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-logo img {
  max-height: 50px;
  margin-right: 10px;
  transition: var(--transition);
}

.nav-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  position: relative;
  letter-spacing: 1px;
}

.nav-logo span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

.nav-logo:hover span::after {
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  color: var(--color-dark);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

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

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

.nav-link.active::after {
  width: 100%;
  background-color: var(--color-primary);
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-dark);
}

.phone-number {
  margin-left: 30px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.phone-number i {
  margin-right: 6px;
  background-color: var(--color-primary);
  color: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.phone-number:hover i {
  transform: rotate(15deg);
  background-color: var(--color-secondary);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-light);
  margin-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(63, 81, 181, 0.05);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-right: 20px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 800;
}

.hero-title span {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(255, 64, 129, 0.3);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #666;
  animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

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

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.hero-badge {
  position: absolute;
  top: -30px;
  right: -30px;
  background-color: var(--color-secondary);
  color: white;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  font-weight: 700;
  transform: rotate(15deg);
  animation: pulse 2s infinite;
  z-index: 2;
  font-size: 1rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 64, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 64, 129, 0);
  }
}

.hero-badge span {
  font-size: 1.5rem;
  margin-top: 5px;
}

/* About Section */
.about {
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(63, 81, 181, 0.03) 0%, transparent 80%);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 80%;
  height: 80%;
  border: 4px solid var(--color-secondary);
  border-radius: var(--border-radius);
  z-index: -1;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-image img:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.about-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-secondary);
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  padding: 25px 15px;
  background-color: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-bottom: 3px solid var(--color-secondary);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

/* Services Section */
.services {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(63, 81, 181, 0.05);
  border-radius: 50% 0 0 0;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  z-index: 1;
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(63, 81, 181, 0.05), transparent);
  transition: var(--transition);
  z-index: -1;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.service:hover::before {
  height: 100%;
}

.service:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid var(--color-secondary);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(63, 81, 181, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}

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

.service h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.service h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

.service:hover h3::after {
  width: 60px;
}

.service p {
  color: #666;
  margin-bottom: 20px;
}

/* Pricing Section - New */
.pricing {
  background-color: var(--color-white);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="3" cy="3" r="3" fill="%233F51B5" opacity="0.1"/></svg>');
  opacity: 0.5;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  position: relative;
}

.pricing-plan {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.pricing-plan:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-header {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 25px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-plan:hover .pricing-header {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.pricing-period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.pricing-features {
  padding: 25px;
  list-style: none;
}

.pricing-feature {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray);
  display: flex;
  align-items: center;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature i {
  color: var(--color-accent);
  margin-right: 10px;
}

.pricing-feature.unavailable {
  color: #999;
  text-decoration: line-through;
}

.pricing-feature.unavailable i {
  color: #ccc;
}

.pricing-footer {
  padding: 0 25px 25px;
  text-align: center;
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: -35px;
  background-color: var(--color-accent);
  color: white;
  padding: 8px 40px;
  font-size: 0.85rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 2;
}

/* FAQ Section - New */
.faq {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(63, 81, 181, 0.05);
  border-radius: 0 0 0 100%;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background-color: var(--color-white);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-hover);
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: rgba(63, 81, 181, 0.05);
}

.accordion-header::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--color-primary);
  transition: var(--transition);
}

.accordion-header.active::after {
  transform: rotate(180deg);
  color: var(--color-secondary);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--color-white);
}

.accordion-content-inner {
  padding: 0 0 20px;
}

.accordion-header.active + .accordion-content {
  max-height: 1000px;
}

/* Timeline Section - New */
.timeline {
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.timeline::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(63, 81, 181, 0.05);
  border-radius: 0 100% 0 0;
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-wrapper {
  position: relative;
  padding-left: 50px;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 19px;
  width: 2px;
  height: 100%;
  background-color: var(--color-primary);
}

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

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

.timeline-dot {
  position: absolute;
  top: 0;
  left: -50px;
  width: 40px;
  height: 40px;
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  z-index: 2;
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.timeline-content {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-hover);
  transform: translateX(5px);
}

.timeline-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.timeline-description {
  font-size: 0.95rem;
  color: #666;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(63, 81, 181, 0.05) 0%, transparent 70%);
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  position: relative;
  padding: 30px 0;
}

.testimonial {
  background-color: var(--color-light);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin: 20px 10px;
  transition: var(--transition);
  position: relative;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.5rem;
  color: rgba(63, 81, 181, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--color-primary);
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-dark);
}

.author-title {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(63, 81, 181, 0.05);
  border-radius: 50% 0 0 0;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--color-primary);
  position: relative;
  padding-bottom: 10px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--color-secondary);
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.contact-detail:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(63, 81, 181, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: var(--transition);
}

.contact-detail:hover .contact-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.contact-form {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-form:hover {
  box-shadow: var(--shadow-hover);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--color-primary);
  position: relative;
  padding-bottom: 10px;
}

.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--color-secondary);
}

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-gray);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

/* Map Section */
.map {
  height: 400px;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background-color: #1E2746;
  color: #fff;
  padding-top: 70px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 40px;
  margin-right: 10px;
}

.footer-logo span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-about p {
  margin-bottom: 20px;
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--color-white);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-secondary);
}

.footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
  transition: var(--transition);
}

.footer-links li::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 2px;
}

.footer-links li:hover {
  padding-left: 20px;
}

.footer-links a {
  color: #bbb;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
  color: #bbb;
}

.footer-contact i {
  color: var(--color-secondary);
  margin-right: 10px;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--color-secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: #161d36;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
  position: relative;
}

/* Blog Section */
.blog {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.blog::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(63, 81, 181, 0.05) 0%, transparent 70%);
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
}

.blog-post {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}

.blog-post:hover .blog-image::before {
  opacity: 1;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-post:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: var(--transition);
}

.blog-post:hover .blog-date {
  background-color: var(--color-primary);
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-post:hover .blog-title {
  color: var(--color-primary);
}

.blog-excerpt {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Single Blog Post */
.single-post {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 30px;
}

.post-header {
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
}

.post-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.post-meta {
  color: #666;
  margin-bottom: 20px;
}

.post-meta span {
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
}

.post-meta i {
  margin-right: 5px;
  color: var(--color-primary);
}

.post-image {
  height: 400px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  padding: 40px;
}

.post-content p {
  margin-bottom: 25px;
  line-height: 1.8;
}

.post-content h2, .post-content h3 {
  margin: 35px 0 20px;
  color: var(--color-primary);
}

.post-content ul, .post-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.post-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.post-content blockquote {
  border-left: 4px solid var(--color-secondary);
  padding: 15px 20px;
  margin: 25px 0;
  background-color: rgba(63, 81, 181, 0.05);
  font-style: italic;
}

/* Comments Section */
.comments {
  margin-top: 50px;
  padding: 40px;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.comments-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.comments-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
}

.comment {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-gray);
}

.comment:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid var(--color-light);
}

.comment-body {
  flex: 1;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}

.comment-author {
  font-weight: 600;
  color: var(--color-dark);
}

.comment-date {
  color: #666;
  font-size: 0.9rem;
}

.comment-text {
  line-height: 1.7;
}

.comment-reply {
  margin-left: 80px;
  background-color: var(--color-light);
  padding: 20px;
  border-radius: var(--border-radius);
}

.comment-form {
  margin-top: 50px;
}

.comment-form-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.comment-form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
}

/* Booking Form */
.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group.inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-dark);
}

.captcha-container {
  margin-bottom: 25px;
  background-color: var(--color-light);
  padding: 20px;
  border-radius: var(--border-radius);
}

/* Admin Dashboard */
.dashboard {
  display: grid;
  grid-template-columns: 250px 1fr;
  height: 100vh;
}

.sidebar {
  background-color: #1E2746;
  color: var(--color-white);
  padding: 25px;
  position: relative;
  overflow-y: auto;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo img {
  max-width: 40px;
  margin-right: 10px;
}

.sidebar-logo span {
  font-size: 1.3rem;
  font-weight: 700;
}

.sidebar-menu {
  margin-top: 30px;
}

.sidebar-item {
  margin-bottom: 10px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  color: #bbb;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.sidebar-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transform: translateX(5px);
}

.sidebar-link.active {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.sidebar-link i {
  margin-right: 10px;
}

.dashboard-content {
  background-color: var(--color-light);
  padding: 25px;
  overflow-y: auto;
}

.dashboard-header {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.dashboard-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-left: 4px solid var(--color-primary);
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.dashboard-card:nth-child(2) {
  border-left-color: var(--color-secondary);
}

.dashboard-card:nth-child(3) {
  border-left-color: var(--color-accent);
}

.dashboard-card:nth-child(4) {
  border-left-color: #FFC107;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(63, 81, 181, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: var(--transition);
}

.dashboard-card:hover .card-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.dashboard-card:nth-child(2) .card-icon {
  color: var(--color-secondary);
  background-color: rgba(255, 64, 129, 0.1);
}

.dashboard-card:nth-child(2):hover .card-icon {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.dashboard-card:nth-child(3) .card-icon {
  color: var(--color-accent);
  background-color: rgba(139, 195, 74, 0.1);
}

.dashboard-card:nth-child(3):hover .card-icon {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.dashboard-card:nth-child(4) .card-icon {
  color: #FFC107;
  background-color: rgba(255, 193, 7, 0.1);
}

.dashboard-card:nth-child(4):hover .card-icon {
  background-color: #FFC107;
  color: var(--color-white);
}

.card-content {
  flex: 1;
}

.card-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
}

.card-text {
  color: #666;
  font-size: 0.9rem;
}

.dashboard-table {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
}

.dashboard-table h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.dashboard-table h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-secondary);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th, .table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray);
}

.table th {
  background-color: var(--color-light);
  font-weight: 600;
  color: var(--color-dark);
}

.table tr {
  transition: var(--transition);
}

.table tr:hover {
  background-color: rgba(63, 81, 181, 0.05);
}

.status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-pending {
  background-color: #FEF3C7;
  color: #D97706;
}

.status-confirmed {
  background-color: #D1FAE5;
  color: #059669;
}

.status-cancelled {
  background-color: #FEE2E2;
  color: #DC2626;
}

.action-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light);
  color: var(--color-dark);
  margin-right: 8px;
  transition: var(--transition);
}

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

.action-btn:nth-child(2):hover {
  background-color: var(--color-secondary);
}

.action-btn:nth-child(3):hover {
  background-color: #DC2626;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 20px;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.thank-you-icon::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.thank-you h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Terms & Privacy Pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}

.legal-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--color-primary);
}

.legal-content {
  background-color: var(--color-white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.legal-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-secondary);
}

.legal-section p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.legal-section ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 20px;
}

.legal-section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.legal-section ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--color-accent);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Floating Booking Button - New */
.floating-book {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.floating-book .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 0;
  overflow: hidden;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-book .btn:hover {
  width: 180px;
  border-radius: 30px;
}

.floating-book .btn span {
  display: none;
  margin-left: 8px;
  white-space: nowrap;
}

.floating-book .btn:hover span {
  display: inline-block;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-out;
}

.fade-in-up {
  animation: fadeInUp 1s ease-out;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 1s ease-out;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-container,
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
  }

  .hero {
    height: auto;
    padding: 100px 0 50px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 80px);
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 0 0 20px 0;
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .phone-number {
    display: none;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .timeline-wrapper {
    padding-left: 30px;
  }
  
  .timeline-dot {
    left: -30px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .form-group.inline {
    grid-template-columns: 1fr;
  }
  
  .dashboard {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    z-index: 1001;
    transition: var(--transition);
  }
  
  .sidebar.active {
    left: 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-image::before {
    display: none;
  }
  
  .legal-content {
    padding: 30px 20px;
  }
  
  .post-header {
    padding: 30px 20px 20px;
  }
  
  .post-title {
    font-size: 1.8rem;
  }
  
  .post-content {
    padding: 25px 20px;
  }
  
  .floating-book {
    bottom: 20px;
    right: 20px;
  }
  
  .timeline-content {
    padding: 15px;
  }
}

/* Course Comparison Table - New */
.comparison {
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.comparison::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(63, 81, 181, 0.05);
  border-radius: 50% 0 0 0;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 30px;
}

.comparison-table thead th {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 20px;
  text-align: center;
  font-weight: 600;
}

.comparison-table thead th:first-child {
  text-align: left;
  background-color: var(--color-dark);
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: var(--color-white);
}

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--color-light);
}

.comparison-table tbody td {
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-gray);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table tfoot td {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 15px 20px;
  text-align: center;
  font-weight: 600;
}

.comparison-table tfoot td:first-child {
  background-color: var(--color-dark);
}

.check-mark {
  color: var(--color-accent);
  font-size: 1.2rem;
}

.x-mark {
  color: #DC2626;
  font-size: 1.2rem;
}

/* ScrollToTop Button - New */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--color-secondary);
  transform: translateY(-5px);
}

/* Page Loading Animation - New */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid var(--color-light);
  border-radius: 50%;
  border-top: 5px solid var(--color-primary);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Reveal on Scroll Animation */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s, transform 0.8s;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}