:root {
  --control-border: #e5e7eb;
  --control-focus: #26906e;
  --black: #26906e;
  --black-dark: #1a6266;
  --accent: #e67e22;
  --accent-hover: #d86f12;
  --heading: #040818;
  --text: #4b5563;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background:#eceae8 ;
  color: var(--text);
}

.premium-card {
  border: 1px solid var(--control-border);
  border-radius: 18px;
  background: var(--surface);
}

.section-title {
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.2px;
  margin-bottom: 24px;
}

.field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.field span {
  color: var(--heading);
  font-size: 0.9rem;
  font-weight: 300;
}

.field input,
.field select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--control-border);
  border-radius: 10px;
  background: #fff;
  padding: 0.65rem 0.85rem;
  color: var(--heading);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--control-focus);
  box-shadow: 0 0 0 3px rgba(38, 144, 110, 0.12);
}

.field input::placeholder {
  color: #94a3b8;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 600;
}

.checkbox-row input {
  margin-top: 0.2rem;
  height: 1.05rem;
  width: 1.05rem;
  accent-color: var(--black);
}

.btn-black,
.btn-secondary {
  min-height: 46px;
  border-radius: 10px;
  padding: 0 1.25rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-black {
  background: #FFB300;
  color: #fff;
  border: none;
}

.btn-black:hover {
  background: var(--accent-hover);
}

.btn-black:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
}

.btn-secondary {
  background: #fff;
  color: var(--heading);
  border: 1px solid var(--control-border);
}

.btn-secondary:hover {
  border-color: var(--black);
  color: var(--black);
}

.summary-heading {
  color: var(--heading);
  font-size: 1rem;
  font-weight: 800;
}

.summary-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary-list dt {
  color: #64748b;
  font-size: 0.9rem;
}

.summary-list dd {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.receipt-summary {
  border: 1px solid var(--control-border);
  border-radius: 14px;
  background: #fff;
}

.receipt-header {
  background: #040818;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 14px 14px 0 0;
}

.summary-total {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
}

hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.text-muted {
  color: #64748b;
}

.text-heading {
  color: var(--heading);
}

.text-accent {
  color: var(--accent);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  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: #ffffff transparent #ffffff 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);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #000;
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Floating Call Button */
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 50px;
  width: 65px;
  height: 65px;
  background: #198754;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  z-index: 9999;
  transition: all .3s ease;
}

.floating-call:hover {
  background: #146c43;
  color: #fff;
  transform: scale(1.08);
}

/*--------------------------------------------------------------
# Global Header & Navigation
--------------------------------------------------------------*/
.header {
  background-color: #000000;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.header .logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

.header .logo img {
  max-height: 30px;
  width: auto;
  display: block;
}

/* Desktop Navigation Layout */
@media (min-width: 1200px) {
  .navmenu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0;
  }

  .navmenu ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 30px;
  }

  .navmenu ul li {
    position: relative;
  }

  .navmenu ul li a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    padding: 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
  }

  .navmenu ul li a:hover,
  .navmenu ul li a:focus,
  .navmenu ul li a.active {
    color: #ababab !important;
  }

  .mobile-nav-toggle {
    display: none;
  }
}

/* Book Now Button */
.header .btn-getstarted {
  background: #ffffff;
  color: #000000 !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 15px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header .btn-getstarted:hover {
  background: #F4B400;
  color: #000000 !important;
}

/* Mobile & Tablet Responsive Navigation Layout */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 28px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 10px;
    z-index: 1001;
  }

  /* Keep Book Now button visible next to toggle on mobile view */
  .header .btn-getstarted {
    font-size: 13px;
    padding: 6px 14px;
    margin-left: auto;
    margin-right: 5px;
    display: inline-flex !important;
  }

  .navmenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff; /* White background matching the secondary image requirement */
    transition: 0.35s ease-in-out;
    overflow-y: auto;
    padding-top: 80px;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

  body.mobile-nav-active {
    overflow: hidden;
  }

  body.mobile-nav-active .navmenu {
    left: 0;
  }

  .navmenu ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .navmenu ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .navmenu ul li a {
    display: block;
    padding: 16px 24px;
    color: var(--heading) !important; /* Dark text for white background theme */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
  }

  .navmenu ul li a:hover,
  .navmenu ul li a:focus,
  .navmenu ul li a.active {
    color: var(--accent) !important;
    background: rgba(0, 0, 0, 0.02);
  }
}

/* Footer Fixes */
#footer.footer {
  background-color: #000000;
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 30px;
}

#footer .footer-top {
  margin-bottom: 30px;
}

#footer h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#footer ul {
  padding-left: 0;
  list-style: none;
}

#footer ul li {
  margin-bottom: 0.5rem;
}

#footer ul li a {
  color: #cbd5e1;
  text-decoration: none;
}

#footer ul li a:hover {
  color: #ffffff;
}

#footer .copyright {
  border-top: 1px solid #222222;
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}