/* =========================================================
   ARJOO TOUR AND TRAVELS — PREMIUM THEME
   Clean, professional redesign. Structure/markup unchanged —
   only look, spacing, and interaction polish.
   ========================================================= */

:root {
  --navy: #0b2545;
  --navy-dark: #071a33;
  --navy-soft: #12325c;
  --gold: #f0b90b;
  --gold-dark: #cf9a02;
  --gold-light: #fbe29a;
  --ink: #1c2531;
  --muted: #66748c;
  --line: #e7eaf1;
  --bg-soft: #f6f8fb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.16);
  --bs-primary: var(--gold);
  --transition: all .35s cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Jost', sans-serif;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

p {
  color: var(--muted);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--gold);
  color: var(--navy-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 10px;
}

/* ---------- Utility / Bootstrap overrides ---------- */
.text-primary {
  color: var(--gold) !important;
}

.bg-primary {
  background-color: var(--navy) !important;
}

.btn {
  font-family: 'Jost', sans-serif;
  letter-spacing: .3px;
  font-weight: 600;
}

.btn-primary,
.btn.btn-primary {
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--navy-dark) !important;
  box-shadow: none;
  transition: var(--transition);
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-hover-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-title {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  display: inline-block;
  margin-bottom: 10px !important;
}

.section-about-title,
.section-booking-title {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

/* ---------- Spinner ---------- */
#spinner {
  z-index: 99999;
  transition: opacity .5s ease, visibility .5s ease;
  background: var(--white) !important;
}

#spinner .spinner-border {
  color: var(--gold) !important;
  border-width: 4px;
}

#spinner:not(.show) {
  opacity: 0;
  visibility: hidden;
}

/* ---------- Topbar ---------- */
.container-fluid.bg-primary {
  background: var(--navy-dark) !important;
  padding-top: 8px;
  padding-bottom: 8px;
}

.container-fluid.bg-primary a,
.container-fluid.bg-primary small {
  color: #cfd9ea !important;
  font-weight: 400;
}

.container-fluid.bg-primary a:hover {
  color: var(--gold) !important;
}

.container-fluid.bg-primary .btn-outline-light {
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}

.container-fluid.bg-primary .btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  transition: var(--transition);
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-md) !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand img {
  height: 100px;
  width: auto;
  transition: var(--transition);
}

.navbar.sticky-top .navbar-brand img {
  height: 90px;
}

.navbar .nav-item .nav-link {
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin: 0 4px;
  padding: 10px 14px !important;
  border-radius: 30px;
  position: relative;
}

.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
  color: var(--navy);
  background: var(--bg-soft);
}

.navbar .nav-item .nav-link.active {
  color: var(--gold-dark);
}

.navbar .btn-primary {
  margin-left: 12px;
}

.navbar-toggler {
  border: 1px solid var(--line);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---------- Hero Carousel ---------- */
.carousel-header {
  position: relative;
}

.carousel-header .carousel-item img {
  width: 100%;
  height: 88vh;
  min-height: 480px;
  object-fit: cover;
  filter: brightness(.62);
}

.carousel-header .carousel-caption {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.carousel-header .carousel-caption h4 {
  color: var(--gold) !important;
  font-size: 15px;
}

.carousel-header .carousel-caption h1 {
  color: #fff !important;
  font-weight: 700;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.carousel-header .carousel-caption p {
  color: #e7ecf5;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: none;
}

.carousel-indicators .active {
  background: var(--gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .15) !important;
  backdrop-filter: blur(4px);
  background-size: 45% !important;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--gold) !important;
}

/* ---------- About ---------- */
.about {
  background: var(--white);
}

.about .col-lg-5 img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about h1 {
  font-size: 2.4rem;
  line-height: 1.25;
}

.about p {
  font-size: 15.5px;
}

/* ---------- Tour Packages ---------- */
.tour-packages {
  background: var(--bg-soft);
}

.tour-packages .section-title {
  display: block;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 13px;
}

.tour-packages .section-title h2 {
  font-size: 2.2rem;
  margin-top: 10px;
  color: var(--navy);
}

.tour-packages .section-title p {
  max-width: 600px;
  margin: 12px auto 0;
}

.tour-package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  text-align: left;
  border: 1px solid var(--line);
}

.tour-package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-image {
  overflow: hidden;
  height: 220px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.tour-package-card:hover .package-image img {
  transform: scale(1.08);
}

.package-content {
  padding: 22px 24px 26px;
}

.package-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.package-content h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--navy);
}

.package-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.package-btn:hover {
  color: var(--gold-dark);
  gap: 12px;
}

/* ---------- Our Vehicles (destination) ---------- */
.destination {
  background: var(--white);
}

.destination-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.destination-img:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.destination-img img {
  height: 260px;
  object-fit: cover;
  transition: transform .6s ease;
}

.destination-img:hover img {
  transform: scale(1.07);
}

.destination-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(7, 26, 51, .92) 10%, rgba(7, 26, 51, .35) 65%, transparent 100%);
  padding-top: 55px !important;
}

.destination-overlay h4 {
  color: #fff !important;
  font-size: 1.15rem;
}

.destination-overlay .btn-hover {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  color: var(--gold) !important;
  border-bottom: 1px solid rgba(240, 185, 11, .5);
  padding-bottom: 2px;
}

.destination-overlay .btn-hover:hover {
  color: #fff !important;
  border-color: #fff;
}

/* ---------- Why Choose Us ---------- */
.why-choose-section {
  padding: 70px 0;
  background: var(--bg-soft);
}

.why-image-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  height: 100%;
  box-shadow: var(--shadow-md);
}

.why-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(7, 26, 51, .92) 20%, transparent 100%);
}

.image-overlay span {
  display: block;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.image-overlay p {
  color: #dbe3f0;
  margin: 0;
  font-size: 14.5px;
}

.why-content-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-heading .small-title {
  display: inline-block;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 13px;
}

.section-heading h2 {
  font-size: 2rem;
  margin-top: 8px;
  margin-bottom: 10px;
}

.section-heading h2 span {
  color: var(--gold-dark);
}

.section-heading p {
  max-width: 480px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  height: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-size: 1.2rem;
}

.why-card h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 14px;
  margin: 0;
}

/* ---------- Booking ---------- */
.booking {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 60%, var(--navy-soft));
  position: relative;
}

.booking h1,
.booking h3 {
  color: #fff !important;
}

.booking p {
  color: #cbd6e8 !important;
}

.booking .form-floating>label {
  color: #7a8aa3;
}

.booking .form-control {
  border-radius: var(--radius-sm);
  padding: 1rem .9rem;
  font-size: 14.5px;
}

.booking .form-control:focus {
  box-shadow: 0 0 0 3px rgba(240, 185, 11, .25);
}

.booking form .btn.btn-primary {
  border-radius: var(--radius-sm);
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
}

.testimonial-item {
  padding: 0 10px;
}

.testimonial-comment {
  background: var(--bg-soft) !important;
  border-radius: var(--radius);
  position: relative;
  min-height: 165px;
  display: flex;
  align-items: center;
}

.testimonial-comment p {
  font-size: 14.5px;
  font-style: italic;
  color: var(--ink);
}

.testimonial-img {
  width: 68px;
  height: 68px;
  margin: 0 auto !important;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.testimonial-img {
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.testimonial-carousel .owl-nav button {
  background: var(--white) !important;
  color: var(--navy) !important;
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  box-shadow: var(--shadow-sm);
}

.testimonial-carousel .owl-nav button:hover {
  background: var(--gold) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
  background: var(--line) !important;
}

.testimonial-carousel .owl-dots .owl-dot.active span {
  background: var(--gold) !important;
}

/* ---------- Packages carousel (if used) ---------- */
.packages-carousel .owl-nav button {
  background: var(--white) !important;
  color: var(--navy) !important;
  box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  padding-top: 10px;
}

.footer img {
  max-height: 60px;
  margin-bottom: 16px;
}

.footer p {
  color: #9fb0c9 !important;
  font-size: 13.5px;
}

.footer h4 {
  color: #fff !important;
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
}

.footer-item .nav-link,
.footer-item a {
  color: #b9c6dc;
  padding: 6px 0;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: none !important;
}

.footer-item a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-item a i {
  color: var(--gold);
  width: 16px;
}

.copyright-section {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #9fb0c9;
  font-size: 13.5px;
  padding: 16px 24px;
  margin: 0;
}

.copyright-section a {
  color: #fff;
  font-weight: 600;
}

.copyright-section a:hover {
  color: var(--gold);
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy) !important;
  border: none;
  box-shadow: var(--shadow-md);
}

.back-to-top:hover {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
}

/* ---------- Booking Modal (Book Now) ---------- */
.booking-modal {
  border-radius: var(--radius);
  border: none;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-modal .modal-header {
  background: var(--navy);
  border: none;
  padding: 20px 24px;
}

.booking-modal .modal-title {
  color: #fff;
  font-family: 'Jost', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-modal .modal-title i {
  color: var(--gold);
}

.booking-modal .modal-body {
  padding: 28px;
}

.booking-intro {
  color: var(--muted);
  margin-bottom: 20px;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.booking-option:hover {
  border-color: var(--gold);
  background: var(--bg-soft);
  transform: translateX(4px);
}

.option-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.booking-option:hover .option-icon {
  background: var(--gold);
  color: var(--navy-dark);
}

.option-content h6 {
  margin: 0 0 2px;
  color: var(--navy);
  font-size: 1rem;
}

.option-content p {
  margin: 0;
  font-size: 13px;
}

.option-arrow {
  margin-left: auto;
  color: var(--muted);
}

.booking-modal .modal-footer {
  border: none;
  padding: 0 28px 26px;
}

.close-modal-btn {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  color: var(--muted);
}

.close-modal-btn:hover {
  background: var(--bg-soft);
}

/* ---------- Call Now Modal (auto popup) ---------- */
.call-modal {
  border-radius: var(--radius);
  border: none;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.custom-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 3;
}

.call-icon {
  width: 66px;
  height: 66px;
  margin: 8px auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.call-modal h3 {
  margin-bottom: 8px;
}

.call-text {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 14.5px;
}

.phone-number {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 18px;
}

.phone-number i {
  color: var(--gold-dark);
  margin-right: 8px;
}

.call-btn {
  background: var(--navy);
  color: #fff;
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.small-text {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 16px;
}

/* ---------- Contact page ---------- */
.contact-info-section {
  background: var(--bg-soft);
}

.contact-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-lines span {
  width: 46px;
  height: 1px;
  background: var(--line);
}

.contact-lines i {
  color: var(--gold-dark);
}

.contact-subtitle {
  display: block;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.contact-title span {
  color: var(--gold-dark);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-slide-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-slide-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-slide-box span {
  display: block;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 4px;
}

.contact-slide-box h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
  display: inline-block;
}

.contact-slide-box p {
  font-size: 13.5px;
  margin: 10px 0 14px;
}

.contact-slide-box>div>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.contact-slide-box>div>a:hover {
  color: var(--gold-dark);
  gap: 12px;
}

/* ---------- Inner page banner ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 75%);
  padding: 64px 0 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(240, 185, 11, .15), transparent 55%);
}

.page-banner h1 {
  color: #fff;
  font-size: 2.4rem;
  position: relative;
}

.page-banner .breadcrumb-custom {
  color: #9fb0c9;
  font-size: 14px;
  margin-top: 10px;
  position: relative;
}

.page-banner .breadcrumb-custom a {
  color: var(--gold);
  font-weight: 600;
}

.page-banner .breadcrumb-custom i {
  margin: 0 8px;
  font-size: 10px;
  color: #4d6083;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .carousel-header .carousel-item img {
    height: 70vh;
    min-height: 380px;
  }

  .navbar {
    padding: 14px 0;
  }

  .navbar .btn-primary {
    margin: 14px 0 6px;
    display: inline-block;
  }

  .why-image-box {
    min-height: 260px;
  }

  .why-image-box img {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .carousel-header .carousel-item img {
    height: 60vh;
    min-height: 340px;
  }

  .about h1,
  .tour-packages .section-title h2,
  .section-heading h2,
  .contact-title {
    font-size: 1.6rem;
  }

  .package-image,
  .destination-img img {
    height: 190px;
  }

  .booking-option {
    padding: 14px;
  }
}

@media (max-width: 575px) {
  .contact-slide-box {
    flex-direction: column;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

/* -------------------  */
.owl-next,
.owl-prev {
  display: none !important;
}

/* ======= About */
.about,
.tour-packages,
.footer,
.contact-info-section {
  padding: 50px 0
}