/* CSS Variables */
:root {
  --primary-color: #FAAD08;
  --secondary-color: #000000;
  --text-dark: #111;
  --text-muted: #7A7A7A;
  --bg-dark: #000;
  --bg-light: #FFFFFF;
  --surface-bg: #FFEDC5;
  --footer-bg: #000000;
  --gradient: linear-gradient(89.86deg, var(--primary-color) 0.12%, #FBF0D8 50.52%);
  --font-family: "DM Sans", sans-serif;
  --container-width: 1240px;
  --btn-radius: 9999px;
  --border-card: #d1d5db;
}

/* Base Styles */
body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-dark);
}
::selection {
  background-color: var(--primary-color);
  color: #ffffff;
}

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

.uppercase {
  text-transform: uppercase;
}

/* Container Override */
.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 576px) {
  .container {
    max-width: var(--container-width);
  }
}

@media (min-width: 768px) {
  .container {
    max-width: var(--container-width);
  }
}

@media (min-width: 992px) {
  .container {
    max-width: var(--container-width);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: var(--container-width);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: var(--container-width);
  }
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1.5rem 1.25rem;
}

.header.header-fixed {
  position: fixed;
  background-color: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.header.header-fixed .main-nav li a {
  color: var(--text-dark);
}

.header.header-fixed .mobile-menu-btn {
  color: var(--text-dark);
}

.header .container {
  padding-left: 0;
  padding-right: 0;
}

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

.header-logo img {
  width: 161px;
  height: 46px;
  object-fit: contain;
}

/* Filter for black logo in fixed header if needed, or just standard logo */
.header.header-fixed .header-logo img {
  filter: brightness(0);
}

.header-nav-wrapper {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav ul {
  display: flex;
  justify-content: space-between;
  gap: 1.75rem;
  font-size: 1.125rem;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a:not(.social-icon) {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.main-nav a:hover {
  opacity: 0.8;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.8;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.875rem;
  cursor: pointer;
  padding: 0;
  display: none;
}

.main-nav-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-nav-mobile a {
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.main-nav-mobile a:hover {
  opacity: 0.8;
}

.offcanvas {
  background-color: var(--bg-dark);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
  color: white;
  font-weight: 600;
}

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

  .mobile-menu-btn {
    display: block;
  }
}

@media (min-width: 831px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Use profile button in header */
.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
}

.user-name {
  font-weight: 500;
  color: var(--text-dark);
}


/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: top;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(101.61deg, rgba(0, 0, 0, 0.9) 25.74%, rgba(0, 0, 0, 0.27) 94.98%);
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 10;
  height: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  /* padding-left: 1.25rem;
  padding-right: 1.25rem; */
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  color: white;
  max-width: 708px;
}

.hero-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 54px;
  margin-top: 4rem;
  margin-bottom: 0;
}

.hero-heading .text-primary {
  color: var(--primary-color);
}

.hero-description {
  margin-top: 1rem;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}

.hero-visual {
  display: none;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-visual img {
  position: relative;
  z-index: 10;
  height: 350px;
  width: 535px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .hero-section {
    height: 790px;
  }

  .hero-heading {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  .hero-visual {
    display: flex;
  }
}

@media (max-width: 639px) {
  .hero-section {
    height: 800px;
  }
}

/* Booking Form */
.booking-form {
  margin-top: 2rem;
}

.booking-form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.date-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: white;
  color: var(--primary-color);
  border-radius: 9999px;
  padding: 0.75rem 1rem;
  width: 100%;
}

.date-input-wrapper svg {
  flex-shrink: 0;
}

.date-input-wrapper input {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #757575;
  border: none;
  outline: none;
  background: transparent;
}

.date-input-wrapper input::placeholder {
  color: #757575;
}

@media (min-width: 576px) {
  .booking-form-row {
    flex-direction: row;
  }
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  color: black;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  padding: 14px 60px;
  border-radius: var(--btn-radius);
  border: none;
  transition: opacity 0.15s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary:disabled {
  opacity: 0.8;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  padding: 14px 60px;
  border-radius: var(--btn-radius);
  border: none;
  transition: opacity 0.15s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.btn-secondary:hover {
  opacity: 0.9;
}

/* Reviews */
.reviews-section {
  padding: 4.5rem 1.25rem;
}

.reviews-section .container {
  max-width: 1086px;
}

.section-title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
}

.section-title .text-primary {
  color: var(--primary-color);
}

.rating-card {
  border: 1px dashed var(--primary-color);
  border-radius: 5px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.rating-label {
  font-size: 1.125rem;
  font-weight: 500;
}

.rating-score {
  font-size: 1.875rem;
  font-weight: 700;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.rating-reviews {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.rating-link {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 0.5rem;
}

.rating-link:hover {
  text-decoration: underline;
}

.testimonial-card {
  border-radius: 5px;
  background-color: #F9F9F9;
  padding: 2rem;
  height: 100%;
}

.testimonial-rating {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.testimonial-content {
  font-size: 1rem;
  line-height: 28px;
  color: var(--text-muted);
}

.testimonial-name {
  margin-top: 1.5rem;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.testimonial-time {
  margin-top: 0.125rem;
  font-size: 13px;
  color: var(--text-muted);
}

.swiper-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.swiper-nav-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid black;
  background: transparent;
  color: black;
  cursor: pointer;
  transition: all 0.2s;
}

.swiper-nav-btn:hover {
  background-color: black;
  color: white;
}

@media (min-width: 48rem) {
  .section-title {
    font-size: 38px;
  }

  .rating-label {
    font-size: 26px;
  }

  .rating-score {
    font-size: 50px;
  }

  .rating-reviews {
    font-size: 1.125rem;
  }

  .rating-link {
    font-size: 1.125rem;
  }

  .testimonial-content {
    font-size: 20px;
  }
}

/* CTA */
.cta-section {
  background-color: var(--primary-color);
  overflow: hidden;
}

.cta-content {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}

.cta-image-wrapper {
  position: relative;
  width: 100%;
}

.cta-text-wrapper {
  width: 100%;
  padding: 2.5rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-text-wrapper .container {
  max-width: 620px;
  margin: 0;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 42px;
  color: black;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  line-height: 33px;
  color: black;
  margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
  .cta-content {
    flex-direction: row;
  }

  .cta-image-wrapper {
    width: 50%;
  }

  .cta-text-wrapper {
    width: 50%;
    padding: 2.5rem 1.25rem;
  }

  .cta-title {
    font-size: 38px;
  }

  .cta-description {
    font-size: 22px;
  }
}

/* Why Choose Us */
.why-choose-section {
  padding: 4.5rem 1.25rem;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
}

.features-list {
  display: flex;
  flex-direction: column;
  /* gap: 1.25rem; */
  width: 100%;
}

.features-list a {
  width: fit-content;
}

.feature-item {
  display: flex;
  gap: 0.5rem;
}

.feature-icon {
  flex-shrink: 0;
  color: var(--primary-color);
}

.feature-title {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 26px;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 26px;
}

@media (min-width: 992px) {
  .why-choose-content {
    flex-direction: row;
    align-items: center;
  }

  .why-choose-image {
    width: 50%;
  }

  .why-choose-features {
    width: 50%;
  }
}

@media (min-width: 48rem) {
  .feature-title {
    font-size: 20px;
  }

  .feature-description {
    font-size: 1.125rem;
  }
}

/* How It Works */
.how-it-works-section {
  background-color: var(--surface-bg);
  padding: 4.5rem 1.25rem;
}

.step-item {
  text-align: center;
}

.step-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.step-icon img {
  width: 80px;
  height: 80px;
}

.step-title {
  font-size: 1.125rem;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: black;
}

.step-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 26px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 48rem) {
  .step-item {
    text-align: left;
  }

  .step-icon {
    display: block;
  }

  .step-title {
    font-size: 26px;
  }

  .step-description {
    font-size: 1.125rem;
    text-align: left;
  }
}

/* Contact Support */
.contact-support-section {
  background: var(--gradient);
}

.contact-support-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
}

.contact-support-text {
  padding: 2.5rem 1.25rem;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-support-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 42px;
  color: black;
  max-width: 36rem;
  margin-bottom: 1rem;
}

.contact-support-description {
  font-size: 1.125rem;
  max-width: 36rem;
  color: black;
  margin-bottom: 1.25rem;
}

.contact-support-image {
  width: 100%;
}

.contact-support-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .contact-support-content {
    flex-direction: row;
  }

  .contact-support-text {
    padding: 2.5rem 1.25rem;
  }

  .contact-support-title {
    font-size: 38px;
  }

  .contact-support-description {
    font-size: 22px;
  }

  .contact-support-image {
    width: 668px;
  }
}

/* Video Section */
.video-section {
  padding: 5rem 1.25rem;
}

.video-section .container {
  max-width: 1048px;
}

.video-card-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.video-card {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.video-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.video-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.video-play-button:hover .video-play-icon {
  transform: scale(1.1);
}

.video-tab-left,
.video-tab-right {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 263px;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.video-tab-left {
  left: 0;
  transform: translate(-50%, -50%);
}

.video-tab-right {
  right: 0;
  transform: translate(50%, -50%);
}

@media (min-width: 576px) {
  .video-card img {
    height: 533px;
  }

  .video-play-icon {
    width: 64px;
    height: 64px;
  }
}

@media (min-width: 768px) {

  .video-tab-left,
  .video-tab-right {
    display: block;
  }
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  /* gap-10 */
}

/* md breakpoint (≥768px) */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* lg breakpoint (≥992px or 1024px – pick one) */
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 235px 125px 186px 251px;
    justify-content: space-between;
  }
}


.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.footer-intro {
  margin-top: 1rem;
  line-height: 1.625;
  color: white;
  font-size: 0.875rem;
  max-width: 235px;
}

.footer-social {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-icon {
  display: inline-flex;
  height: 38px;
  width: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.footer-title {
  font-size: 1.125rem;
  line-height: 100%;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: white;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-contact {
  font-size: 0.875rem;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-address {
  font-size: 0.875rem;
  color: white;
  max-width: 20rem;
}

.footer-subscription-text {
  font-size: 0.875rem;
  color: white;
  max-width: 20rem;
  margin-bottom: 1rem;
}

.footer-subscription-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-subscription-input {
  width: 100%;
  border-radius: 9999px;
  background-color: white;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  border: none;
  outline: none;
}

.footer-subscription-input::placeholder {
  color: var(--text-dark);
}

.footer-subscription-input:focus {
  box-shadow: 0 0 0 2px rgba(250, 173, 8, 0.7);
}

.footer-subscription-btn {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  width: 100%;
  border-radius: 9999px;
  border: none;
  transition: opacity 0.15s;
  cursor: pointer;
}

.footer-subscription-btn:hover {
  opacity: 0.9;
}

@media (min-width: 576px) {
  .footer {
    padding: 4rem 1rem;
  }

  .footer-title {
    font-size: 24px;
  }
}


/* Common Inner Page Styles */
.pt-header {
  padding-top: 8rem;
}

/* Bookings page */

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--primary-color) !important;
  transition: all 0.15s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}
.btn-outline:hover{
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.initial {
  background-color: #f6f3f4;
  color: #4a5565;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
}

.main-content-boxed {
  max-width: 900px;
  margin: 0 auto;
}

.booking-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-card);
  overflow: hidden;
}

.booking-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.booking-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.booking-tabs-nav {
  display: flex;
  gap: 2rem;
  padding: 0 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  margin-top: 1rem;
}

.booking-tab-link {
  background: none;
  border: none;
  /* padding-bottom: 0.75rem; */
  padding: 0 1.5rem 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.booking-tab-link.active {
  color: var(--text-dark);
  border-bottom-color: var(--primary-color);
}

.booking-tab-pane {
  display: none;
}

.booking-tab-pane.active {
  display: block;
}

.booking-section {
  padding: 2rem 1.5rem;
}

.booking-section.bg-light {
  background-color: #f4f6f8;
}

.booking-item-card {
  max-width: 400px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 1.25rem;
  background: white;
}

.badge-status {
  background-color: #f3f4f6;
  color: #374151;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  float: right;
}

.text-small {
  font-size: 0.875rem;
}

/* Account Page */

.account-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-card);
  max-width: 800px;
  margin: 0 auto;
  /* padding: 2rem; */
}

.account-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 2rem 1.5rem;
}
#accountTabsContent{
  padding: 2rem 1.5rem;
}

.account-form .form-group {
  margin-bottom: 1.25rem;
}

.account-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"],
.account-form select {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-family: inherit;
}

.input-locked {
  position: relative;
}

.input-locked input {
  background-color: #f9fafb;
  color: #9ca3af;
}

.lock-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}


.progress-bar {
  background-color: var(--primary-color);
}

/* Bootstrap Global Overrides for Primary Color */

/* Text Primary */
.text-primary {
  color: var(--primary-color) !important;
}

/* Background Primary */
.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  background-color: #e59d07 !important;
  border-color: #e59d07 !important;
  color: #000 !important;
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #000 !important;
}

/* Nav Pills / Tabs */
.nav-pills{
  border-radius: var(--btn-radius) !important;
  background-color: #f2f4f8;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: var(--primary-color);
  color: #000;
}
.nav-link{
  color: var(--text-dark);
  border-radius: var(--btn-radius) !important;
}
.nav-link:hover{
  color: var(--primary-color);
}

/* Forms */
.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(250, 173, 8, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(250, 173, 8, 0.25);
}

/* Pagination */
.page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
}

/* Dropdown */
.dropdown-item:active {
  background-color: var(--primary-color);
  color: #000;
}

.btn-link{
  color: var(--primary-color);
  text-decoration: none;
}
.btn-link:hover{
  text-decoration: underline;
  color: var(--primary-color);
}
.btn-link:active{
  color: var(--text-dark);
}


@media (max-width: 576px) {
    .btn-primary{
      padding: 6px 12px;
      font-size: 14px;
    }
}


.date-input-wrapper input,
.date-input-wrapper select {
  width: 100%;
  padding: 0 !important;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #757575;
  border: none;
  outline: none;
  background: transparent;
}

.date-input-wrapper input {
  outline: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.date-input-wrapper input:focus {
  outline: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}


.booking-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#total-amount {
  color: var(--primary-color);
}

/* Flatpickr Customization */
.flatpickr-calendar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 12px;
  font-family: var(--font-family);
}

.flatpickr-months .flatpickr-month {
  background: var(--primary-color);
  color: #000;
  fill: #000;
  height: 60px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 700;
}

.flatpickr-weekdays {
  background: var(--primary-color);
}

span.flatpickr-weekday {
  background: var(--primary-color);
  color: #000;
  font-weight: 600;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
  font-weight: 600;
}

.flatpickr-day.today {
  border-color: var(--primary-color);
}

.flatpickr-day:hover {
  background: #f3f4f6;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f3f4f6;
}