/* RoadStar Activate - Custom Styles */

:root {
  --coral: #E07B54;
  --primary: #8B5CF6;
  --background: #1a1f35;
  --foreground: #f4f7fb;
  --card: #222842;
  --card-foreground: #f4f7fb;
  --primary: #f5a623;
  --primary-foreground: #1a1f35;
  --secondary: #2d3555;
  --muted: #2a3048;
  --muted-foreground: #9ba3b8;
  --border: #3a4268;
  --text-body: #b8bfcc;
  --text-muted: #7a8299;
  --glow-orange: rgba(245, 166, 35, 0.5);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Navigation */
/* ===== Navbar ===== */
.navbar {
  background: rgba(21, 42, 70, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(21, 42, 70, 0.95);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--coral);
}


.navbar .dropdown-menu {
    background: #ebebeb;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem 0;
}

.navbar .dropdown-item {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #000000;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.navbar .dropdown-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
}


/* Dropdown animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu {
  animation: slideDown 0.3s ease forwards;
}


/* ===== Mobile dropdown fixes ===== */
@media (max-width: 991.98px) {
  /* Prevent dropdown click from collapsing navbar */
  .navbar-nav .dropdown-toggle {
    pointer-events: none !important;
  }

  .navbar-nav .dropdown-toggle::after {
    pointer-events: auto !important;
    margin-left: 0.5rem;
  }

  .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
  }

  .navbar-collapse .dropdown-menu {
    transition: none !important;
    animation: none !important;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }

  .navbar-collapse {
    overflow-y: auto;
    max-height: 80vh;
  }

  .navbar .nav-link {
    padding: 0.75rem 0;
  }
}

/* Rotate caret when open */
.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/*
.navbar-custom {
  background: rgba(26, 31, 53, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 66, 104, 0.5);
  padding: 0.75rem 0;
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
*/

.logo-icon {
  width: 32px;
  height: 32px;
  /*background: var(--primary);*/
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-foreground);
}

.brand-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

/*
.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}
*/


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

/*
.nav-link-custom {
  color: var(--muted-foreground) !important;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary) !important;
}
*/


/* Buttons */
.btn-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #d4940f 100%);
  color: var(--primary-foreground);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 30px -5px var(--glow-orange);
  transition: all 0.3s;
  text-decoration: none;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px -5px rgba(245, 166, 35, 0.7);
  color: var(--primary-foreground);
}

.btn-hero-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(245, 166, 35, 0.1);
  color: var(--primary);
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: color 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--foreground);
}

/* Hero Section */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: linear-gradient(135deg, var(--background) 0%, #232a47 50%, #2a2f4a 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.badge-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
}

.text-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ffcc66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 650px;
  margin: 0 auto 2rem;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--foreground) 0%, var(--text-body) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Section Styling */
.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
}

@media (min-width: 992px) {
  .section-padding {
    padding: 8rem 0;
  }
}

.section-title {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
}

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

.text-body {
  color: var(--text-body) !important;
}

.text-muted-custom {
  color: var(--text-muted);
}

/* Cards */
.card-glow {
  background: linear-gradient(180deg, var(--card) 0%, #1f2440 100%);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 0 0 1px var(--border), 0 4px 20px -4px rgba(0, 0, 0, 0.3);
}

.feature-card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.3s;
  height: 100%;
}

.feature-card:hover {
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 0 30px -10px var(--glow-orange);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--text-body);
  margin: 0;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.comparison-table td {
  font-size: 0.875rem;
}

.comparison-table tr:hover {
  background: rgba(45, 53, 85, 0.3);
}

.check-icon {
  color: #22c55e;
}

.x-icon {
  color: #ef4444;
}

/* Divider */
.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  opacity: 0.5;
}

/* Background sections */
.bg-card-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* CTA Section */
.cta-card {
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, transparent 100%);
  z-index: 0;
}

.cta-card .content {
  position: relative;
  z-index: 1;
}

/* Footer */
.footer-custom {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer-brand span {
  color: var(--primary);
}

.footer-description {
  font-size: 0.875rem;
  color: var(--text-body);
  max-width: 400px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: var(--text-body);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Shift cards */
.shift-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
}

.shift-from {
  color: var(--text-muted);
  text-decoration: line-through;
}

.shift-to {
  color: var(--foreground);
  font-weight: 600;
}

/* Bullet points */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.bullet-dot-primary {
  background: var(--primary);
}

.bullet-dot-muted {
  background: var(--muted-foreground);
}

/* Utility classes */
.line-through {
  text-decoration: line-through;
}

.opacity-60 {
  opacity: 0.6;
}

/* Responsive hamburger menu colors */
.navbar-toggler-custom {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-custom:focus {
  box-shadow: none;
}

.navbar-toggler-icon-custom {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(244, 247, 251, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
}

.navbar-collapse {
  background: var(--background);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent;
    padding: 0;
    margin-top: 0;
  }
}
/**************scheduleModal ***************/
#scheduleModal .modal-title{
  color:#212121;
}
#scheduleModal label{
  color:#212121;
}
#scheduleModal #submitBtn{
  background:linear-gradient(135deg, #ffc107, #e9b823);
  padding: 10px 20px;
}

