/* ===== Makando Car Hire - Public Site Styles ===== */

:root {
  --primary: #E3A125;
  --primary-dark: #c78c1e;
  --brown: #6B3F26;
  --brown-light: #8a5636;
  --dark: #2D3E2F;
  --dark-deep: #4A3728;
  --dark-light: #3a5040;
  --accent: #E3A125;
  --light: #faf8f5;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --text-dark: #2c2c2c;
  --text-muted: #6b6b6b;
}

/* --- General --- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

a { transition: all 0.3s ease; }

section { padding: 80px 0; }

.section-title {
  font-weight: 800;
  color: var(--dark-deep);
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* --- Navbar --- */
.mk-navbar {
  background: #f5f0e8;
  padding: 12px 0;
  transition: all 0.4s ease;
  border-bottom: 3px solid var(--primary);
}

.mk-navbar.scrolled {
  background: rgba(245, 240, 232, 0.98);
  box-shadow: 0 4px 30px rgba(74, 55, 40, 0.15);
}

.mk-navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark-deep) !important;
  letter-spacing: 1px;
}

.mk-navbar .navbar-brand i {
  margin-right: 8px;
  color: var(--primary);
}

.mk-navbar .nav-link {
  color: var(--dark-deep) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: color 0.3s;
}

.mk-navbar .nav-link:hover,
.mk-navbar .nav-link.active {
  color: var(--primary) !important;
}

.mk-navbar .navbar-toggler {
  border-color: rgba(74,55,40,0.3);
}

.mk-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74,55,40,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-makando {
  background: var(--primary);
  color: var(--dark-deep);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-makando:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 63, 38, 0.35);
  text-decoration: none;
}

.btn-makando-outline {
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-makando-outline:hover {
  background: var(--primary);
  color: var(--dark-deep);
  text-decoration: none;
  transform: translateY(-2px);
}

/* --- Hero Slider --- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark-deep);
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  z-index: 1;
}

/* Placeholder gradients when no image uploaded */
.hero-slide:not([style*="background-image"]):nth-child(1) {
  background: linear-gradient(135deg, #2D3E2F 0%, #4A3728 60%, #1a2a1c 100%);
}
.hero-slide:not([style*="background-image"]):nth-child(2) {
  background: linear-gradient(135deg, #4A3728 0%, #2D3E2F 60%, #3a2a1a 100%);
}
.hero-slide:not([style*="background-image"]):nth-child(3) {
  background: linear-gradient(135deg, #1a2a1c 0%, #4A3728 40%, #2D3E2F 100%);
}
.hero-slide:not([style*="background-image"]):nth-child(4) {
  background: linear-gradient(135deg, #3a2a1a 0%, #2D3E2F 50%, #4A3728 100%);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(42, 32, 22, 0.78) 0%,
    rgba(42, 32, 22, 0.55) 50%,
    rgba(42, 32, 22, 0.30) 100%
  );
  z-index: 1;
}

.hero-slide-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-slide-content {
  max-width: 640px;
  padding: 120px 0 80px;
}

.hero-slide-content h1 {
  font-size: 3.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-slide.active .hero-slide-content h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.hero-slide.active .hero-slide-content p {
  opacity: 1;
  transform: translateY(0);
}

.btn-hero-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--dark-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border: 2px solid var(--primary);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s, background 0.3s, color 0.3s;
}

.hero-slide.active .btn-hero-cta {
  opacity: 1;
  transform: translateY(0);
}

.btn-hero-cta:hover {
  background: transparent;
  color: var(--primary);
  text-decoration: none;
}

/* Slider Side Navigation */
.hero-slider-nav {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px;
  outline: none;
}

.hero-nav-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: color 0.3s;
}

.hero-nav-btn:hover .hero-nav-label {
  color: var(--primary);
}

.hero-nav-circle {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.hero-nav-circle i {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.hero-nav-btn:hover .hero-nav-circle {
  border-color: var(--primary);
  background: rgba(227,161,37,0.1);
}

.hero-nav-btn:hover .hero-nav-circle i {
  color: var(--primary);
}

.hero-nav-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
  outline: none;
}

.hero-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-dot:hover {
  border-color: var(--primary);
}
  opacity: 0.6;
}

/* --- About Section --- */
.about-section {
  background: var(--white);
}

.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  padding: 10px 0;
  font-size: 1.05rem;
  color: #555;
}

.about-features li i {
  color: var(--primary);
  margin-right: 12px;
  font-size: 1.1rem;
}

.about-image-placeholder {
  background: var(--dark);
  border-radius: 15px;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(227,161,37,0.15);
}

.about-image-placeholder i {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.3;
}

.about-image-placeholder i {
  font-size: 5rem;
  color: var(--brown);
  opacity: 0.4;
}

/* --- Services Section --- */
.services-section {
  background: var(--light);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 5px 25px rgba(74, 55, 40, 0.06);
  height: 100%;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(45, 62, 47, 0.12);
  border-bottom-color: var(--dark);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--dark);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.service-card h4 {
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  padding: 5px 0;
  color: #555;
  font-size: 0.95rem;
}

.service-card ul li i {
  color: var(--primary);
  margin-right: 8px;
}

/* --- Why Choose Us Section --- */
.why-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-card .icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(227,161,37,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s;
  border: 2px solid rgba(227,161,37,0.15);
}

.why-card:hover .icon-circle {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.why-card i {
  font-size: 1.6rem;
  color: var(--primary);
  transition: all 0.3s;
}

.why-card:hover i {
  color: var(--dark-deep);
}

.why-card h6 {
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

/* --- Clients Section --- */
.clients-section {
  background: var(--white);
}

.client-badge {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border-radius: 50px;
  padding: 12px 24px;
  margin: 8px;
  font-weight: 600;
  color: var(--dark-deep);
  transition: all 0.3s;
  border: 1px solid rgba(107,63,38,0.1);
}

.client-badge:hover {
  background: var(--primary);
  color: var(--dark-deep);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(227,161,37,0.3);
}

.client-badge i {
  margin-right: 10px;
  color: var(--brown);
}

.client-badge:hover i {
  color: var(--dark-deep);
}

/* --- Fleet Section --- */
.fleet-section {
  background: var(--light);
}

.fleet-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(74, 55, 40, 0.06);
  transition: all 0.4s;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(45, 62, 47, 0.12);
  border-bottom-color: var(--primary);
}

.fleet-card-img {
  height: 220px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.05);
}

.fleet-card-img i {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.4;
}

.fleet-card-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--dark-deep);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 8px;
  z-index: 2;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.fleet-card-body {
  padding: 22px 25px 25px;
}

.fleet-card-body h5 {
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 2px;
}

.fleet-card-category {
  display: block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.fleet-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.fleet-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--dark-deep);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: all 0.3s;
}

.fleet-card-btn:hover {
  background: #c98a1f;
  color: #fff;
  text-decoration: none;
  transform: translateX(3px);
}

.fleet-card-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.fleet-card-btn:hover i {
  transform: translateX(3px);
}

.fleet-note {
  background: rgba(45,62,47,0.06);
  border-left: 4px solid var(--dark);
  border-radius: 8px;
  padding: 20px 25px;
  margin-top: 40px;
}

.fleet-note i {
  color: var(--dark);
  margin-right: 10px;
}

/* --- Service Areas Section --- */
.areas-section {
  background: var(--white);
}

.area-tag {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  margin: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: 2px solid var(--dark);
}

.area-tag:hover {
  background: var(--primary);
  color: var(--dark-deep);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* --- Contact / CTA Section --- */
.cta-section {
  background: var(--dark-deep);
  color: var(--white);
  position: relative;
  border-top: 4px solid var(--primary);
}

.cta-section h2 {
  font-weight: 900;
  color: var(--white);
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.contact-info-item .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-info-item .icon-box i {
  font-size: 1.2rem;
  color: var(--white);
}

.contact-info-item span {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.btn-dark-makando {
  background: var(--dark-deep);
  color: var(--primary);
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.btn-dark-makando:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  text-decoration: none;
}

/* --- Contact Page Form --- */
.contact-form-section {
  background: var(--light);
}

.contact-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(74, 55, 40, 0.06);
}

.contact-card .form-control {
  border-radius: 10px;
  padding: 12px 18px;
  border: 2px solid var(--gray-light);
  transition: all 0.3s;
}

.contact-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(227,161,37,0.15);
}

.contact-sidebar {
  background: var(--dark);
  border-radius: 15px;
  padding: 40px;
  color: var(--white);
  border-top: 4px solid var(--primary);
}

.contact-sidebar h4 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary);
}

.contact-sidebar .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-sidebar .info-item .icon {
  width: 45px;
  height: 45px;
  background: rgba(227,161,37,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-sidebar .info-item .icon i {
  color: var(--primary);
}

.contact-sidebar .info-item .text h6 {
  margin-bottom: 3px;
  font-weight: 700;
  color: var(--white);
}

.contact-sidebar .info-item .text p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* --- Footer --- */
.mk-footer {
  background: #f5f0e8;
  color: var(--dark-deep);
  padding: 60px 0 30px;
  border-top: 4px solid var(--primary);
}

.mk-footer h5 {
  color: var(--dark-deep);
  font-weight: 700;
  margin-bottom: 20px;
}

.mk-footer p {
  line-height: 1.8;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.mk-footer a {
  color: var(--brown);
  text-decoration: none;
  transition: all 0.3s;
}

.mk-footer a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  padding: 5px 0;
}

.footer-links li a {
  font-size: 0.95rem;
}

.footer-links li a i {
  margin-right: 8px;
  font-size: 0.8rem;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(74,55,40,0.1);
  padding-top: 25px;
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom span {
  color: var(--primary);
  font-weight: 700;
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}

.page-header-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-header-bg::before {
  background: rgba(45,62,47,0.65);
  clip-path: none;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74,55,40,0.12);
  clip-path: polygon(0 0, 60% 0, 40% 100%, 0% 100%);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.page-header h1 {
  font-weight: 900;
  color: var(--white);
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .hero-slide-content h1 { font-size: 2.8rem; }
  .hero-slide-content { max-width: 500px; }
  .hero-slider-nav { right: 20px; }
  .hero-nav-circle { width: 38px; height: 38px; }
  .hero-nav-line { height: 30px; }
  section { padding: 60px 0; }
}

@media (max-width: 767px) {
  .hero-slide-content h1 { font-size: 2.2rem; }
  .hero-slide-content p { font-size: 1rem; }
  .hero-slider { min-height: 500px; height: 100vh; }
  .hero-slide-content { padding: 100px 0 60px; max-width: 100%; padding-right: 60px; }
  .hero-slider-nav { right: 10px; }
  .hero-nav-label { font-size: 0.6rem; letter-spacing: 2px; }
  .hero-nav-circle { width: 34px; height: 34px; }
  .hero-nav-circle i { font-size: 0.75rem; }
  .hero-nav-line { height: 20px; }
  .hero-slider-dots { bottom: 25px; }
  .hero-dot { width: 10px; height: 10px; }
  .btn-hero-cta { padding: 12px 28px; font-size: 0.9rem; }
  .page-header { padding: 120px 0 60px; }
  .page-header h1 { font-size: 2rem; }
}

/* --- Vehicle Specs Mobile Compact --- */
@media (max-width: 575px) {
  .spec-row .spec-item { padding: 8px 2px !important; }
  .spec-row .spec-icon { width: 26px !important; height: 26px !important; margin-bottom: 2px !important; }
  .spec-row .spec-icon i { font-size: 0.65rem !important; }
  .spec-row .spec-label { font-size: 0.55rem !important; letter-spacing: 0 !important; }
  .spec-row .spec-value { font-size: 0.72rem !important; }
}

/* --- Booking Form (Car Detail) --- */
#bookingForm .form-control,
#bookingForm .input-group-text {
  font-size: 0.88rem;
  height: auto;
}
#bookingForm .form-control::placeholder {
  color: #adb5bd;
}
#bookingForm .form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.15rem rgba(227,161,37,0.2);
}
#bookingForm select.form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.15rem rgba(227,161,37,0.2);
}
/* Chrome/Edge date input icons */
#bookingForm input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
/* Brand-colored date picker (Chrome/Edge) */
#bookingForm input[type="date"]::-webkit-datetime-edit {
  color: var(--text-dark);
}
::-webkit-calendar-picker-indicator:hover {
  opacity: 0.8;
}
input[type="date"]::-webkit-datetime-edit-day-field:focus,
input[type="date"]::-webkit-datetime-edit-month-field:focus,
input[type="date"]::-webkit-datetime-edit-year-field:focus {
  background: var(--primary);
  color: #fff;
  border-radius: 2px;
}
/* Native date picker accent color (Chrome 93+) */
#bookingForm input[type="date"] {
  accent-color: #E3A125;
  color-scheme: light;
}
/* Country code dropdown */
#countryCode {
  border-radius: 0.25rem 0 0 0.25rem;
  padding: 0.375rem 0.5rem;
  appearance: auto;
  -webkit-appearance: auto;
}
/* WhatsApp hover */
#whatsappBtn:hover,
#whatsappBtnCta:hover {
  background: #20ba5a !important;
  transform: translateY(-1px);
}
#whatsappBtn, #whatsappBtnCta {
  transition: all 0.3s;
}
/* Sticky booking form on desktop */
@media (min-width: 992px) {
  .col-lg-5 > .card:first-child {
    position: sticky;
    top: 90px;
  }
}
