/* Stellar Colors */

.filters .input-group-addon,
.search .input-group-addon {
  background-color: #0f3880;
}

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #0f3880;
  border-color: #0f3880;
}

.panel-primary {
  border-color: #0f3880;
}

.btn-primary {
  background-color: #0f3880;
  border-color: #0f3880;
}

.text-primary,
a.list-group-item-info,
button.list-group-item-info,
.btn-link,
.panel-info > .panel-heading {
  color: #0f3880;
}
.main-home {
  background-color: white;
}
#content {
  background-color: #f5f8fa;
}

.badge {
  display: none;
}

/* end Stellar Colors */

/* ============================================
   HEADER STYLES - DESKTOP
   ============================================ */

header {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  position: relative;
  z-index: 3;
  background-color: #f9fafb;
  border-bottom: 1px solid #d9e0e8;
  box-shadow: 0 2px 20px -2px rgba(28, 57, 95, 0.1);
  overflow: visible;
}

header * {
  margin: 0 !important;
  padding: 0;
  box-sizing: border-box;
}

header a,
header a:hover {
  text-decoration: none;
}

header .header-container {
  display: block;
  width: 100%;
}

header .header-nav {
  max-width: 1920px;
  margin: 0 auto !important;
  padding: 0 16px;
}

header .header-inner {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
header .logo-column {
  flex-shrink: 0;
}

header .logo-column a {
  display: flex;
  align-items: center;
}

header .logo-column object,
header .logo-column img {
  height: 48px;
  width: auto;
}

/* Main Nav */
header .nav-column {
  display: flex;
  align-items: center;
}

header .nav-column .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

header .nav-column .nav-list > li {
  position: relative;
}

header .nav-column .nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px !important;
  font-size: 16px;
  font-weight: 500;
  color: #5c708a;
  transition: color 0.2s;
  line-height: 24px;
  white-space: nowrap;
}

header .nav-column .nav-list > li > a:hover {
  color: #11233b;
}

header .nav-column .nav-list > li .nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px !important;
  font-size: 16px;
  font-weight: 500;
  color: #5c708a;
  transition: color 0.2s;
  line-height: 24px;
  cursor: default;
  user-select: none;
  white-space: nowrap;
}

header .nav-column .nav-list > li .nav-dropdown-trigger:hover {
  color: #11233b;
}

header .nav-column .nav-list > li .nav-dropdown-trigger .fa {
  font-size: 14px;
  margin-left: 2px !important;
}

/* Mega Menu */
header .mega-menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: visibility 0.2s, opacity 0.2s;
  z-index: 9999;
}

header .mega-menu.mega-menu-wide,
header .mega-menu.mega-menu-narrow {
  width: 850px;
}

header .mega-menu.mega-menu-open {
  visibility: visible;
  opacity: 1;
}

header .mega-menu-inner {
  padding: 32px !important;
}

header .mega-menu-grid {
  display: grid;
  gap: 32px;
}

header .mega-menu-grid.two-col {
  grid-template-columns: 1fr 1fr;
}

header .mega-menu-grid.one-col {
  grid-template-columns: 1fr;
}

header .mega-menu-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: #11233b;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 20px;
  margin-bottom: 16px !important;
}

header .mega-menu-section ul {
  list-style: none;
}

header .mega-menu-section ul li {
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

header .mega-menu-section ul li:first-child {
  margin-top: 0 !important;
}

header .mega-menu-section h3 .fa {
  font-size: 12px;
  margin-right: 4px !important;
}

header .mega-menu-section ul li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px !important;
  margin: 0 -8px !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #11233b;
  line-height: 24px;
  transition: background-color 0.2s, color 0.2s;
}

header .mega-menu-section ul li a:hover {
  background-color: rgba(233, 237, 242, 0.8);
  color: #1c395f;
}

/* Menu item icon badge */
header .menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px !important;
  background-color: rgba(28, 57, 95, 0.1);
  color: #1c395f;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px !important;
  transition: background-color 0.2s, color 0.2s;
}

header .mega-menu-section ul li a:hover .menu-icon {
  background-color: #1c395f;
  color: #fff;
}

/* Menu item text column */
header .menu-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  flex: 1;
}

header .menu-title {
  font-size: 14px;
  font-weight: 500;
  color: #11233b;
  line-height: 24px;
}

header .mega-menu-section ul li a:hover .menu-title {
  color: #1c395f;
}

header .menu-desc {
  font-size: 12px;
  font-weight: 400;
  color: #5c708a;
  line-height: 16px;
  margin-top: 2px !important;
}

header .mega-menu-section ul li a:hover .menu-desc {
  color: rgba(17, 35, 59, 0.7);
}

/* Right Column - Phone & Book Now */
header .right-column {
  display: flex;
  align-items: center;
  gap: 12px;
}

header .phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px !important;
  font-size: 14px;
  font-weight: 600;
  color: #11233b;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

header .phone-link:hover {
  background-color: #f5a824;
  color: #11233b;
}

header .phone-link .fa {
  font-size: 16px;
}

header .book-now-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px !important;
  font-size: 14px;
  font-weight: 600;
  color: #11233b;
  background-color: #f5a824;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

header .book-now-button:hover {
  background-color: rgba(245, 168, 36, 0.9);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  color: #11233b;
}

/* Mobile overlay - hidden on desktop */
header .mobile-overlay {
  display: none;
}

/* Mobile menu toggle - hidden on desktop */
header .mobile-menu-toggle {
  display: none;
}

header .mobile-header-container {
  display: none;
}

/* ============================================
   HEADER RESPONSIVE MEDIA QUERIES
   ============================================ */

@media (max-width: 1535px) {
  header .nav-column {
    display: none;
  }

  header .right-column {
    display: none;
  }

  header .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }

  header .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: transparent;
  }

  header .mobile-overlay.active {
    display: block;
  }

  header .hamburger-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px !important;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #11233b;
  }

  header .hamburger-button .fa-times {
    display: inline;
  }

  header .mobile-header-container {
    display: none;
    border-top: 1px solid #d9e0e8;
    padding: 0 16px !important;
    background-color: #f9fafb;
    position: relative;
    z-index: 1000;
  }

  header .mobile-header-container.mobile-menu-open {
    display: block;
  }

  /* Mobile Nav */
  header .mobile-nav {
    padding: 16px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 4px !important;
  }

  header .mobile-nav-item {
  }

  header .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px !important;
    height: 48px;
    padding: 0 16px !important;
    font-size: 16px;
    font-weight: 400;
    color: #11233b;
    border-radius: 8px;
    transition: background-color 0.2s;
  }

  header .mobile-nav-link:hover,
  header .mobile-nav-link:active {
    background-color: #e9edf2;
    color: #11233b;
  }

  header .mobile-nav-link .fa {
    width: 20px;
    text-align: center;
    font-size: 18px;
    color: #5c708a;
  }

  header .mobile-nav-trigger {
    display: flex;
    align-items: center;
    gap: 12px !important;
    width: 100%;
    height: 48px;
    padding: 0 16px !important;
    font-size: 16px;
    font-weight: 400;
    color: #11233b;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s;
    text-align: left;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
  }

  header .mobile-nav-trigger:hover {
    background-color: rgba(0, 0, 0, 0.04);
  }

  header .mobile-nav-trigger > .fa:first-child {
    width: 20px;
    text-align: center;
    font-size: 18px;
    color: #5c708a;
  }

  header .mobile-chevron {
    margin-left: auto !important;
    color: #5c708a;
    font-size: 18px;
    transition: transform 0.2s;
  }

  header .mobile-has-dropdown.open .mobile-nav-trigger {
    background-color: #eff2f5;
  }

  header .mobile-has-dropdown.open .mobile-chevron {
    transform: rotate(180deg);
  }

  /* Mobile Submenu */
  header .mobile-submenu {
    display: none;
    padding: 0 0 8px 16px !important;
    margin-top: 8px !important;
  }

  header .mobile-has-dropdown.open .mobile-submenu {
    display: block;
  }

  header .mobile-section-header {
    display: flex;
    align-items: center;
    gap: 8px !important;
    height: 32px;
    padding: 0 16px !important;
    font-size: 12px;
    font-weight: 600;
    color: #5c708a;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  header .mobile-section-header .fa {
    font-size: 12px;
  }

  header .mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 12px !important;
    height: 40px;
    padding: 0 16px !important;
    margin-left: 8px !important;
    font-size: 14px;
    font-weight: 400;
    color: #11233b;
    line-height: 20px;
    border-radius: 8px;
    transition: background-color 0.2s;
  }

  header .mobile-sub-link:hover,
  header .mobile-sub-link:active {
    background-color: #e9edf2;
    color: #11233b;
  }

  header .mobile-sub-link .fa {
    width: 16px;
    text-align: center;
    font-size: 14px;
    color: #1c395f;
  }

  /* Mobile Book Now */
  header .mobile-book-now {
    padding: 16px 16px 0 !important;
  }

  header .mobile-book-now-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 32px !important;
    font-size: 16px;
    font-weight: 600;
    color: #11233b;
    background-color: #f5a824;
    border-radius: 12px;
    transition: background-color 0.2s;
  }

  header .mobile-book-now-button:hover {
    background-color: #e09b1f;
    color: #11233b;
  }
}


/* ============================================
   FOOTER STYLES
   ============================================ */

footer {
  font-family: system-ui, -apple-system, 'Inter', sans-serif;
  background-color: #122a49;
  color: #ffffff;
}

footer * {
  margin: 0 !important;
  padding: 0;
  box-sizing: border-box;
}

footer a,
footer a:hover {
  text-decoration: none;
}

footer .footer-container {
  display: block;
  width: 100%;
}

footer .footer-main {
  max-width: 1280px;
  margin: 0 auto !important;
  padding: 80px 32px !important;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 48px;
}

/* Info Column (spans 2) */
footer .footer-info-col {
  grid-column: span 2;
}

footer .footer-logo {
  display: inline-block;
  margin-bottom: 24px !important;
}

footer .footer-logo object {
  height: 80px;
  width: auto;
  display: block;
}

footer .footer-logo img {
  height: 80px;
  width: auto;
}

footer .footer-desc {
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px !important;
  max-width: 384px;
}

/* Contact Info */
footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px !important;
}

footer .footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 8px !important;
}

footer .footer-contact-label {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.5);
}

footer .footer-contact-link {
  display: flex;
  align-items: center;
  gap: 12px !important;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

footer .footer-contact-link:hover {
  color: #f5a824;
}

footer .footer-contact-link .fa {
  width: 20px;
  text-align: center;
  font-size: 18px;
}

footer .footer-address {
  align-items: center;
  cursor: default;
}

footer .footer-address:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Social Icons */
footer .footer-social {
  display: flex;
  align-items: center;
  gap: 16px !important;
  margin-top: 8px !important;
  margin-left: 6px !important;
}

footer .footer-social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  transition: color 0.2s;
}

footer .footer-social a:hover {
  color: #f5a824;
}

footer .footer-tiktok-icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

footer .footer-tiktok-link:hover .footer-tiktok-icon {
  opacity: 1;
}

/* Nav Columns */
footer .footer-nav-col h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 16px !important;
}

footer .footer-nav-col h4 a {
  color: #ffffff;
  line-height: 24px;
  transition: color 0.2s;
}

footer .footer-nav-col h4 a:hover {
  color: #f5a824;
}

footer .footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px !important;
  line-height: 24px;
}

footer .footer-nav-col ul li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

footer .footer-nav-col ul li a:hover {
  color: #f5a824;
}

/* Bottom Bar */
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto !important;
  padding: 24px 32px !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px !important;
}

footer .footer-bottom p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
}

footer .footer-bottom p a {
  color: rgba(255, 255, 255, 0.6);
  line-height: 20px;
  transition: color 0.2s;
}

footer .footer-bottom p a:hover {
  color: #f5a824;
}

footer .footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px !important;
}

footer .footer-bottom-links a {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

footer .footer-bottom-links a:hover {
  color: #f5a824;
}

/* ============================================
   FOOTER RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Below lg (< 1024px): 3 columns, info spans 3 */
@media (max-width: 1023px) {
  footer .footer-main {
    padding: 64px 24px !important;
  }

  footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  footer .footer-info-col {
    grid-column: span 3;
  }

  footer .footer-bottom-inner {
    padding: 24px 24px !important;
  }
}

/* Below md (< 768px): 2 columns, info spans 2 */
@media (max-width: 767px) {
  footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  footer .footer-info-col {
    grid-column: span 2;
  }

  footer .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px !important;
    text-align: center;
  }
}

/* Below sm (< 640px): tighter padding */
@media (max-width: 639px) {
  footer .footer-main {
    padding: 64px 16px !important;
  }

  footer .footer-bottom-inner {
    padding: 24px 16px !important;
  }
}
