/* About Page Stat Cards (no conflict) */
.about-stat-card {
  background-color: rgba(255, 140, 0, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 140, 0, 0.2);
  padding: 1rem;
  border-radius: 0.5rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #18181b 50%, #000000 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.3));
  }

  to {
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.6));
  }
}

.loading-spinner {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.loading-spinner::before,
.loading-spinner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: spinnerAnimation 1.5s ease-in-out infinite;
}

.loading-spinner::before {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 140, 0, 0.2);
  border-top: 3px solid #ff8c00;
  animation: spinnerRotate 1s linear infinite;
}

.loading-spinner::after {
  width: 40px;
  height: 40px;
  top: 10px;
  left: 10px;
  border: 2px solid rgba(255, 140, 0, 0.3);
  border-bottom: 2px solid #ffa500;
  animation: spinnerRotate 0.8s linear infinite reverse;
}

@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  color: #ffffff;
  font-size: 0.9rem;
  opacity: 0.8;
  animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.loading-dots {
  display: flex;
  gap: 4px;
  margin-top: 0.5rem;
}

.loading-dot {
  width: 6px;
  height: 6px;
  background: #ff8c00;
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite both;
}

.loading-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dot:nth-child(2) {
  animation-delay: -0.16s;
}

.loading-dot:nth-child(3) {
  animation-delay: 0s;
}

@keyframes dotBounce {

  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Ultra Fast Page System */
.page-content {
  width: 100%;
  min-height: 100vh;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease;
}

.page-content.active {
  opacity: 1;
  transform: scale(1);
}

#main-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}

#main-content.loaded {
  opacity: 1;
}


/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: all 0.3s ease;
  background-color: rgb(24 24 27 / 0.9);
  backdrop-filter: blur(8px);
}

.navbar.top {
  backdrop-filter: unset;
  background-color: unset;
}

.nav-container {
  max-width: 96vw;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-brand::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff8c00, #ffa500);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-brand:hover::after {
  width: 100%;
}

.nav-brand:hover {
  transform: translateY(-1px);
}

.nav-menu {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #ff8c00;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  font-size: inherit;
  font-family: inherit;
}

.nav-dropdown-btn:hover {
  color: #ff8c00;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 16rem;
  background-color: #27272a;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 0.25rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.875rem;
}

.nav-dropdown-item:hover {
  background-color: #3f3f46;
  color: #ff8c00;
}

.nav-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav-chevron {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-toggle:hover {
  background: rgba(255, 140, 0, 0.2);
  border-color: rgba(255, 140, 0, 0.5);
  transform: scale(1.05);
}

.nav-toggle span {
  width: 1.2rem;
  height: 2px;
  background: #ff8c00;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 2px 0;
}

/* Hamburger to X animation */
.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

@media (min-width: 768px) {
  .nav-content {
    height: 5rem;
  }

  .nav-menu {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* Main Content */
.main-content {
  min-height: 100vh;
  background: linear-gradient(rgb(24, 24, 27), rgb(0, 0, 0));
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  text-align: center;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: unset;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 0px 10px;
}

.hero-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: .025em;
  text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px;
}

@media (min-width: 769px) {
  .hero-title {
    font-size: 7rem;
    letter-spacing: 0.05em;
  }
}

/* Navigation Cards */

.nav-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 80rem;
  margin: 4rem auto 0;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-cards {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .nav-card {
    width: 320px;
    max-width: 100%;
  }
}

.nav-card {
  position: relative;
  height: 9rem;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 640px) {
  .nav-card {
    height: 14rem;
  }
}

.nav-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.nav-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.nav-card:hover .nav-card-overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.nav-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.nav-card-icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (min-width: 640px) {
  .nav-card-title {
    font-size: 1.875rem;
  }
}

/* Container */
.container {
  max-width: 96vw;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* About Section */
.about-section {
  position: relative;
  background: linear-gradient(to bottom, #18181b, #000000);
  overflow: hidden;
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 0.5rem;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background-color: rgba(255, 140, 0, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 140, 0, 0.2);
  padding: 1rem;
  border-radius: 0.5rem;
}

.stat-number {
  color: #ff8c00;
  font-weight: 700;
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 1.875rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

@media (min-width: 1024px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

.about-content {
  margin-top: 2rem;
  padding-left: 3rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 140, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.about-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ff8c00;
}

.about-badge span {
  color: #ff8c00;
  font-weight: 500;
}

.about-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 3rem;
  }
}

.about-title-highlight {
  display: block;
  color: #ff8c00;
  margin-top: 0.5rem;
}

.about-text {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  background-color: rgba(39, 39, 42, 0.5);
  border: 1px solid rgba(63, 63, 70, 0.5);
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: colors 0.3s ease;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ff8c00;
}

.feature-title {
  color: #ff8c00;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  font-size: 0.875rem;
  color: #9ca3af;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: #18181b;
  color: #ffffff;
  padding: 3rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #9ca3af;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fb923c;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffb366;
}

.social-links svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #27272a;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffb366;
  text-decoration: underline;
}

/* Prevent body scroll when mobile menu is open */
.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Ultra Simple Mobile Navigation */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    gap: 1rem;
  }

  .nav-menu.active {
    transform: translateX(0);
    display: flex;
    background-color: rgb(24 24 27 / 0.9);
    backdrop-filter: blur(12px);
  }

  .nav-link,
  .nav-dropdown {
    width: 100%;
    max-width: 280px;
  }

  .nav-link {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
  }

  .nav-dropdown {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
  }

  .nav-dropdown-btn {
    width: 100%;
    justify-content: space-between;
    padding: 1rem;
    font-weight: 600;
    background: transparent;
    border: none;
  }

  .nav-dropdown-menu {
    position: static;
    background: rgba(39, 39, 42, 0.9);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    width: auto;
    left: auto;
    top: auto;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
  }

  .nav-dropdown-item {
    padding: 0.8rem 1rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
  }

  .nav-dropdown-item:hover {
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
  }

  .nav-toggle {
    z-index: 1002;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.bg-black {
  background-color: #000000;
}

.text-white {
  color: #ffffff;
}

.min-h-screen {
  min-height: 100vh;
}

/* Additional styles for certificates page */
.certificates-section {
  padding: 5rem 0;
  background-color: rgba(39, 39, 42, 0.8);
  overflow: hidden;
}

.certificates-header {
  text-align: center;
  margin-bottom: 4rem;
}

.certificates-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ff8c00, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .certificates-title {
    font-size: 2.5rem;
  }
}

.certificates-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
}

.certificates-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .certificates-main {
    flex-direction: row;
    align-items: center;
  }
}

.certificates-image {
  flex: 1;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.certificates-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  object-fit: cover;
  color: transparent;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(39, 39, 42, 0.9) 0%, transparent 60%);
}

.image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: white;
}

.image-caption h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.image-caption p {
  font-size: 0.875rem;
}

.certificates-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.certificate-card {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  background-color: rgba(39, 39, 42, 0.5);
  border: 1px solid rgba(63, 63, 70, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.certificate-card:hover {
  background-color: rgba(63, 63, 70, 0.5);
  border-color: rgba(255, 140, 0, 0.5);
}

.certificate-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.certificate-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}

.trophy-icon {
  color: #ffd700;
}

.zap-icon {
  color: #4caf50;
}

.award-icon {
  color: #2196f3;
}

.shield-icon {
  color: #9c27b0;
}

.certificate-info {
  flex: 1;
  min-width: 0;
}

.certificate-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin: 0;
  transition: color 0.3s ease;
}

.certificate-card:hover .certificate-name {
  color: #ff8c00;
}

.certificate-org {
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
}

.certificate-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: #ff8c00;
  transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-arrow {
  transform: translateX(0.25rem);
}

.certificate-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.certificate-card:hover .certificate-bg {
  opacity: 0.1;
}

.additional-section {
  background-color: rgba(39, 39, 42, 0.3);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(63, 63, 70, 1);
}

.additional-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.additional-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #ff8c00;
}

.additional-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.additional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .additional-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.additional-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(63, 63, 70, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: background-color 0.3s ease;
}

.additional-item:hover {
  background-color: rgba(63, 63, 70, 0.5);
}

.additional-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 140, 0, 0.7);
}

.additional-item span {
  color: #d1d5db;
}

.certificate-arrow {
  transition: transform 0.3s ease;
}

/* Packages Page Styles */
.packages-hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}


.packages-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 6rem;
}

.packages-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

@media (max-width: 768px) {
  .packages-title {
    font-size: 2.5rem;
  }
}

.packages-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  max-width: 768px;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  background-color: rgba(39, 39, 42, 0.5);
  border: 1px solid rgba(63, 63, 70, 0.5);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.package-card.popular {
  border-color: #8b5cf6;
  background-color: rgba(139, 92, 246, 0.05);
}

.package-card.premium {
  border-color: #ec4899;
  background-color: rgba(236, 72, 153, 0.05);
}

.package-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.package-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.package-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.package-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  width: 100%;
  z-index: 2;
}

.package-image-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.package-image-desc {
  color: #d1d5db;
  font-size: 0.875rem;
}

.package-content {
  flex-grow: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.package-duration-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.duration-tab {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  background-color: rgba(63, 63, 70, 0.3);
  color: #9ca3af;
  border: none;
}

.duration-tab:hover {
  color: white;
}

.duration-tab.active {
  background-color: #4f46e5;
  color: white;
}

.package-card.popular .duration-tab.active {
  background-color: #8b5cf6;
}

.package-card.premium .duration-tab.active {
  background-color: #ec4899;
}

.package-pricing {
  margin-bottom: 1.5rem;
}

.package-old-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.875rem;
}

.package-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: #4f46e5;
}

.package-card.popular .package-price {
  color: #8b5cf6;
}

.package-card.premium .package-price {
  color: #ec4899;
}

.package-badge {
  display: inline-block;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background-color: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
}

.package-card.popular .package-badge {
  background-color: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.package-card.premium .package-badge {
  background-color: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.package-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.package-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

/* Performance optimizations */
.package-card {
  contain: layout;
}

.package-image {
  contain: layout style;
}

.package-features svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: #4f46e5;
}

.package-card.popular .package-features svg {
  color: #8b5cf6;
}

.package-card.premium .package-features svg {
  color: #ec4899;
}

.package-features span {
  font-size: 0.875rem;
  color: #d1d5db;
}

.package-addon {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.addon-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  background-color: rgba(79, 70, 229, 0.1);
}

.package-card.popular .addon-option {
  background-color: rgba(139, 92, 246, 0.1);
}

.package-card.premium .addon-option {
  background-color: rgba(236, 72, 153, 0.1);
}

.addon-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid #4f46e5;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-card.popular .addon-checkbox {
  border-color: #8b5cf6;
}

.package-card.premium .addon-checkbox {
  border-color: #ec4899;
}

.addon-content {
  flex: 1;
}

.addon-title {
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.addon-price {
  font-size: 0.75rem;
  color: #9ca3af;
}

.addon-tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-trigger {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgba(79, 70, 229, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
}

.package-card.popular .tooltip-trigger {
  background-color: rgba(139, 92, 246, 0.2);
}

.package-card.premium .tooltip-trigger {
  background-color: rgba(236, 72, 153, 0.2);
}

.package-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: 500;
  border: none;
  cursor: pointer;
  background-color: #4f46e5;
  margin-top: auto;
}

.package-btn:hover {
  background-color: #4338ca;
}

.package-card.popular .package-btn {
  background-color: #8b5cf6;
}

.package-card.popular .package-btn:hover {
  background-color: #7c3aed;
}

.package-card.premium .package-btn {
  background-color: #ec4899;
}

.package-card.premium .package-btn:hover {
  background-color: #db2777;
}

.face-to-face-section {
  margin-top: 5rem;
}

.face-to-face-card {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .face-to-face-card {
    flex-direction: row;
  }
}

.face-to-face-image {
  position: relative;
  height: 20rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .face-to-face-image {
    width: 50%;
    height: auto;
  }
}

.face-to-face-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.face-to-face-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.4) 0%, transparent 100%);
}

@media (min-width: 768px) {
  .face-to-face-image::after {
    background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 204, 0.4) 100%);
  }
}

.face-to-face-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .face-to-face-content {
    width: 50%;
    padding: 2.5rem;
  }
}

.face-to-face-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(0, 102, 204, 0.2);
  color: #0066cc;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  width: fit-content;
}

.face-to-face-badge svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

.face-to-face-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .face-to-face-title {
    font-size: 1.875rem;
  }
}

.face-to-face-desc {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.face-to-face-features {
  margin-bottom: 2rem;
}

.face-to-face-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.face-to-face-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 102, 204, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.face-to-face-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #0066cc;
}

.face-to-face-feature-content h4 {
  font-weight: 500;
  color: white;
  margin-bottom: 0.25rem;
}

.face-to-face-feature-content p {
  font-size: 0.875rem;
  color: #9ca3af;
}

.face-to-face-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .face-to-face-footer {
    flex-direction: row;
  }
}

.face-to-face-pricing {
  text-align: center;
}

@media (min-width: 640px) {
  .face-to-face-pricing {
    text-align: left;
  }
}

.face-to-face-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0066cc;
}

.face-to-face-price-desc {
  font-size: 0.875rem;
  color: #9ca3af;
}

.face-to-face-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background-color: #0066cc;
  color: white;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

@media (min-width: 640px) {
  .face-to-face-btn {
    width: auto;
    margin-left: auto;
  }
}

.face-to-face-btn:hover {
  background-color: #0052a3;
}