@charset "UTF-8";

/* ==========================================================================
   Knight Coach Custom Styles
   ========================================================================== */

/* Typography */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 0 !important;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }ser
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Colors */
:root {
  --primary-color: #1e3a8a;
  --primary-dark: #1e40af;
  --secondary-color: #f59e0b;
  --light-gray: #f8fafc;
  --dark-gray: #64748b;
  --text-dark: #1e293b;
  --border-light: #e2e8f0;
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: none;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

/* Section Styling */
.section-title {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 101%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

/* Navigation Color Variables (defined in :root for consistency) */
:root {
  --nav-primary-color: #1e3a8a;
  --nav-secondary-color: #3b82f6;
  --nav-accent-color: #f59e0b;
  --nav-text-light: #ffffff;
  --nav-text-dark: #1f2937;
  --nav-hover-bg: rgba(255, 255, 255, 0.1);
  --nav-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navbar Styling */
#header.navbar {
  box-shadow: var(--nav-shadow);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
  padding: 0.75rem 0;
}

/* Sticky header enhancement */
#header.navbar.sticky-top {
  background: rgba(30, 58, 138, 0.95);
  backdrop-filter: blur(20px);
}

/* Container improvements */
#header .container {
  position: relative;
}

/* Enhanced Brand/Logo Styling */
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--nav-text-light) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-brand:hover {
  color: var(--nav-accent-color) !important;
  transform: scale(1.05);
}

.navbar-brand img {
  height: 75px !important;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.navbar-brand:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Add subtle glow effect to brand */
.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nav-accent-color);
  transition: width 0.3s ease;
}

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

/* Navigation Menu */
.navbar-nav .nav-link {
  color: #2f2f2f !important;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.75rem 1.25rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.navbar-nav .nav-link:hover {
  background: var(--nav-hover-bg);
  color: var(--nav-accent-color) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link[aria-current="page"] {
  background: rgba(245, 158, 11, 0.2);
  color: var(--nav-accent-color) !important;
  font-weight: 600;
}

/* Subtle underline effect for nav links */
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--nav-accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 80%;
}

/* Enhanced Dropdown Menu */
.navbar-nav .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.75rem;
  margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
  color: var(--nav-text-dark);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
  background: var(--nav-primary-color);
  color: white;
  transform: translateX(5px);
}

/* Enhanced Mobile Menu (navbar-toggler) */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
  outline: none;
}

.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, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.75em;
  height: 1.75em;
}

/* Mobile Menu Styling */
@media (max-width: 991.98px) {
  .navbar-collapse {
    backdrop-filter: blur(20px);
    margin-top: 1rem;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  
  .navbar-collapse .navbar-nav .nav-link {
    text-align: center;
    margin: 0.25rem 0;
  }
  
  .navbar-collapse .navbar-nav .nav-link:hover {
    transform: none;
    background: rgba(245, 158, 11, 0.2);
  }
  
  .navbar-collapse .search-form {
    margin-top: 1rem;
    min-width: auto;
  }
}

/* Fixed Navbar Enhancements */
.navbar.fixed-top {
  z-index: 1050;
}

/* Responsive Typography for Navigation */
@media (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .navbar-brand img {
    height: 60px !important;
  }
  
  #header .search-form {
    min-width: 200px;
  }
  
  .navbar-nav .nav-link {
    font-size: 1rem;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  #header.navbar {
    background: #000000;
    border-bottom: 2px solid #ffffff;
  }
  
  .navbar-nav .nav-link {
    color: #ffffff !important;
  }
  
  .navbar-nav .nav-link:hover {
    background: #333333;
    color: #ffff00 !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .navbar-brand,
  .navbar-nav .nav-link,
  .navbar-toggler,
  .search-form .btn {
    transition: none;
  }
}

/* Additional Visual Enhancements */
.navbar-static-top {
  margin-bottom: 2rem;
}

/* Focus states for accessibility */
.navbar-nav .nav-link:focus {
  outline: 2px solid var(--nav-accent-color);
  outline-offset: 2px;
}

.navbar-toggler:focus-visible {
  outline: 2px solid var(--nav-accent-color);
  outline-offset: 2px;
}

/* Navigation hover effects for better UX */
.navbar-nav .nav-item {
  position: relative;
}

/* Subtle shadow on navigation hover */
.navbar-nav .nav-link:hover {
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   HERO SLIDER SECTION
   ========================================================================== */

.hero-slider {
  position: relative;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider .carousel-item {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slider .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-slider .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.hero-head-main {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-head-sub {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  margin-top: 1rem;
}

/* Hero Placeholders */
.hero-placeholder, .image-placeholder, .vehicle-image-placeholder {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border-radius: 8px;
}

.hero-placeholder {
  height: 100vh;
  min-height: 600px;
}

.hero-placeholder-content, .placeholder-content {
  text-align: center;
  color: #64748b;
}

.hero-placeholder-content h3, .placeholder-content h4 {
  color: #475569;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   WELCOME SECTION
   ========================================================================== */

.welcome-section {
  padding: 80px 0;
}

.welcome-content {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
  padding: 80px 0;
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  max-width: 80px;
  height: auto;
  margin: 0 auto;
}

.service-icon-placeholder {
  color: var(--primary-color);
  margin: 0 auto;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
  padding: 80px 0;
}

.features-content h4 {
  color: var(--primary-color);
  margin-top: 2rem;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}


/* ==========================================================================
   PAGE HEADER
   ========================================================================== */

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 100px 0 60px;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.company-story, .mission-section, .values-section {
  padding: 80px 0;
}

.value-card, .safety-feature, .contact-method {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.value-card:hover, .safety-feature:hover, .contact-method:hover {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}

.value-icon-placeholder, .safety-icon, .contact-icon {
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

.team-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.team-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-bio {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

/* Responsive story image width for About page */
.company-story img.img-fluid {
  width: 75%;
}

@media (max-width: 767.98px) {
  .company-story img.img-fluid {
    width: 100%;
  }
}

/* ==========================================================================
   FLEET PAGE STYLES
   ========================================================================== */

.fleet-intro, .fleet-showcase, .safety-section {
  padding: 80px 0;
}

.fleet-item {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
}

.fleet-divider {
  border-color: var(--border-light);
  margin: 4rem 0;
}

.vehicle-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.vehicle-capacity {
  font-size: 1.125rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.vehicle-description {
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
}

.vehicle-image-placeholder {
  min-height: 400px;
}

/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

.services-intro, .main-services, .service-categories, .process-section {
  padding: 80px 0;
}

.service-showcase {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
}

.service-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: black;
}

.service-divider {
  border-color: var(--border-light);
  margin: 4rem 0;
}

/* Service Categories */
.category-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.category-icon {
  max-width: 80px;
  height: auto;
  margin: 0 auto;
}

.category-icon-placeholder {
  color: var(--primary-color);
  margin: 0 auto;
}

/* Process Steps */
.process-step {
  position: relative;
  padding: 2rem 1rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.process-step h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--dark-gray);
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-info h6 {
  margin: 0;
  color: var(--text-dark);
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-intro, .contact-locations, .contact-forms, .additional-contact {
  padding: 80px 0;
}

.location-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.location-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.location-address address {
  color: var(--dark-gray);
  line-height: 1.6;
}

.location-phone a, .location-email a {
  color: var(--text-dark);
  font-weight: 500;
}

.location-phone a:hover, .location-email a:hover {
  color: var(--primary-color);
}

.location-hours {
  color: var(--dark-gray);
}

/* Contact Forms */
.contact-form-section {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  height: 100%;
}

.form-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.form-description {
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.form-placeholder .alert {
  border-radius: 8px;
}

/* Payment Methods */
.payment-methods {
  padding: 2rem 0;
}

.payment-icon {
  max-height: 40px;
  width: auto;
}

.payment-text span {
  font-size: 1rem;
  font-weight: 500;
}

/* ==========================================================================
   FOOTER DESIGN
   ========================================================================== */
   
.c3-link {
	display: flex;
    align-items: center;
    margin-top: 0 !important;
    margin-bottom: 0;
    padding-bottom: 0;
    height: 100%;
    justify-content: flex-end;
}

.c3-link a {
	color: #717171;
    font-weight: 600;
}

.c3-link a:hover {
	color: #3d3d3d;
}

.copyright {
	display: flex;
    align-items: center;
    margin-top: 0 !important;
    margin-bottom: 0;
    padding-bottom: 0;
    height: 100%;
    justify-content: flex-start;
}


/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Desktop Large */
@media (min-width: 1280px) {
  .hero-head-main {
    font-size: 4.5rem;
  }
  .hero-head-sub {
    font-size: 1.75rem;
  }
}

/* Desktop */
@media (min-width: 960px) {
  .hero-head-main {
    font-size: 4rem;
  }
  .hero-head-sub {
    font-size: 1.5rem;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-head-main {
    font-size: 3rem;
  }
  .hero-head-sub {
    font-size: 1.25rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .c3-link {
  	display:flex;
  	justify-content: center;
  	align-items: center;
  	text-align:center;
  }
  
  .copyright {
  	display:flex;
  	justify-content: center;
  	align-items: center;
  	text-align:center;
  }
}

/* Mobile Large */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-head-main {
    font-size: 2.5rem;
  }
  .hero-head-sub {
    font-size: 1.125rem;
  }
  
  .page-header {
    padding: 60px 0 40px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
 .c3-link {
  	display:flex;
  	justify-content: center;
  	align-items: center;
  	text-align:center;
  }
  
  .copyright {
  	display:flex;
  	justify-content: center;
  	align-items: center;
  	text-align:center;
  }  
}

/* Mobile */
@media (max-width: 575.98px) {
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-slider .carousel-item {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-head-main {
    font-size: 2rem;
  }
  
  .hero-head-sub {
    font-size: 1rem;
  }
  
  .page-header {
    padding: 40px 0 30px;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .service-card, .contact-form-section, .fleet-item {
    padding: 2rem 1.5rem;
  }
  
  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .c3-link {
  	display:flex;
  	justify-content: center;
  	align-items: center;
  	text-align:center;
  }
  
  .copyright {
  	display:flex;
  	justify-content: center;
  	align-items: center;
  	text-align:center;
  } 
}

/* Extra Small Mobile */
@media (max-width: 350px) {
  .hero-head-main {
    font-size: 1.5rem;
  }
  
  .hero-head-sub {
    font-size: 0.9rem;
  }
  
  .page-header h1 {
    font-size: 1.5rem;
  }
  
  .c3-link {
  	display:flex;
  	justify-content: center;
  	align-items: center;
  	text-align:center;
  }
  
  .copyright {
  	display:flex;
  	justify-content: center;
  	align-items: center;
  	text-align:center;
  } 
}

/* Hide carousel controls on mobile */
@media (max-width: 767.98px) {
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    display: none !important;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

.bg-primary {
  background-color: var(--primary-color) !important;
}

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

.shadow-custom {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
}

.shadow-custom-lg {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
