/* Mint Orlando Brand Colors & Variables */
:root {
  --mint-primary: #0a8f3f;
  --mint-accent: #14b868;
  --mint-light: #e8f8f1;
  --mint-dark: #064d24;
  --mint-gradient: linear-gradient(135deg, #0a8f3f 0%, #14b868 100%);
  --mint-gradient-hover: linear-gradient(135deg, #064d24 0%, #0a8f3f 100%);
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --shadow-sm: 0 2px 8px rgba(10, 143, 63, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 143, 63, 0.12);
  --shadow-lg: 0 8px 32px rgba(10, 143, 63, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.5rem; }
}

/* Navigation */
.navbar-mint {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 1rem 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-mint.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.navbar-brand-mint {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--mint-primary) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.navbar-brand-mint:hover {
  color: var(--mint-accent) !important;
  transform: translateY(-2px);
}

.navbar-brand-mint .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--mint-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.nav-link-mint {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link-mint:hover {
  color: var(--mint-primary) !important;
  background: var(--mint-light);
}

.nav-link-mint.active {
  color: var(--mint-primary) !important;
  background: var(--mint-light);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(10, 143, 63, 0.05) 0%, rgba(20, 184, 104, 0.05) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm-20 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10z' fill='%230a8f3f' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--mint-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Buttons */
.btn-mint {
  background: var(--mint-gradient);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.btn-mint:hover {
  background: var(--mint-gradient-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-mint-outline {
  background: transparent;
  color: var(--mint-primary);
  border: 2px solid var(--mint-primary);
  padding: 0.875rem 2.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.btn-mint-outline:hover {
  background: var(--mint-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-group-hero {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Feature Cards */
.features-section {
  padding: 6rem 0;
  background: var(--mint-gradient);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--mint-primary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.75rem;
  font-weight: 800;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.feature-icon i {
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Routes Section */
.routes-section {
  padding: 6rem 0;
  background: var(--mint-light);
}

.route-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  padding: 2.5rem 2rem;
  text-align: center;
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mint-accent);
}

.route-icon-lg {
  width: 90px;
  height: 90px;
  background: var(--mint-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.route-icon-lg i {
  color: white;
}

.route-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.route-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.route-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  flex: 1;
}

.route-link {
  color: var(--mint-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: var(--transition);
}

.route-link:hover {
  color: var(--mint-accent);
  gap: 0.75rem;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: var(--mint-gradient);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.stat-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
  color: white;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: white;
}

.cta-card {
  background: var(--mint-gradient);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10z' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E");
}

.cta-card h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: white;
  color: var(--mint-primary);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--mint-primary);
}

/* Footer */
.footer-mint {
  background: linear-gradient(180deg, #064d24 0%, #043319 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2rem;
}

.footer-heading {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.footer-link:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-icon-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin-right: 0.75rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-icon-link:hover {
  background: var(--mint-accent);
  transform: translateY(-3px);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Utility Classes */
.text-mint {
  color: var(--mint-primary) !important;
}

.bg-mint {
  background: var(--mint-gradient) !important;
}

.bg-mint-light {
  background: var(--mint-light) !important;
}

.shadow-mint {
  box-shadow: var(--shadow-md) !important;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-heading {
    font-size: 2.25rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 0 3rem;
  }
  
  .btn-group-hero {
    flex-direction: column;
  }
  
  .btn-mint,
  .btn-mint-outline,
  .btn-white {
    width: 100%;
    justify-content: center;
  }
  
  .features-section,
  .routes-section,
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-card {
    padding: 3rem 2rem;
  }
}
/* User Menu Dropdown */
.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu {
    animation: dropdownFadeIn 0.2s ease-in-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 0 0.5rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #e8f8f1 0%, #d4f0e0 100%);
    color: var(--mint-primary);
    transform: translateX(4px);
}

.dropdown-item i {
    width: 20px;
}

/* Enhanced User Menu Dropdown - Clean Circular Design */
#userDropdown {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(10, 143, 63, 0.3);
}

#userDropdown:hover {
    background: var(--mint-dark) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(10, 143, 63, 0.5);
}

#userDropdown:active {
    transform: scale(1.05);
}

.dropdown-menu {
    animation: dropdownFadeIn 0.2s ease-in-out;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50 !important;
}

.dropdown-item:hover {
    background: #f0f7f5 !important;
    color: #2c3e50 !important;
}

.dropdown-item:active,
.dropdown-item:focus {
    background: #e8f8f1 !important;
    color: #2c3e50 !important;
}

.dropdown-item i {
    transition: transform 0.2s ease;
    color: #6c757d !important;
}

.dropdown-item:hover i {
    transform: translateX(3px);
    color: var(--mint-primary) !important;
}
