/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0f0f0f;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background: transparent;
  color: #f59e0b;
  border: 2px solid #f59e0b;
}

.btn-outline:hover {
  background: #f59e0b;
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  color: #f59e0b;
  font-size: 1.8rem;
  margin: 0;
}

.logo span {
  color: #888;
  font-size: 0.8rem;
  display: block;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f59e0b;
}

.mobile-menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23F59E0B" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23F59E0B" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23F59E0B" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.highlight {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 500;
}

.feature i {
  color: #f59e0b;
  font-size: 1.2rem;
}

.hero-image-placeholder {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.hero-image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-image-placeholder h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About UC Section */
.about-uc {
  padding: 80px 0;
  background: #1a1a1a;
}

.uc-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.uc-info-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uc-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.uc-info-card h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.uc-info-card p {
  color: #ccc;
  line-height: 1.6;
}

.uc-benefits {
  background: rgba(245, 158, 11, 0.05);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.uc-benefits h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.benefits-list {
  display: grid;
  gap: 1.5rem;
}

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

.benefit-item i {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.benefit-item h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #ccc;
}

/* Packages Section */
.packages {
  padding: 80px 0;
  background: #0f0f0f;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.package-card:hover .discount-badge {
  animation: pulse 1s infinite, glow 2s infinite;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

.package-card:hover .discounted-price {
  color: #fbbf24;
  text-shadow: 0 4px 16px rgba(245, 158, 11, 0.5);
}

.package-card.popular {
  border-color: #f59e0b;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-header h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 2rem;
  position: relative;
}

/* Discount Badge Styles */
.discount-badge {
  position: absolute;
  top: -15px;
  right: -10px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  animation: pulse 2s infinite;
}

/* Price Display Container */
.price-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Original Price (crossed out) */
.original-price {
  font-size: 1.2rem;
  color: #888;
  text-decoration: line-through;
  font-weight: 400;
  opacity: 0.7;
}

/* Discounted Price (highlighted) */
.discounted-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f59e0b;
  text-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Pulse animation for discount badge */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Glow animation for enhanced hover effect */
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3),
      0 0 20px rgba(239, 68, 68, 0.6);
  }
}

.package-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.feature-item i {
  color: #10b981;
  font-size: 1rem;
}

/* Why Us Section */
.why-us {
  padding: 80px 0;
  background: #1a1a1a;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.why-us-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.2);
}

.why-us-card .card-icon {
  margin-bottom: 1.5rem;
}

.why-us-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.why-us-card p {
  color: #ccc;
  line-height: 1.6;
}

.stats-section {
  text-align: center;
  background: rgba(245, 158, 11, 0.05);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.stats-section h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #ccc;
  font-weight: 500;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: #0f0f0f;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

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

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
}

.step-icon i {
  font-size: 2rem;
  color: #f59e0b;
}

.step-card h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.step-card p {
  color: #ccc;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #1a1a1a;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(245, 158, 11, 0.1);
}

.faq-question h3 {
  color: #fff;
  margin: 0;
  font-size: 1.1rem;
}

.faq-question i {
  color: #f59e0b;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #ccc;
  line-height: 1.6;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Final CTA Section */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

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

.cta-buttons .btn-outline {
  background: white;
  color: #f59e0b;
  border-color: white;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f59e0b;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  color: #f59e0b;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .hero-features {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .package-card {
    padding: 1.5rem;
  }

  /* Mobile adjustments for discount pricing */
  .discount-badge {
    top: -10px;
    right: -5px;
    font-size: 0.7rem;
    padding: 3px 10px;
  }

  .original-price {
    font-size: 1rem;
  }

  .discounted-price {
    font-size: 2rem;
  }

  .why-us-card {
    padding: 2rem;
  }

  .step-card {
    padding: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Smooth scrolling offset for fixed header */
section {
  scroll-margin-top: 80px;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .final-cta {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero,
  .about-uc,
  .packages,
  .why-us,
  .how-it-works,
  .faq {
    background: white;
  }
}
