* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-text-color: #2f2f2f; /* primary color   */
  --secondary-text-color: #584c45;
  --main-bg: #fcf7ee;
  --white-text: #ffffff;
  --orange-text: #e26136;
  --orange-light-bg: #f9e8db;
  --brown-text: #846d62;
  --bg-gradient: linear-gradient(
    135deg,
    hsl(15 75% 55%),
    hsl(330 50% 55%)
  ) !important;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: var(--main-bg);
  font-size: 14px;
  font-weight: 400;
  margin: 0 !important;
}
body h1,
body h2,
body h3 {
  font-family: "Geom", sans-serif;
}
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}
.btn {
  background: #e85d04;
  color: var(--white-text);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 4px;
}
.hero-content {
  width: 85%;
}
/* HEADER LAYOUT */
.site-header {
  background: #fbf5ed;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-top-bottom {
  animation: slideDown 0.6s ease-out;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  background-color: var(--main-bg);
}

/* LOGO */
.site-branding img {
  height: 50px;
}

/* NAVIGATION */
.main-navigation ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #222;
  font-weight: 500;
  position: relative;
}

.main-navigation ul li a:hover {
  color: #f15a29;
}

/* Active underline */
.main-navigation ul li.current-menu-item a::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #f15a29;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}
.phoneimg {
  animation: highlight-icon 1.5s ease-in-out infinite alternate;
}

@keyframes highlight-icon {
  from {
    transform: scale(1);
    filter: brightness(1);
  }
  to {
    transform: scale(1.2);
    filter: brightness(1.3);
  }
}

/* BOOK NOW BUTTON */
.book-now-btn {
  background: linear-gradient(135deg, #ff6a00, #ff3d00);
  color: var(--white-text);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.book-now-btn:hover {
  background: linear-gradient(135deg, #ff3d00, #ff6a00);
}
#site-navigation {
  margin-left: auto;
  display: flex;
  width: inherit;
}
.header-btns {
  padding-left: 60px;
}
.book-btn {
  background: var(--bg-gradient);
  color: white;
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
}
/* .book-btn:hover {
  opacity: 0.7;
} */
.navbar-toggler:focus {
  box-shadow: none !important;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
}
.menu-toggle {
  display: none;
  background: none;
  font-size: 24px;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  color: var(--white-text);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.search-box {
  background: var(--white-text);
  padding: 15px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 20px;
}
.features h2,
.cars h2,
.destinations h2 {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 46px;
}
.feature-grid,
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.destination-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 20px;
}
.destinations.features {
  background: #ede6de4d;
}
.destinations.features p {
  color: #fdfbf6cc;
  font-size: 1.2rem;
}
.destinations.features h3 {
  color: #fdfbf6cc;
  font-size: 2rem;
}
.cars.features {
  background: #fcf7ee;
}
.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}
.object-fit-cover {
  object-fit: cover;
}
.transition {
  transition: transform 0.5s ease;
}
.transition:hover {
  transform: scale(1.1);
}
.view-all-desti-btn .btn,
.book-btn,
.buttons a.start-btn {
  background: var(--bg-gradient);
  transition: transform 0.3s ease; /* smooth animation */
}
.view-all-desti-btn .btn:hover,
.book-btn:hover,
.buttons a.start-btn:hover {
  transform: scale(1.05); /* scales both X and Y */
}
.feature-card,
.car-card,
.destination-card {
  background: var(--white-text);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.destination-card img,
.car-card img {
  width: 100%;
  border-radius: 6px;
}
.card:hover img {
  transform: scale(1.1);
  transition: transform 0.7s ease;
}
.card:hover .hover-opacity {
  opacity: 1 !important;
  transition: opacity 0.3s ease;
}
.destination-grid .text-white {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.cta {
  background: #fff3e0;
  padding: 50px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.site-footer {
  background: #30231d;
  color: #a6a5a4;
  text-align: center;
  padding: 15px;
}
ul#footer-menu {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
ul#footer-menu li,
ul#footer-menu li a {
  color: #a6a5a4;
}
ul#footer-menu li a {
  text-decoration: none;
}
ul#footer-menu li a:hover {
  color: var(--white-text);
}
/* Banner section */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-text);
  position: relative;
}
.hero-content.text-center {
  margin-bottom: auto;
}
.hero h1 {
  color: var(--white-text);
  text-align: center;
  font-size: 72px;
}
.hero h1 span {
  font-weight: 700;
  display: block;
  color: #f4c025;
}
.hero .text-accent {
  color: #f3c52b;
}
.hero-desc {
  font-size: 22px;
  margin-top: 15px;
  color: var(--white-text);
}
.hero .buttons {
  margin-top: 25px;
}
.gradient-bg {
  background: linear-gradient(to top, #f8efe6, transparent);
}
.hero .buttons a {
  margin: 0 10px;
}
/* animation for banner text */

/* Bottom-to-top animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to hero texts */
.hero-sub-text,
.hero-main-text,
.hero-desc,
#about,
.destinations.features,
.cars.features,
.features.contact {
  animation: fadeUp 1s ease-out forwards;
}

/* Staggered effect for nicer flow */
.hero-sub-text {
  animation-delay: 0.2s;
  font-weight: 500;
}
.hero-main-text {
  animation-delay: 0.4s;
}
.hero-desc {
  animation-delay: 0.6s;
}
.buttons {
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.8s;
}
/*  animation ends */
.btn {
  color: var(--white-text);
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
}
.buttons a.start-btn {
  background: var(--bg-gradient);
}
.buttons a.view-btn {
  background: transparent;
  color: var(--white-text);
  border: 1px solid var(--white-text);
}

.buttons a.view-btn:hover {
  background: var(--white-text);
  color: var(--primary-text-color);
}
.text-gradient {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hover-card {
  transition: all 0.3s ease;
}
.hover-card:hover {
  border-color: rgba(13, 110, 253, 0.3); /* Bootstrap primary with opacity */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #0d6efd, #6610f2); /* gradient-primary */
  transition: transform 0.3s ease;
}
.hover-card:hover .icon-box {
  transform: scale(1.1);
}
.section-subtitle {
  color: var(--orange-text);
  background-color: var(--orange-light-bg);
  font-size: 16px;
  border-radius: 20px;
  padding: 7px 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 45px;
}
span.text-new-line,
.text-new-line {
  display: block;
}
.gradiant-text {
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Geom", sans-serif;
}
.features .container .section-desc {
  color: var(--brown-text);
  margin-top: 15px;
  font-size: 18px;
}
.features .col-12 .features-card {
  background: #fdfbf7;
  border: 1px solid #e4d9cd;
}
.features-card .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient);
  color: #fff;
}
.features-card .icon-box svg {
  color: #fff;
  width: 1.7rem;
}
.cars.features .rounded-pill.text-white {
  background: var(--bg-gradient);
  font-size: 14px;
}
.cars.features .card-body .list-unstyled {
  margin-left: 0px;
}
.cars.features .card-body .list-unstyled li {
  margin-bottom: 10px;
  font-size: 15px;
}
.cars.features .card-body .list-unstyled li svg {
  color: var(--orange-text);
}
.cars.features .card-body .price-tag {
  color: var(--orange-text);
}
.features.contact {
  background: #ede6de4d;
}
.features.contact h2 {
  margin-top: 20px;
  text-align: left;
}
.features.contact .title-text {
  color: var(--brown-text);
  font-size: 14px;
  font-weight: 500;
}
/* ----social media icons------ */
.social {
  position: fixed;
  top: 35%;
  right: 0;
  width: 60px;
  z-index: 999;
}
.social ul {
  list-style-type: none;
  padding: 0;
  transform: translatex(-50px);
}
.social ul li {
  display: block;
  margin: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 70px;
  text-align: right;
  padding: 10px;
  border-radius: 30px 0px 0px 30px;
  transition: all 1s;
}
.social ul li:hover {
  transform: translatex(-30px);
}
.social ul li img {
  width: 30px;
  margin-right: 10px;
}
/*---------- contact form------ */
.contact-form-card {
  background: #fdfbf7;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #e4d9cd;
}
.contact-form-card .wpcf7 label {
  margin-bottom: 6px;
}
.contact-form-card .wpcf7 input[type="text"],
.contact-form-card .wpcf7 input[type="email"],
.contact-form-card .wpcf7 input[type="tel"],
.contact-form-card .wpcf7 input[type="date"],
.contact-form-card .form-select,
.contact-form-card select .contact-form-card textarea.form-control {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #e4d9cd !important;
  background-color: #fcf7ee !important;
  background: #fcf7ee !important;
  border-radius: 10px !important;
}
.contact-form-card input[type="submit"] {
  background: var(--bg-gradient);
  color: var(--white-text);
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 8px;
  width: 100%;
  transition: transform 0.3s ease;
}
.contact-form-card .wpcf7-textarea {
  min-height: 120px !important;
  height: 120px !important;
  border: 1px solid #e4d9cd !important;
  background-color: #fcf7ee !important;
  background: #fcf7ee !important;
  border-radius: 10px !important;
}
.contact-form-card input[type="submit"]:hover {
  transform: scale(1.05);
}
/*------------ MOBILE ------------------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    background: var(--white-text);
    width: 100%;
    left: 0;
    top: 60px;
    flex-direction: column;
    padding: 15px;
  }
  .site-nav.active {
    display: flex;
  }
  .site-info {
    flex-direction: column;
    gap: 10px;
  }
  .features h2,
  .cars h2,
  .destinations h2 {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 38px;
  }
  .destinations.features h3 {
    font-size: 1.2rem !important;
  }
  .destinations.features p {
    font-size: 1rem !important;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .navbar.navbar-expand-lg.py-3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .navbar-toggler {
    margin-left: auto;
    margin-right: 20px;
  }
  #site-navigation {
    padding-left: 40px;
    padding-top: 40px;
  }
  .header-btns {
    border-top: 1px solid #dfcbcb;
    padding: 30px 20px 10px 20px;
    margin: 20px 20px;
  }
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  .main-navigation ul {
    flex-direction: column;
    align-items: self-start;
    gap: 15px;
  }
}
@media (max-width: 820px) {
  .hero h1 {
    font-size: 52px !important;
  }
    .hero-desc {
    font-size: 18px;
  }
}
@media (min-width: 1025px) {
  .hero-content {
    width: 55% !important;
  }
}
@media (max-width: 568px) {
  .buttons a.start-btn {
    margin-bottom: 25px !important;
  }
  .features h2,
  .cars h2,
  .destinations h2 {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 30px !important;
  }
}
@media (max-width: 460px) {
  .destination-grid,
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)) !important;
  }
  .hero h1 {
    font-size: 32px !important;
  }
    .hero-desc {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .destination-grid,
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(90%, 1fr)) !important;
  }
  .hero h1 {
    font-size: 26px !important;
  }
  .hero-desc {
    font-size: 16px !important;
  }
}
