/* css/style.css - Updated with refreshed styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #7B2638;      /* Refined darker maroon */
  --primary-dark: #5a1c29; /* Darker shade for hover effects */
  --primary-light: #f8f2f4; /* Very light maroon for backgrounds */
  --secondary: #333333;    /* Dark gray for text */
  --light: #f8f9fa;        /* Light gray background */
  --text-dark: #242424;    /* Dark text color */
  --text-light: #ffffff;   /* Light text color */
  --section-padding: 5rem 0; /* Standardized section padding */
  --transition: all 0.3s ease; /* Standard transition */
  --shadow: 0 5px 15px rgba(0,0,0,0.1); /* Subtle shadow */
  --radius: 4px;           /* Standard border radius */
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--secondary);
  background-color: #FFFFFF;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  font-weight: 600;
}

/* Utility Classes */
.bg-maroon {
  background-color: var(--primary) !important;
}

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

.btn-maroon {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  transition: var(--transition);
  font-weight: 500;
  padding: 10px 25px;
  border-radius: var(--radius);
}

.btn-maroon:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-light-outline-maroon {
  background-color: var(--light);
  color: var(--primary);
  border: 1px solid var(--primary);
  font-weight: 600;
  transition: var(--transition);
  padding: 10px 25px;
  border-radius: var(--radius);
}

.btn-light-outline-maroon:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Header & Navigation */
.header-top-bar {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1.25rem 0;
  box-shadow: var(--shadow);
}

.header-top-bar a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.header-top-bar a:hover {
  text-decoration: none;
  opacity: 0.85;
}

.header-site-title a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.main-nav {
  background-color: rgba(248, 249, 250, 0.95);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-nav .nav-link {
  color: var(--text-dark);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  padding: 1rem 1.25rem;
  position: relative;
  transition: var(--transition);
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.main-nav .nav-link:hover::after, 
.main-nav .nav-link.active::after {
  width: 70%;
}

.main-nav .nav-link.active,
.main-nav .nav-item.show .nav-link {
  color: var(--primary);
  font-weight: 600;
}

.main-nav .dropdown-menu {
  background-color: var(--light);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
  border-radius: var(--radius);
  margin-top: 0.5rem;
}

.main-nav .dropdown-item {
  color: var(--text-dark);
  transition: var(--transition);
  padding: 0.75rem 1.5rem;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus,
.main-nav .dropdown-item.active {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  background-size: cover;
  background-position: center center;
  padding: 150px 0;
  position: relative;
  color: var(--text-light);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

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

.hero-section h1 {
  font-size: 3rem;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .btn {
  font-size: 1.125rem;
  padding: 12px 30px;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.hero-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Section Styling */
.section-title {
  font-size: 2.25rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}

.hr-dark {
  border-top: 2px solid var(--text-dark);
  width: 80px;
  margin: 0 auto 2rem auto;
  opacity: 1;
}

.hr-maroon {
  border-top: 3px solid var(--primary);
  width: 120px;
  margin: 0.75rem auto 2.5rem auto;
  opacity: 1;
}

.content-section {
  padding: var(--section-padding);
}

.content-section-bg-light {
  background-color: var(--light);
}

.content-section-bg-image {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: var(--text-light);
}

.content-section-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.content-section-bg-image h2, 
.content-section-bg-image p {
  position: relative;
  z-index: 1;
  color: var(--text-light);
}

.content-section-bg-image h2 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Footer */
.footer-main {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 4rem 0 3rem;
  position: relative;
}

.footer-main h6 {
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-main a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-main a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

.footer-main ul {
  list-style: none;
  padding-left: 0;
}

.footer-main .nav-link {
  padding: 0.35rem 0;
  color: var(--text-light);
  text-transform: uppercase;
  font-size: 14px;
  transition: var(--transition);
}

.footer-main .nav-link:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.business-hours dt, .business-hours dd {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.payment-icons img {
  max-height: 30px;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: var(--transition);
  opacity: 0.9;
}

.payment-icons img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.footer-bottom-bar {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 1.25rem 0;
  font-size: 0.875rem;
}

.footer-bottom-bar a {
  color: var(--primary-light);
  text-decoration: underline;
  transition: var(--transition);
}

.footer-bottom-bar a:hover {
  color: var(--text-light);
}

/* Gallery */
.gallery-item {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  transition: var(--transition);
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Page Specific Titles */
.page-title-bar {
  background-color: var(--light);
  padding: 1.5rem 0;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 2rem;
}

.page-title-bar h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0;
}

.innerPageTitle { 
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  text-transform: uppercase;
  padding: 1.5rem 0;
  text-align: center;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.05);
}

#innerBar.lineInnerBar {
  margin-top: 0;
  margin-bottom: 2rem;
  background-color: var(--primary-light);
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
  position: relative;
}

/* Content Images */
.content-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

a:hover .content-image {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Contact Form */
.contact-form-section {
  background-color: var(--light);
  padding: 4rem 0;
}

.contact-form-container {
  border: 2px solid var(--primary);
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-container .form-control {
  border: 1px solid #ddd;
  padding: 0.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-form-container .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(123, 38, 56, 0.25);
}

/* Partner Logos */
.partner-logo {
  opacity: 0.8;
  transition: var(--transition);
  filter: grayscale(20%);
  max-height: 70px;
  object-fit: contain;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

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

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

/* Lightbox Styles */
.ekko-lightbox {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.ekko-lightbox-container {
  position: relative;
}

.ekko-lightbox-item.fade {
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

.ekko-lightbox-item.fade.show {
  opacity: 1;
}

.ekko-lightbox .modal-dialog {
  max-width: 90%;
}

.ekko-lightbox .modal-content {
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.ekko-lightbox .modal-header {
  border: none;
  padding-right: 0;
  padding-top: 0;
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 20;
}

.ekko-lightbox .close {
  opacity: 0.8;
  color: #fff;
  background-color: var(--primary);
  padding: 8px 15px;
  border-radius: 50%;
  border: 2px solid white;
  font-size: 1.2rem;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
  transition: var(--transition);
}

.ekko-lightbox .close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.ekko-lightbox .modal-title {
  color: white;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.ekko-lightbox .modal-body {
  padding: 0;
}

.ekko-lightbox-nav-overlay {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.ekko-lightbox-nav-overlay a {
  flex: 1;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s;
  color: #fff;
  font-size: 30px;
  z-index: 100;
}

.ekko-lightbox-nav-overlay a span {
  padding: 10px;
  background-color: rgba(0,0,0,0.4);
  border-radius: 50%;
}

.ekko-lightbox-nav-overlay a:hover {
  text-decoration: none;
}

.ekko-lightbox-nav-overlay a:focus {
  outline: none;
}

.ekko-lightbox-nav-overlay a:hover {
  opacity: 1;
}

.ekko-lightbox-nav-overlay a.prev {
  justify-content: flex-start;
  padding-left: 15px;
}

.ekko-lightbox-nav-overlay a.next {
  justify-content: flex-end;
  padding-right: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  .hero-section {
    padding: 100px 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .innerPageTitle {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .header-site-title a {
    font-size: 1.5rem;
  }
  
  .content-section-bg-image {
    background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .gallery-item img {
    height: 200px;
  }
  
  .hero-section .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Add these styles to your style.css file to improve the business hours display */

/* Business Hours Container */
.business-hours-container {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .business-hours-container .row {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .business-hours-container .row:last-child {
    margin-bottom: 0;
  }
  
  .business-hours-container strong {
    color: var(--text-dark);
  }
  
  .business-hours-container .small {
    color: var(--primary);
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.85rem;
  }
  
  /* Contact Icon Improvements */
  .contact-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    margin-right: 1rem;
  }
  
  /* Map Container Improvements */
  .map-wrapper {
    height: 400px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .map-container h2 {
    margin-bottom: 0.5rem;
  }
  
  /* Improved Payment Icons */
  .payment-icons {
    margin-top: 1.5rem;
  }
  
  .payment-icons img {
    max-height: 35px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    filter: grayscale(20%);
    opacity: 0.9;
  }
  
  .payment-icons img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
  }
  
  /* Footer Business Hours */
  .footer-main .business-hours {
    color: #fff;
    margin-bottom: 0.5rem;
  }
  
  .footer-main .business-hours dt {
    font-weight: 600;
    color: #f8f9fa;
  }
  
  .footer-main .business-hours dd {
    text-align: right;
    margin-bottom: 0.25rem;
  }
  
  /* Contact Section Responsive Adjustments */
  @media (max-width: 768px) {
    .contact-info {
      margin-bottom: 2rem;
    }
    
    .map-wrapper {
      height: 300px;
    }
  }

  /* Enhanced Header and Navigation Styles */

/* Header Structure */
.site-header {
    position: relative;
    z-index: 1030; /* Ensure header appears above content */
  }
  
  /* Top Bar Styling */
  .header-top-bar {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 0.5rem 0;
  }
  
  .header-site-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
  }
  
  .header-site-title a {
    color: var(--text-light);
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-block;
  }
  
  .header-site-title a:hover {
    opacity: 0.9;
    text-decoration: none;
  }
  
  /* Contact Info in Header */
  .header-contact-info {
    font-size: 0.95rem;
  }
  
  .header-contact-info a {
    color: var(--text-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
  }
  
  .header-contact-info a:hover {
    opacity: 0.9;
    text-decoration: none;
  }
  
  .contact-phone {
    font-weight: 600;
  }
  
  .contact-address {
    font-size: 0.9rem;
  }
  
  /* Main Navigation */
  .main-nav {
    background-color: rgba(248, 249, 250, 0.97);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: all 0.3s ease;
  }
  
  .main-nav.sticky-top {
    background-color: rgba(248, 249, 250, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Brand logo for mobile */
  .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.2rem;
  }
  
  .navbar-brand:hover {
    color: var(--primary-dark);
  }
  
  /* Navigation Links */
  .main-nav .navbar-nav {
    padding: 0.5rem 0;
  }
  
  .main-nav .nav-item {
    position: relative;
    margin: 0 0.2rem;
  }
  
  .main-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    padding: 1rem 1.2rem;
    position: relative;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  /* Underline animation for nav items */
  .main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
  }
  
  .main-nav .nav-link:hover::after,
  .main-nav .nav-link.active::after,
  .main-nav .nav-item:hover > .nav-link::after {
    width: 60%;
    opacity: 1;
  }
  
  .main-nav .nav-link:hover,
  .main-nav .nav-link.active,
  .main-nav .nav-item:hover > .nav-link {
    color: var(--primary);
  }
  
  /* Dropdown Menu */
  .main-nav .dropdown-menu {
    margin-top: 0;
    border: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 220px;
    background-color: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--primary);
    transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    display: block;
    transition: all 0.3s ease;
  }
  
  .main-nav .nav-item:hover .dropdown-menu {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  
  .main-nav .dropdown-item {
    padding: 0.6rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    transition: all 0.2s ease;
  }
  
  .main-nav .dropdown-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateY(-50%);
    opacity: 0;
  }
  
  .main-nav .dropdown-item:hover,
  .main-nav .dropdown-item:focus,
  .main-nav .dropdown-item.active {
    background-color: rgba(248, 242, 244, 0.7);
    color: var(--primary);
    padding-left: 2rem;
  }
  
  .main-nav .dropdown-item:hover::before,
  .main-nav .dropdown-item:focus::before,
  .main-nav .dropdown-item.active::before {
    width: 10px;
    opacity: 1;
  }
  
  .main-nav .dropdown-divider {
    margin: 0.25rem 0;
    border-color: rgba(0, 0, 0, 0.05);
  }
  
  /* Navigation CTA Button */
  .nav-btn {
    padding: 0.5rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(123, 38, 56, 0.15);
    transition: all 0.3s ease;
  }
  
  .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 38, 56, 0.2);
  }
  
  /* Mobile Toggle Button */
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }
  
  .navbar-toggler:hover {
    background-color: rgba(123, 38, 56, 0.05);
  }
  
  .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%28123, 38, 56, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  /* Breadcrumb Styling */
  .breadcrumb-container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(248, 249, 250, 0.7);
  }
  
  .breadcrumb {
    font-size: 0.85rem;
    padding: 0.5rem 0;
    margin: 0;
  }
  
  .breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .breadcrumb-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
  }
  
  .breadcrumb-item.active {
    color: var(--text-dark);
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    color: #aaa;
  }
  
  /* Mobile Navigation Specific Styles */
  @media (max-width: 991.98px) {
    .main-nav {
      padding: 0.5rem 0;
    }
    
    .main-nav .navbar-collapse {
      max-height: 80vh;
      overflow-y: auto;
      background-color: #fff;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-top: 0.5rem;
    }
    
    .main-nav .navbar-nav {
      padding: 0;
    }
    
    .main-nav .nav-item {
      margin: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .main-nav .nav-item:last-child {
      border-bottom: none;
    }
    
    .main-nav .nav-link {
      padding: 0.85rem 1rem;
      display: flex;
      align-items: center;
    }
    
    .main-nav .nav-link::after {
      display: none;
    }
    
    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
      background-color: rgba(123, 38, 56, 0.05);
      color: var(--primary);
      border-radius: 4px;
    }
    
    .main-nav .dropdown-menu {
      position: static;
      float: none;
      width: 100%;
      box-shadow: none;
      border: none;
      border-radius: 0;
      background-color: rgba(0, 0, 0, 0.01);
      padding: 0 0 0.5rem 0;
      margin-top: 0;
      margin-bottom: 0.5rem;
      visibility: visible;
      opacity: 1;
      transform: none;
      display: none;
    }
    
    .main-nav .dropdown-menu.show {
      display: block;
    }
    
    .main-nav .dropdown-item {
      padding: 0.7rem 1rem 0.7rem 2.5rem;
      font-size: 0.9rem;
    }
    
    .main-nav .dropdown-item::before {
      left: 1.5rem;
    }
    
    .main-nav .dropdown-item:hover,
    .main-nav .dropdown-item:focus,
    .main-nav .dropdown-item.active {
      padding-left: 3rem;
    }
    
    .header-site-title {
      font-size: 1.2rem;
    }
    
    .header-contact-info a {
      font-size: 0.85rem;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 575.98px) {
    .header-site-title {
      font-size: 1.1rem;
    }
    
    .header-contact-info {
      justify-content: center!important;
      text-align: center;
    }
    
    .navbar-brand {
      font-size: 1.1rem;
    }
  }
  
  /* Header Scroll Animation */
  @keyframes headerSlideDown {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .main-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    animation: headerSlideDown 0.5s forwards;
  }
  