
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #070708; /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.8); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #514ABF; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1f1f23; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.8);  /* The default color of the main navmenu links */
  --nav-hover-color: #514ABF; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1f1f23; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1f1f23; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.8); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #514ABF; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #1d1d1e;
  --surface-color: #37373e;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
 background: #2C205E;
background: linear-gradient(90deg, rgba(44, 32, 94, 1) 0%, rgba(108, 99, 255, 1) 100%);
  font-family: var(--default-font);
}

a {
  color: #514ABF;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #2c24b7;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
 
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(7, 7, 8, 0.3);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(7, 7, 8, 0.8);
}
 
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  
  font-size: 14px;
  padding: 8px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}
.service-item.bookingform label {
    margin-bottom: 4px;
}
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-item.bookingform h3 {
    margin: 0;
    font-size: 18px;
    color: #000000;
    font-weight: 700;
}
.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 0 0 25px 0;
   
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}*/
/* FULL-SCREEN OVERLAY */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;

  /* page still visible but slightly dimmed */
  background: rgba(0, 0, 0, 0.15);  /* or transparent if you don't want dim */

  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

/* BLACK BLOCK BEHIND SPINNER */
#preloader::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);   /* the “black block” */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* SPINNER ON TOP OF THE BLOCK */
/* SPINNER ON TOP (BARS STYLE) */
#preloader::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 40px;
  height: 40px;
  border-radius: 50%;

  /* BAR-STYLE LOADER (not full round) */
  background: conic-gradient(#0000 10%, #ffffff) content-box;

  -webkit-mask:
    repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
    radial-gradient(farthest-side, #0000 calc(100% - 6px), #000 calc(100% - 5px));
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;

  animation: barsSpin 1s infinite steps(12);
  z-index: 2;
}

/* Animation */
@keyframes barsSpin {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

@keyframes animate-preloader {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

}*/
/* FULL-SCREEN OVERLAY */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;

  /* page still visible but slightly dimmed */
  background: rgba(0, 0, 0, 0.15);  /* or transparent if you don't want dim */

  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

/* BLACK BLOCK BEHIND SPINNER */
#preloader::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);   /* the “black block” */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* SPINNER ON TOP OF THE BLOCK */
/* SPINNER ON TOP (BARS STYLE) */
#preloader::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 40px;
  height: 40px;
  border-radius: 50%;

  /* BAR-STYLE LOADER (not full round) */
  background: conic-gradient(#0000 10%, #ffffff) content-box;

  -webkit-mask:
    repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
    radial-gradient(farthest-side, #0000 calc(100% - 6px), #000 calc(100% - 5px));
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;

  animation: barsSpin 1s infinite steps(12);
  z-index: 2;
}

/* Animation */
@keyframes barsSpin {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

@keyframes animate-preloader {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #514ABF;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
 
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
 
  display: flex;
  align-items: center;
  padding: 80px 0 0 0;
  overflow: hidden;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   
  z-index: -2;
}
section.services.section {
    padding: 0;
}
 

.hero .hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
  
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .service-content .text-end {
    text-align: left !important;
}
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  line-height: 1.6;
 
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 1.1rem;
  }
}

.hero .hero-content .hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-content .hero-btns .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }
}
 
.hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero .hero-stats .stat-item {
  padding: 2rem 1rem;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-stats .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #fff 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.hero .hero-stats .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.hero .hero-stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero .hero-stats .stat-item h3 {
    font-size: 2rem;
  }
}

 
 
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-container {
  margin-bottom: 60px;
}

.services .services-container .service-item {
  display: flex;
  background-color: #ffffff;
  color: #000000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.services .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .services-container .service-item:hover .service-icon {
  background-color:  #e4e3e8;
   
}

.services .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:  #6C63FF;
  color: #2A1E5C;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.services .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
      width: 100%;
}
.service-row {
     display: flex;
    flex-wrap: unset;
    justify-content: space-between;
    padding-top: 12px;
    border-bottom: 1px dashed #d9d9d9;
}
.service-row p {
    padding: 0;
    margin: 0 0 8px 0;
}
p.service-label {
    min-width: 100px;     color: #444444;
}
.service-content div.service-row:last-child{
      border-bottom: none; 
}
.services .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.services .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services .cta-wrapper .cta-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}
.form-check-input{
  border: 1px solid #9f9f9f;
}
.services .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/bg/dotted-world-1.webp");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}
.service-item.service-bill-card .service-icon {
    background: #e9e7ff !important;
}
.services .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
h6.service-title {
    font-size: 16px !important;
    margin-bottom: 16px !important;
}
@media (max-width: 991px) {
  .services .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
  .service-row {
    flex-direction: column;
}
}

.services .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.services .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.services .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .services .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .services-container .service-item {
    flex-direction: column;
  }

  .services .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .services .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}
 
.service-item.bookingform {
    width: 100%;
    background: #e9e7ff !important;
    padding: 24px;
}

.service-item.bookingform form {
    width: 100%;
    padding: 0 !important;
}
 
  .btn-default {
  padding: 8px 40px;
  background: #514ABF;
  color: #ffffff;
    transition: 0.3s;
}

 .btn-default:hover {
  background:  #746de2 ;
}
  label {
    display: inline-block;
    font-weight: bold;
}
  
  .form-check.form-check-inline.stripe-card {
   background: #ffffff;
    padding: 16px 8px 0 34px;
    border-radius: 8px;
    border: 1px solid #dfe3e7;
}
  .form-check.form-check-inline.paystack-card {
   background: #ffffff;
    padding: 16px 8px 0 34px;
    border-radius: 8px;
    border: 1px solid #dfe3e7;
}
.payment-info p {
    color: #4c4c4c;
    font-size: 14px;
}
p.note-text {
    color: #444444;
    font-size: 14px;
}
 .payment-card label {
   
    padding: 4px 10px 4px 10px;
    min-width: 100px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    font-size: 14px;     margin-bottom: 8px;
}

.stripe-card .payment-card label {
    background: #CDCAFF;
  color: #372DF8;
   
}

.paystack-card .payment-card label {
    background: #D4FFEE;
  color: #0EB975;
   
}

.service-content.currency-card {
    padding: 16px !important;
    border: 1px solid #c9c9c9;
    border-radius: 8px;
    margin-bottom: 12px;
}

.service-content.currency-card h3 {
    font-size: 16px !important;
    margin: 0 !important;
}


.text-bold{
font-weight: bold;
}

@media (max-width: 991px) {
.form-check.form-check-inline {
    width: 100%;
}
}

.bg-success.service-icon {
    color: #ffffff !important;
}


.destination-wrapper ul li {
    list-style: lower-alpha;
}

.destination-wrapper ui {
    text-decoration: none !important;
}

.destination-form {
    display: inline-flex;
    align-items: anchor-center;
    gap: 8px;
}

.destination-form span {
    font-size: 16px;
    font-weight: bold;
}

.destination-wrapper h3 {
    margin: 0 0 8px 16px !important;
    font-size: 16px !important;
}

.destination-form button {
    width: 170px;
    font-size: 14px;
}

.destination-wrapper ul {
    margin-top: 4px;
}

.add-destination-header {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.service-content hr {
  
    opacity: .10;
}

 .header-social-links {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.header-social-links h4 {
    font-weight: 900;
    margin: 0;
}

.header-social-links img {
    width: 230px;
}
.modal-body {
    text-align: center;
    gap: 6px;
}

.modal-button-wrapper {
    margin: 16px 0 0 0;
}

.modal-dialog.modal-dialog-centered.confirmation-modal .modal-body {
    padding: 40px 0 40px 0;
}

.modal-button-wrapper .btn {
    min-width: 100px;
}

main.main {
    min-height: calc(100vh - 146px);
}
.bg-success.service-icon {
    color: #ffffff !important;
}


@media (max-width: 991px) {
   .header-social-links {
      display: flex;
      flex-direction: column;
      margin: 0;
  }

  .header-social-links h4 {
      display: none;
  }

  .header-social-links img {
      height: 32px;
      width: auto;
  }
}

.error-inline{
  color:#ef4444; font-size:12px; margin-top:4px;
}

/* make card a positioning parent */
.service-item {
  position: relative;
}

/* main CONFIRMED pill */
.confirmed-stamp {
  position: absolute;
  top: 52%;                /* roughly middle of the card */
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  background: #e6fff3;     /* light green – match your design */
  border: 2px solid #00b96b;
  color: #00b96b;
  padding: 6px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 10;
  pointer-events: none;    /* don’t block clicks on fields behind */
}

/* little circle with check mark */
.confirmed-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1;
}

/* text */
.confirmed-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* tweak on small screens if needed */
@media (max-width: 768px) {
  .confirmed-stamp {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
  }
}
/* EXPIRED pill – same position, different colors */
.expired-stamp {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  background: #ffecec;
  border: 2px solid #e11d48;      /* red-ish */
  color: #e11d48;
  padding: 6px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 10;
  pointer-events: none;
}

.expired-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1;
}

.expired-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .expired-stamp {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
  }
}
/* CANCELLED pill – same position as confirmed/expired */
.cancelled-stamp {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  background: #fff5eb;              /* light orange-ish */
  border: 2px solid #f97316;        /* orange border */
  color: #f97316;
  padding: 6px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 10;
  pointer-events: none;
}

.cancelled-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1;
}

.cancelled-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .cancelled-stamp {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
  }
}

.highlight-field {
  border: 2px solid #514ABF;
  /*background-color: rgba(81, 74, 191, 0.08);*/ /* light tint */
  box-shadow: 0 0 5px rgba(81, 74, 191, 0.6);
}

.highlight-field:focus {
  border-color: #514ABF;
  box-shadow: 0 0 6px rgba(81, 74, 191, 0.8);
  outline: none;
} 

small#drop_location_note {
    position: absolute;
    bottom: 10px;
}