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

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #000;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: #ffffff;
  /* box-shadow: 0 2px 20px rgba(0, 150, 255, 0.08); */
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #000;
}

.logo-text span {
  color: #a942bb;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #a942bb;
}

.btn-login {
  background: #a942bb;
  color: white;
  border: none;
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 12px;
}

.btn-login:hover {
  background: #673ab7;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 150px 120px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("/lp/img-2.jpg");
  background-size: cover;
  background-position: auto bottom;
  background-attachment: fixed;
  filter: blur(2px);
  transform: scale(1.02);
  z-index: -1;
}

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

.hero-content h4 {
  color: #a942bb;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: white;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 150, 255, 0.1);
}

.hero-content h4 span {
  color: #000 !important;
}

.hero-title-large {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #fff;
  border-left: 6px solid #a942bb;
  padding-left: 15px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-title-large span {
  color: #a942bb;
}

.hero-title-medium {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #fff;
  border-right: 6px solid #a942bb;
  padding-right: 15px;
  display: inline-block;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-title-medium span {
  color: #a942bb;
}

.hero-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(0, 150, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 150, 255, 0.05);
}

.hero-badge i {
  color: #a942bb;
}

.hero-badge span {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #a942bb;
  color: white;
  /* box-shadow: 0 10px 20px rgba(0, 150, 255, 0.2); */
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background: white;
  color: #a942bb;
}

.btn-primary:hover {
  background: white;
  transform: translateY(-3px);
  color: #a942bb;
  /* box-shadow: 0 15px 30px rgba(0, 150, 255, 0.3); */
}

.btn-secondary {
  background: white;
  color: #a942bb;
  border: 2px solid #a942bb;
}

.btn-secondary:hover {
  color: #a942bb;
  background: white;
  transform: translateY(-3px);
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 40px rgba(0, 150, 255, 0);
  border: 4px solid white;
}

/* Latihan Soal Section */
.latihan-soal {
  padding: 100px 120px;
  background: white;
}

.latihan-header {
  text-align: center;
  margin-bottom: 60px;
}

.latihan-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}

.latihan-header h2 span {
  color: #a942bb;
  background: #f0f9ff;
  padding: 5px 20px;
  border-radius: 40px;
}

.latihan-header p {
  color: #5a6a7a;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
}

.latihan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.latihan-card {
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 35px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.latihan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 0;
  background: #a942bb;
  transition: 0.3s;
}

.latihan-card:hover::before {
  height: 100%;
}

.latihan-card:hover {
  border-color: #a942bb;
  box-shadow: 0 15px 35px rgba(0, 150, 255, 0.1);
  transform: translateY(-8px);
}

.latihan-icon {
  width: 70px;
  height: 70px;
  background: #f0f9ff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a942bb;
  font-size: 30px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.latihan-card:hover .latihan-icon {
  background: #a942bb;
  color: white;
}

.latihan-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #000;
}

.latihan-card p {
  color: #5a6a7a;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.latihan-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eef2f6;
  padding-top: 20px;
  margin-bottom: 20px;
}

.latihan-stats span {
  font-weight: 700;
  color: #a942bb;
  background: #f0f9ff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
}

.btn-latihan {
  width: 100%;
  padding: 12px;
  background: #f0f9ff;
  border: none;
  border-radius: 30px;
  color: #a942bb;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
}

.btn-latihan:hover {
  background: #a942bb;
  color: white;
}

/* Programs Section */
.programs {
  padding: 100px 120px;
  background: #f8fcff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}

.section-header h2 span {
  color: #a942bb;
}

.section-header p {
  color: #5a6a7a;
  font-size: 18px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.program-card {
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 30px;
  transition: 0.2s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.program-card:hover {
  border-color: #a942bb;
  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.1);
  transform: translateY(-5px);
}

.program-icon {
  width: 60px;
  height: 60px;
  background: #f0f9ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a942bb;
  font-size: 26px;
  margin-bottom: 20px;
}

.program-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.program-card p {
  color: #5a6a7a;
  font-size: 14px;
  line-height: 1.6;
}

/* Stats Section */
.stats {
  padding: 60px 120px;
  background: linear-gradient(135deg, #a942bb, #673ab7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 16px;
}

/* Features Section */
.features {
  padding: 100px 120px;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  transition: 0.2s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #f0f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #a942bb;
  font-size: 32px;
  transition: 0.2s;
}

.feature-item:hover .feature-icon {
  background: #a942bb;
  color: white;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.feature-item p {
  color: #5a6a7a;
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  padding: 100px 120px;
  background: #f8fcff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f6;
  transition: 0.2s;
}

.testimonial-card:hover {
  border-color: #a942bb;
  box-shadow: 0 15px 35px rgba(0, 150, 255, 0.1);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-badge {
  background: #a942bb;
  color: white;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.testimonial-text {
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #eef2f6;
  padding-top: 20px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #f0f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a942bb;
  font-weight: 700;
  font-size: 18px;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.author-info p {
  color: #a942bb;
  font-size: 13px;
  font-weight: 600;
}

/* ===== PRICING SECTION - FIXED & RAPI ===== */
.pricing {
  padding: 100px 120px;
  background: white;
}

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

/* BASE CARD STYLE */
.pricing-card {
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 30px;
  padding: 40px 35px;
  transition: 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* FREE PACKAGE */
.pricing-card.free {
  border-top: 6px solid #28a745;
}

.pricing-card.free:hover {
  border-color: #28a745;
  box-shadow: 0 20px 40px rgba(108, 117, 125, 0.1);
}

.pricing-card.free .pricing-icon {
  color: #28a745;
  background: #f8f9fa;
}

.pricing-card.free h3 {
  color: #28a745;
}

.pricing-card.free .price {
  color: #28a745;
  font-size: 36px;
}

.pricing-card.free .pricing-features i {
  color: #28a745;
}

.btn-free {
  background: #28a745;
  color: white;
}

.btn-free:hover {
  background: #5a6268;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 117, 125, 0.2);
}

/* PREMIUM PACKAGE */
.pricing-card.premium {
  border-top: 6px solid #a942bb;
}

.pricing-card.premium:hover {
  border-color: #a942bb;
  box-shadow: 0 20px 40px rgba(0, 150, 255, 0.1);
}

.pricing-card.premium .pricing-icon {
  color: #a942bb;
  background: #e3f2fd;
}

.pricing-card.premium h3 {
  color: #a942bb;
}

.pricing-card.premium .price {
  color: #a942bb;
}

.pricing-card.premium .pricing-features i {
  color: #a942bb;
}

.btn-premium {
  background: #a942bb;
  color: white;
}

.btn-premium:hover {
  background: #673ab7;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 150, 255, 0.3);
}

/* VIP PACKAGE - UTAMA */
.pricing-card.vip {
  border: 3px solid #ffc107;
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
  transform: scale(1.08);
  z-index: 10;
  background: linear-gradient(135deg, #fffcf0, #ffffff);
  overflow: visible;
  position: relative;
}

.pricing-card.vip:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 193, 7, 0.3);
  border-color: #ffc107;
}

/* BINTANG VIP - DIPERBAIKI */
.pricing-card.vip::before-off {
  content: "★★★★★";
  position: absolute;
  top: 15px;
  right: -35px;
  background: #ffc107;
  color: white;
  padding: 8px 70px;
  font-size: 14px;
  transform: rotate(45deg);
  letter-spacing: 5px;
  font-weight: 900;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
  z-index: 20;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.vip .pricing-icon {
  color: #ffc107;
  background: #fff3cd;
  width: 90px;
  height: 90px;
  font-size: 42px;
  border: 3px solid #ffc107;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.pricing-card.vip h3 {
  color: #ffc107;
  font-size: 36px;
  text-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.pricing-card.vip .price {
  color: #ffc107;
  font-size: 52px;
  text-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
}

.pricing-card.vip .pricing-features i {
  color: #ffc107;
}

.btn-vip {
  background: #ffc107;
  color: #000;
  font-weight: 800;
  font-size: 18px;
  padding: 18px;
  border: 2px solid #ffc107;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.btn-vip:hover {
  background: #000;
  color: #ffc107;
  border-color: #ffc107;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 193, 7, 0.4);
}

.pricing-card.vip .pricing-badge {
  position: absolute;
  top: -15px;
  left: 30px;
  background: #ffc107;
  color: #000;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
  border: 2px solid white;
  z-index: 30;
}

/* SHARED STYLES */
.pricing-icon {
  width: 80px;
  height: 80px;
  background: #f0f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #a942bb;
  font-size: 36px;
  transition: 0.3s;
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1);
}

.pricing-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}

.price {
  font-size: 42px;
  font-weight: 800;
  color: #a942bb;
  margin-bottom: 5px;
  line-height: 1.2;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: #5a6a7a;
}

.vip-price-tag {
  margin-bottom: 15px;
}

.price-discount {
  background: #ffc107;
  color: #000;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
  margin-top: 5px;
  letter-spacing: 1px;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 15px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.pricing-features i {
  color: #a942bb;
  font-size: 16px;
  width: 20px;
}

.pricing-features .fa-times {
  color: #dc3545;
}

.pricing-features .text-muted {
  color: #a0a0a0;
}

.vip-features li {
  margin-bottom: 18px;
  font-size: 16px;
}

.vip-features i {
  color: #ffc107;
  font-size: 20px;
}

.vip-features strong {
  color: #000;
  font-weight: 800;
}

.vip-features .highlight {
  background: #ffc107;
  color: #000;
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
}

.btn-pricing {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 10px;
}

.vip-note {
  font-size: 12px;
  color: #28a745;
  margin-top: 15px;
  text-align: center;
  font-style: italic;
}

/* CTA Section */
.cta {
  padding: 80px 120px;
  background: linear-gradient(135deg, #a942bb, #673ab7);
  text-align: center;
}

.cta h2 {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background: white;
  color: #a942bb;
  padding: 16px 50px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  /* transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
  background: white;
  color: #a942bb;
}

/* Footer */
footer {
  padding: 60px 120px 30px;
  background: white;
  border-top: 1px solid #eef2f6;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

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

.footer-logo i {
  font-size: 24px;
  color: #a942bb;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 800;
  color: #000;
}

.footer-logo span span {
  color: #a942bb;
}

.footer-desc {
  color: #5a6a7a;
  line-height: 1.7;
  margin-bottom: 25px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: #f0f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a942bb;
  text-decoration: none;
  transition: 0.2s;
}

.social-links a:hover {
  background: #a942bb;
  color: white;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #5a6a7a;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #a942bb;
  padding-left: 5px;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  color: #5a6a7a;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #a942bb;
  width: 20px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #eef2f6;
  display: flex;
  justify-content: space-between;
  color: #5a6a7a;
  font-size: 14px;
}

.footer-bottom a {
  color: #5a6a7a;
  text-decoration: none;
  margin-left: 25px;
}

.footer-bottom a:hover {
  color: #a942bb;
}

/* Responsive */
@media (max-width: 1200px) {
  nav,
  .hero,
  .latihan-soal,
  .programs,
  .stats,
  .features,
  .testimonials,
  .pricing,
  .cta,
  footer {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .latihan-grid,
  .programs-grid,
  .features-grid,
  .testimonial-grid,
  .stats-grid,
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.vip {
    transform: scale(1);
    grid-column: span 2;
    order: -1;
  }

  .pricing-card.vip:hover {
    transform: translateY(-10px);
  }

  .hero-title-large {
    font-size: 36px;
  }

  .hero-title-medium {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 20px;
  }

  .nav-links {
    margin: 15px 0;
    gap: 20px;
  }

  .latihan-grid,
  .programs-grid,
  .features-grid,
  .pricing-grid,
  .testimonial-grid,
  .stats-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .pricing-card.vip {
    grid-column: span 1;
    order: -1;
  }

  .hero-title-large {
    font-size: 28px;
  }

  .hero-title-medium {
    font-size: 22px;
  }

  .hero {
    padding-top: 180px;
  }

  .pricing {
    padding: 60px 30px;
  }

  .pricing-card.vip h3 {
    font-size: 30px;
  }

  .pricing-card.vip .price {
    font-size: 42px;
  }
}

/* dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-arrow {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: white;
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding-left: 2rem;
}

.menu-icon {
  font-size: 1.2rem;
}

.dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
  margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }

  .dropdown:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }
}

/* Animation for dropdown items */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dropdown-menu a {
  animation: slideIn 0.3s ease forwards;
  animation-delay: calc(var(--item-index) * 0.05s);
  opacity: 0;
}
/* end dropdown */
