/* ============================================================= */
/* BUDGETGROUPLY – FULL STYLESHEET (Light + Dark Mode)           */
/* Updated: November 10, 2025 | UAE | 05:56 PM +04               */
/* ============================================================= */

:root {
  --primary: #6c5ce7;
  --accent: #00d2ff;
  --success: #00b894;
  --mint: #00ffaa;
  --warning: #ffd60a;
  --bg-light: #f5f6fa;
  --dark: #1a1a2e;
  --text: #2d3436;
  --text-light: #ddd;
  --card-bg: #ffffff;
  --card-border: #e0e0e0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-light);
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ============================================================= */
/* HERO SECTION                                                  */
/* ============================================================= */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 100px 20px;
}

.hero .display-4 {
  font-weight: 500;
}

.hero .text-warning {
  color: #ffd60a !important;
}

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

/* ============================================================= */
/* SEAT COUNTER                                                  */
/* ============================================================= */
#seat-counter,
#seats-left-bottom {
  font-family: "Courier New", monospace;
  font-weight: 500;
  letter-spacing: -1px;
}

/* ============================================================= */
/* FEATURES IMAGES – NO CUTOFF, ROUNDED, RESPONSIVE              */
/* ============================================================= */
.feature-img {
  width: 250px;
  object-fit: contain; /* Keeps full image, no cutoff */
  object-position: center;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto 1.5rem;
}

.feature-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(108, 92, 231, 0.25);
  background: #f8f9fa;
}

/* Dark Mode */
.dark-mode .feature-img {
  background: #2a2a3a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.dark-mode .feature-img:hover {
  box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-img {
    width: 200px;
    height: 200px;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .feature-img {
    width: 180px;
    height: 180px;
  }
}

/* ============================================================= */
/* PRICING SECTION                                               */
/* ============================================================= */
#pricing {
  background: var(--bg-light);
}

#pricing .card {
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  transition: all 0.3s ease;
  background: var(--card-bg);
}

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

#pricing .price {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 1rem 0;
}

#pricing .price s {
  color: #aaa;
  font-weight: normal;
  font-size: 1.4rem;
}

#pricing .price .text-success {
  color: var(--accent) !important;
  font-size: 2.4rem;
}

#pricing .badge {
  font-weight: 700;
  padding: 0.5em 1.2em;
  border-radius: 50px;
  font-size: 0.85rem;
  z-index: 10;
  background: var(--warning);
}

#pricing .btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.pricing-list {
  color: #00b8e6;
}

/* ============================================================= */
/* BADGES (App Store / Play Store)                               */
/* ============================================================= */
.badge-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 70px;
  padding: 8px;
  transition: transform 0.2s ease;
}

.badge-link:hover {
  transform: translateY(-2px);
}

.badge-img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 480px) {
  .badge-link {
    width: 150px;
    height: 60px;
  }
}

/* ============================================================= */
/* DARK MODE – GLOBAL & PRICING SPECIFIC                         */
/* ============================================================= */
.dark-mode {
  background: #111;
  color: #eee;
}

.dark-mode .bg-light {
  background: #222 !important;
}

.dark-mode .card {
  background: #2a2a3a !important;
  border-color: #444 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.dark-mode .card:hover {
  box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3) !important;
  border-color: var(--primary) !important;
}

.dark-mode .text-light {
  color: #ccc !important;
}

.dark-mode .text-muted {
  color: #888 !important;
}

.dark-mode .price s {
  color: #777 !important;
}

.dark-mode .price .text-success {
  color: var(--mint) !important;
}

.dark-mode .badge {
  background: var(--warning) !important;
  color: #1a1a2e !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dark-mode .btn-outline-primary {
  color: #a29bfe;
  border-color: #a29bfe;
}
.dark-mode .btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

.dark-mode .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.dark-mode .btn-primary:hover {
  background: #5a4fcf;
}

.dark-mode .btn-outline-success {
  color: var(--mint);
  border-color: var(--mint);
}
.dark-mode .btn-outline-success:hover {
  background: var(--success);
  color: #1a1a2e;
}

.dark-mode .hero {
  background: linear-gradient(135deg, #5a4fcf 0%, #00b8e6 100%);
}

.dark-mode #seat-counter,
.dark-mode #seats-left-bottom {
  color: var(--accent);
}

/* ============================================================= */
/* ANIMATIONS & UTILITIES                                        */
/* ============================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.bg-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* ============================================================= */
/* RESPONSIVE                                                    */
/* ============================================================= */
@media (max-width: 768px) {
  .hero {
    padding: 80px 15px !important;
  }
  .display-4 {
    font-size: 2.5rem;
  }
  #pricing .price {
    font-size: 1.8rem;
  }
  #pricing .price .text-success {
    font-size: 2rem;
  }
  #pricing .badge {
    font-size: 0.75rem;
    padding: 0.4em 1em;
  }
}
