body {
  background-color: #fff;
}

span {
  text-decoration: underline;
}

h1 {
  text-align: center;
}

/* STYLING FOR BUTTONS */

.successbtn {
  background-color: #28a745;
}
.primarybtn {
  background-color: #007bff;
}
.secondarybtn {
  background-color: #6c757d;
}
.infobtn {
  background-color: #17a2b8;
}
.dangerbtn {
  background-color: #dc3545;
}
.warningbtn {
  background-color: #ffc107;
}
.darkbtn {
  background-color: #343a40;
}
.lightbtn {
  background-color: #f8f9fa;
}
.orgbtn {
  border: 1px solid;
  border-color: #fff;
}

.btn-lg {
  margin-bottom: 0.3rem;
  padding: 0.375rem 0.75rem;
}
/* END OF STYLING FOR BUTTONS */

/* STYLING FOR IMAGES */
.img-bg-2 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  width: 48.2%;
  height: 280px;
  margin-left: 2.5%;
  margin-right: 15px;
}
.img-bg-2.right {
  right: 0;
}

.img-bg-5 {
  margin-top: 2%;
  width: 100%;
  height: 400px;
  background-size: cover;
}

.part-img {
  width: 15%;
  margin: 5px 5px;
  height: 10%;
}
/* END OF IMAGE STYLING */

/* STYLING FOR CONTAINERS (DIVS, SECTIONS, ETC) */

.site-wrap {
  max-width: 1400px !important;
}

.section-container {
  margin-top: 80px !important;
}

.overview-container {
  margin: 0 3%;
}

.overview-p-container {
  margin-left: 0;
}

.py-5 {
  margin-left: 10px;
}

.partners-section {
  text-align: center;
}

.partners-container {
  padding-left: 15%;
  padding-right: 5%;
}

.WWD,
.teams,
.OffOps {
  margin-top: 10%;
}

.p-4 {
  padding: 3rem !important;
}
/* END OF STYLING FOR CONTAINERS */

/* MEDIA/VIEW PORT BASED STYLING */

@media (max-width: 991px) {
  .img-bg-2 {
    position: relative;
    text-align: left;
    margin-left: 25px;
    width: 92%;
    height: 400px;
  }
  .order-summary.sticky-top {
    position: relative !important;
    top: 7rem !important;
    margin-bottom: 7rem !important;
    margin-right: 30px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1085px;
  }
}

@media (max-width: 767px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 920px;
  }
  .btn-lg {
    font-size: 0.8rem;
  }
}

@media (max-width: 991px) {
  .col-2 {
    max-width: 25%;
  }
  .overview-p-container {
    padding: 0 2%;
    max-width: 100%;
    margin-top: 5%;
  }

  .parent-box-overview-text {
    padding-left: 0;
  }
}

@media (max-width: 475px) {
  .col-2,
  .col-3 {
    max-width: 35%;
    font-size: 0.6rem;
  }
}
/* END OF VIEWPORT STYLING */

/* PAGE STYLING - WHO WE ARE (VMV) */
.accordion,
.team-title {
  max-width: 886px;
  padding: 5% 3%;
  text-align: left;
  margin-left: 5%;
}
.team-title {
  text-align: center;
}

.OrgTeam-section,
.values-h1-box,
.mission-h1-box,
.vision-h1-box {
  margin-top: 10%;
}
.vmv-container,
.team-container {
  margin-top: 7%;
  padding-left: 10%;
  padding-right: 10%;
  text-align: center;
}

/* END OF PAGE STYLING */

/* PAGE STYLING - SERVICES */

.p-serv {
  margin-right: 1rem;
}
.row {
  margin-left: 0;
  margin-right: 0;
}
.no-gutters {
  margin-bottom: 100px;
}

.chartering-p-div {
  margin-left: 10px;
}

/* OTHER STYLING */
.navbar-text {
  text-decoration: none;
  font-size: 0.7rem;
  color: #000 !important;
}

a.nav-link {
  color: #000 !important;
}

.Credits-btn {
  background-color: #020659;
}

.copyright {
  font-size: 0.8rem;
}

.fab {
  font-size: 2rem;
}

.social-icons-row-div {
  margin-left: -15px;
  margin-right: -15px;
}

/* Footer Styling */
.site-footer p,
.site-footer ul li a,
.site-footer .copyright {
  color: #ffffff;
}

/* Chartering page styles */
.boat-card {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-color: #fff;
}

.boat-card:hover {
  transform: translateY(-5px);
}

.boat-image {
  width: 100%;
  height: auto; /* Ensure the image is responsive */
  object-fit: cover;
  margin-bottom: 15px;
}

/* In chartering.html - larger images for boat cards */
.boat-card .boat-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* In checkout.html - smaller thumbnail images */
.cart-item .boat-image {
  width: 120px;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  margin-right: 1rem;
  flex-shrink: 0;
  background-color: #f8f9fa;
}

.cart-icon {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #ffc107;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  min-width: 20px;
  text-align: center;
}

.boat-specs {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
}

.boat-price {
  font-size: 1.5rem;
  color: #28a745;
  font-weight: bold;
}

.days-input {
  max-width: 80px;
  text-align: center;
}

.section-title {
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.bg-contact {
  background-image: url("img8.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: 70vh; /* Add this to ensure enough height for effect */
  transition: opacity 0.3s ease-in-out; /* Add this for smoother fades */
}

.bg-home {
  background-image: url("img605.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: 70vh; /* Add this to ensure enough height for effect */
  transition: opacity 0.3s ease-in-out; /* Add this for smoother fades */
}

.overlay:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .boat-card {
    margin-bottom: 15px;
  }

  .boat-image {
    height: 150px; /* Adjust height for smaller screens */
  }

  .days-input {
    max-width: 60px;
  }
  .name-field-left {
    padding-right: 0 !important;
  }
  .name-field-right {
    padding-left: 0 !important;
  }
}

@media (min-width: 768px) {
  .boat-card {
    flex: 1 1 calc(50% - 20px); /* Two cards per row */
  }
}

@media (min-width: 992px) {
  .boat-card {
    flex: 1 1 calc(33.33% - 20px); /* Three cards per row */
  }
}

.power-button-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.power-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
}

.power-button:hover {
  background-color: #e9ecef;
}

.power-button.active,
.power-button:focus {
  background-color: #007bff;
  color: white;
  border: 1px solid #0056b3 !important; /* Force thinner border */
  outline: none !important; /* Remove focus outline */
  box-shadow: none !important; /* Remove any box shadows */
}

.power-button .price {
  font-weight: bold;
}

.daily-rate {
  font-size: 1.5rem;
  color: #28a745;
}

/* Contact icon styling */
.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Optional hover effect */
.contact-icon:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* Add this media query for screens larger than 1024px */
@media screen and (min-width: 1024px) {
  .section-container {
    margin-top: 160px !important;
  }
}

/* Add these to your existing styles */
.name-field-left {
  padding-left: 0 !important;
}

.name-field-right {
  padding-right: 0 !important;
}

/* Add loading spinner styles */
.payment-loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.payment-loader .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Disable pointer events while loading */
.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Form validation styles */

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}
.cart-items-container {
  padding-right: 2rem;
}

.cart-item {
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}

.order-summary {
  position: sticky;
  top: 2rem;
  margin-top: 0; /* This will pull up the order summary to align with cart items */
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: adds subtle shadow */
}

@media (max-width: 576px) {
  .cart-item .row > div {
    margin-bottom: 1rem;
  }

  .cart-item .row > div:last-child {
    margin-bottom: 0;
  }
}

/* Remove underlines */
.power-button .price,
.daily-rate {
  text-decoration: none;
}

/* Modify active state to have thinner border */
.power-button.active {
  background-color: #007bff;
  color: white;
  border: 1px solid #0056b3; /* Thinner border */
  box-shadow: none; /* Remove any shadow */
}

/* Also prevent any focus visible styles */
.power-button:focus-visible {
  outline: none !important;
}

.power-selector-header {
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: background-color 0.3s ease;
}

.power-selector-header:hover {
  background-color: #e9ecef;
}

.selected-power {
  color: #007bff;
  font-weight: normal;
}

/* Animate collapse */
.power-button-group.collapse {
  transition: height 0.3s ease;
}

/* Payment Processing Overlay */
.payment-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.payment-progress {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 90%;
  width: 500px;
}

/* Steps Indicator */
.steps-container {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  background: white;
  padding: 0 10px;
}

.step.active .step-number {
  background: #007bff;
  color: white;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
}

.step-text {
  font-size: 0.8rem;
  color: #666;
  display: block;
}

/* Form Feedback */
.feedback-container {
  margin-bottom: 1rem;
}

.field-feedback {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.field-feedback.valid {
  color: #28a745;
}

.field-feedback.invalid {
  color: #dc3545;
}

.field-feedback i {
  margin-right: 0.5rem;
}

/* Order Preview */
.order-preview {
  background: #f8f9fa;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* Alert Container */
.alert-container {
  margin: 1rem 0;
}

/* Loading Button */
.btn .button-loader {
  display: none;
}

.btn.loading .button-text {
  display: none;
}

.btn.loading .button-loader {
  display: inline-block;
}

/* Validation States */
.form-control.is-validating {
  background-image: url("data:image/svg+xml,..."); /* Add loading indicator */
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Remove underlines globally */
.btn,
.power-selector-header,
.power-button,
.daily-rate,
span {
  text-decoration: none !important;
}

/* Update power selector styling */
.power-selector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
}

.power-selector-header::after {
  content: "▼";
  transition: transform 0.3s ease;
}

.power-selector-header.expanded::after {
  transform: rotate(-90deg);
}

/* Update media query for responsive behavior */
@media (max-width: 991px) {
  .order-summary {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

/* Real-time validation feedback styles */
.feedback-container {
  margin-top: 0.25rem;
  min-height: 24px;
}

.field-feedback {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  gap: 0.5rem;
}

.field-feedback.valid {
  color: #28a745;
}

.field-feedback.invalid {
  color: #dc3545;
}

.field-feedback i {
  font-size: 1rem;
}

.form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Phone input validation styles */
.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");
  }
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Validation styling */
#mobile.is-invalid ~ .iti {
  border-color: #dc3545;
  border-radius: 0.25rem;
}

#mobile.is-valid ~ .iti {
  border-color: #28a745;
  border-radius: 0.25rem;
}

.field-feedback {
  display: none;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.is-invalid ~ .feedback-container .field-feedback {
  display: block;
}

#mobile.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

#mobile.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Add responsive adjustments */
@media (max-width: 768px) {
  .boat-card .boat-image {
    height: 200px;
  }

  .cart-item .boat-image {
    width: 100px;
    height: 70px;
  }
}

/* Make nav links bold when active */

/* Base styles for nav links */
.navbar-nav .nav-item .nav-link {
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

/* Active link styles */
.navbar-nav .nav-item .nav-link.active {
  text-transform: uppercase; /* Change to all caps */
  color: #000 !important; /* Ensure the color remains black */
}

/* Hover and focus styles */
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
  color: #000 !important; /* Change text color on hover */
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3); /* Shadow effect */
  transform: translateY(-2px); /* Optional: lift effect */
}

/* Dropdown items */
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

/* Active dropdown item styles */
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item.active {
  text-transform: uppercase; /* Change to all caps */
  color: #000 !important; /* Ensure the color remains black */
}

/* Hover and focus styles for dropdown items */
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus {
  color: #000 !important; /* Change text color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow effect */
  transform: translateY(-2px); /* Optional: lift effect */
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* Optional: subtle background change */
}

/* More specific dropdown item styles */
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus {
  color: #000 !important; /* Change text color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important; /* Shadow effect */
  transform: translateY(-2px) !important; /* Optional: lift effect */
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ) !important; /* Optional: subtle background change */
}

/* Styles for the About dropdown items */
.navbar-nav
  .nav-item.dropdown
  .dropdown-menu
  .dropdown-item[href="VMV.html#VMV"],
.navbar-nav
  .nav-item.dropdown
  .dropdown-menu
  .dropdown-item[href="VMV.html#OP-Structure"] {
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover and focus styles for About dropdown items */
.navbar-nav
  .nav-item.dropdown
  .dropdown-menu
  .dropdown-item[href="VMV.html#VMV"]:hover,
.navbar-nav
  .nav-item.dropdown
  .dropdown-menu
  .dropdown-item[href="VMV.html#VMV"]:focus,
.navbar-nav
  .nav-item.dropdown
  .dropdown-menu
  .dropdown-item[href="VMV.html#OP-Structure"]:hover,
.navbar-nav
  .nav-item.dropdown
  .dropdown-menu
  .dropdown-item[href="VMV.html#OP-Structure"]:focus {
  color: #000 !important; /* Change text color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow effect */
  transform: translateY(-2px); /* Optional: lift effect */
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* Optional: subtle background change */
}

/* Active state for the About menu item */
.navbar-nav .nav-item.dropdown.show > .nav-link,
.navbar-nav .nav-item.dropdown.active > .nav-link {
  text-transform: uppercase; /* Change to all caps */
  color: #000 !important; /* Ensure the color remains black */
}

/* Hover and focus styles for the About menu item */
.navbar-nav .nav-item.dropdown .nav-link:hover,
.navbar-nav .nav-item.dropdown .nav-link:focus {
  color: #000 !important; /* Change text color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow effect */
  transform: translateY(-2px); /* Optional: lift effect */
}

/* Base styles for footer quick menu links */
.site-footer .footer-heading + ul li a {
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Transition for shadow and transform */
  color: #fff; /* Set default text color to white */
}

/* Active state for footer quick menu links */
.site-footer .footer-heading + ul li a.active {
  text-transform: uppercase; /* Change to all caps */
  color: #fff !important; /* Ensure the color remains white */
}

/* Hover and focus styles for footer quick menu links */
.site-footer .footer-heading + ul li a:hover,
.site-footer .footer-heading + ul li a:focus {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); /* Increased shadow for more depth */
  transform: translateY(-4px); /* Increase lift effect */
  color: #fff !important; /* Ensure text color is white on hover */
}

/* Ensure no other styles are overriding */
.site-footer .footer-heading + ul li a {
  color: inherit; /* Ensure it inherits the color from the parent */
}

/* More specific styles for footer quick menu links */
.site-footer .footer-heading + ul li a:hover,
.site-footer .footer-heading + ul li a:focus {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important; /* Shadow effect */
  transform: translateY(-2px) !important; /* Optional: lift effect */
}
