/* ===== GLOBAL STYLES ===== */
:root {
  --primary-color: #007bff;
  --secondary-color: #dc3545;
  --dark-bg: #0a0a0a;
  --darker-bg: #000000;
  --card-bg: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --border-color: #333333;
  --gradient-primary: linear-gradient(135deg, #007bff, #0056b3);
  --gradient-secondary: linear-gradient(135deg, #dc3545, #c82333);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-light), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 40px;
  width: auto;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.brand-text {
  color: var(--text-light);
}

.brand-accent {
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1549924231-f129b911e442?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
    center/cover;
  opacity: 0.05;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 3.2rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 3;
}

.hero-image img {
  border-radius: 15px;
  box-shadow: var(--shadow);
  max-width: 100%;
  height: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 3;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--text-light);
}

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

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--dark-bg);
  padding: 5rem 0;
}

.feature-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
}

.feature-card h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  background: var(--darker-bg);
}

.service-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h5 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.service-content p {
  color: var(--text-muted);
  margin: 0;
}

/* ===== PRICING PREVIEW ===== */
.pricing-preview {
  background: var(--dark-bg);
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

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

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

.pricing-header h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.price {
  margin-bottom: 1.5rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  color: var(--text-light);
  font-weight: 700;
}

.period {
  font-size: 1rem;
  color: var(--text-muted);
}

.savings {
  background: var(--gradient-secondary);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.pricing-features i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--darker-bg);
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}

.testimonial-item {
  min-width: 300px;
  scroll-snap-align: start;
}

.testimonial-content {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

.testimonial-content p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-author h5 {
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark-bg);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--darker-bg);
}

.footer-title {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  color: var(--text-light);
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: var(--primary-color);
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-tag {
  background: var(--card-bg);
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
}

.footer-divider {
  border-color: var(--border-color);
  margin: 2rem 0 1rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    min-height: calc(100vh - 100px);
  }

  .hero-title {
    font-size: 3rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 2.5rem;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .navbar-logo {
    height: 35px;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
    text-align: center;
    margin: 0 auto 2rem auto;
  }

  .hero-image {
    margin-top: 2rem;
    text-align: center;
  }

  .hero-image img {
    max-width: 90%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 120px;
    min-height: calc(100vh - 120px);
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card,
  .service-card,
  .pricing-card {
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-image img {
    max-width: 100%;
  }
}

/* ===== ABOUT PAGE STYLES ===== */
.page-header {
  background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
  position: relative;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
}

.about-content {
  padding-right: 2rem;
}

.about-content .lead {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.value-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
}

.value-card h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-muted);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.feature-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-muted);
  margin: 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

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

.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.team-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-content h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  width: 35px;
  height: 35px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  transform: translateY(-3px);
  color: var(--text-light);
}

/* ===== SERVICES PAGE STYLES ===== */
.service-overview-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.service-overview-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
}

.service-content h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.service-features i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.service-detail-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-detail-content {
  padding: 1.5rem;
}

.service-detail-content h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.highlight-tag {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 auto 1rem;
}

.process-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--text-light);
}

.process-step h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-muted);
}

.benefit-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
}

.benefit-card h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-muted);
}

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background: var(--card-bg);
  color: var(--text-light);
  border: none;
  padding: 1.5rem;
  font-weight: 600;
}

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

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-body {
  background: var(--card-bg);
  color: var(--text-muted);
  padding: 1.5rem;
}

/* ===== PACKAGES PAGE STYLES ===== */
.package-detail-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.package-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.package-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
}

.package-detail-card h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.package-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.package-benefits h5,
.package-suitable h5 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.package-benefits ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.package-benefits li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.package-benefits li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.package-suitable p {
  color: var(--text-muted);
  font-style: italic;
}

.crash-course-content h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.crash-course-content .lead {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.crash-course-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.crash-course-features {
  margin-bottom: 2rem;
}

.crash-course-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.crash-course-features .feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
}

.crash-course-features .feature-item span {
  color: var(--text-light);
  font-weight: 500;
}

.crash-course-image img {
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.additional-service-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.additional-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.additional-service-card .service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
}

.additional-service-card h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.additional-service-card .service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.additional-service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-includes {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-includes li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-includes li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.payment-option {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.payment-option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.payment-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--text-light);
}

.payment-option h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.payment-option p {
  color: var(--text-muted);
}

/* ===== AREAS PAGE STYLES ===== */
.area-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.area-image {
  position: relative;
  overflow: hidden;
}

.area-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.area-content {
  padding: 1.5rem;
}

.area-content h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.area-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.area-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.map-container {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  height: 100%;
}

.map-placeholder {
  text-align: center;
  padding: 2rem;
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.map-placeholder h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.map-placeholder p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.area-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background: var(--dark-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.area-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.area-dot.manchester {
  background: #007bff;
}
.area-dot.heald-green {
  background: #28a745;
}
.area-dot.cheadle {
  background: #ffc107;
}
.area-dot.stockport {
  background: #dc3545;
}
.area-dot.wilmslow {
  background: #6f42c1;
}
.area-dot.wythenshawe {
  background: #fd7e14;
}
.area-dot.sale {
  background: #20c997;
}
.area-dot.bredbury {
  background: #e83e8c;
}
.area-dot.didsbury {
  background: #6c757d;
}

.area-item span:last-child {
  color: var(--text-light);
  font-weight: 500;
}

.coverage-info {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  height: 100%;
}

.coverage-info h4 {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.coverage-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.benefit-item h5 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.benefit-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.stat-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--text-light);
}

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

.stat-card .stat-label {
  color: var(--text-muted);
  font-weight: 500;
}

.test-center-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.test-center-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.test-center-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
}

.test-center-card h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.test-center-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.test-center-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

/* ===== INQUIRY PAGE STYLES ===== */
.inquiry-form-container {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.form-header h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--text-muted);
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

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

.section-title {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: var(--dark-bg);
  border-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control option {
  background: var(--dark-bg);
  color: var(--text-light);
}

.form-check-input {
  background-color: var(--dark-bg);
  border-color: var(--border-color);
}

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

.form-check-label {
  color: var(--text-muted);
}

.form-check-label a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.inquiry-benefit-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.inquiry-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.inquiry-benefit-card .benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
}

.inquiry-benefit-card h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.inquiry-benefit-card p {
  color: var(--text-muted);
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
  color: var(--primary-color) !important;
}

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

.bg-dark {
  background-color: var(--dark-bg) !important;
}

.bg-darker {
  background-color: var(--darker-bg) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.shadow-custom {
  box-shadow: var(--shadow);
}

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