:root {
  --bg-dark: #0c0c10;
  --bg-darker: #0a0a0d;
  --card-bg: #14141c;
  --text-light: #f7f7fb;
  --text-muted: #b8bcc6;
  --text-secondary: #b0b0b0;
  --border-color: #222222;
  --bg-card: #111111;
  --primary-color: #ff6b35;
  --accent: #ff7a00;
  --accent-dark: #e56e00;
  --gradient: linear-gradient(135deg, #14141c 0%, #0a0a0d 100%);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* Navbar */
#navbar {
  background-color: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
  transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.5));
  transform: scale(1.05);
}

.navbar-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  gap: 0.5rem;
}

.navbar-text span {
  color: var(--primary-color);
}


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

.navbar-nav .nav-link:hover {
  color: var(--text-light) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  transition: width 0.3s ease;
}

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

.nav-pricing-btn,
.nav-pricing-btn:visited,
.nav-pricing-btn:active,
.nav-pricing-btn:focus {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  color: #ffffff !important;
  padding: 0.65rem 1.3rem !important;
  border-radius: 8px;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.nav-pricing-btn::after {
  display: none !important;
}

.nav-pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  color: #ffffff !important;
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%) !important;
}

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

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 107, 53, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-accent {
  background: var(--accent);
  color: #0a0a0d;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.25);
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: #0a0a0d;
  transform: translateY(-2px);
}

/* Hero */
.hero-section {
  padding: 120px 0 90px;
  background: radial-gradient(circle at top right, #1a1a25, #0a0a0d 60%);
}

.badge-soft {
  background: rgba(255, 122, 0, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 122, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
}

.hero-text {
  color: var(--text-muted);
  max-width: 520px;
}

.trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #0a0a0d;
  margin-left: -10px;
  object-fit: cover;
}

.poster-mockup {
  position: relative;
  padding: 2rem;
  background: var(--gradient);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.badge-off {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #0a0a0d;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.poster-card {
  background: #11111a;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-card h3 {
  margin-top: 1rem;
  font-weight: 700;
}

.poster-card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.poster-card li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.poster-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.poster-footer .price {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
}

/* Sections */
.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--bg-darker);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0.6rem auto 0;
}

.offer-card {
  background: var(--card-bg);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.offer-body {
  padding: 1.5rem;
}

.offer-body h5 {
  font-weight: 600;
}

.offer-body p {
  color: var(--text-muted);
}

.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
}

.offer-meta .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.offers-empty {
  background: var(--card-bg);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Combo Section */
.combo-section {
  background: radial-gradient(circle at top left, #1b1b26, #0a0a0d 60%);
}

.combo-card {
  background: #12121a;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.3s ease;
}

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

.combo-card.featured {
  border: 1px solid rgba(255, 122, 0, 0.4);
  box-shadow: 0 30px 60px rgba(255, 122, 0, 0.2);
}

.combo-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 122, 0, 0.2);
  color: var(--accent);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.combo-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.combo-card li {
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.combo-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* CTA */
.cta-section {
  background: var(--accent);
  color: #0a0a0d;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-weight: 700;
}

.cta-content p {
  margin: 0.5rem 0 0;
  max-width: 520px;
}

.cta-shape {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: -50px;
  right: 5%;
}

.cta-shape.shape-2 {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: 6%;
  top: auto;
  opacity: 0.2;
}

/* Footer */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.2));
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.4));
  transform: scale(1.05);
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.footer-section h3 span {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-color: transparent;
  color: var(--text-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 110px;
  }

  .poster-mockup {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.9rem;
  }

  .cta-content {
    text-align: center;
    justify-content: center;
  }
}
