/* Global Variables */
:root {
  --primary-color: #71a90a;
  --secondary-color: #0791BE;
  --accent-color: #0791BE;
  --dark-text: #1E293B;
  --light-text: #64748B;
  --bg-light: #F8FAFC;
  --bg-gradient: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  --white: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s ease-in-out;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 1rem;
}

/* Reset & Basics */
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: #0F172A;
}

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

.section-header p {
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.subtitle {
  color: #0595c3;
}

/* ===== Header Base ===== */
.top-header {
  background: #0595c3;
  color: #fff;
  font-size: 14px;
  padding: 5px;
}

.top-header p {
  margin: 0px;
}

.top-header .container {
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== Left Side ===== */
.left-header {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.left-header a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.left-header a:hover {
  color: #facc15;
}

/* ===== Right Side Social ===== */
.right-header {
  display: flex;
  gap: 12px;
}

.right-header a {
  width: 34px;
  height: 34px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.right-header a:hover {
  background: #facc15;
  color: #111;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 768px) {
  .top-header .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .left-header {
    justify-content: center;
  }

  .right-header {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 480px) {

  .left-header {
    flex-direction: column;
    gap: 6px;
  }

  .left-header a {
    justify-content: center;
    font-size: 13px;
  }
}

/* Navbar Styling */
.navbar {
  padding: 11px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: #ffffffab;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

img.logo {
  width: 100%;
  max-width: 100px;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff !important;
}

.navbar.scrolled .navbar-brand {
  color: var(--primary-color) !important;
}

.nav-link {
  color: black;
  font-weight: 500;
  margin-left: 15px;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: black;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0px;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  max-width: 62px;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  transition: 0.4s;
  background-color: white;
}

.navbar.scrolled .navbar-toggler .bar {
  background-color: var(--dark-text);
}


/* Hero Section */
.banner {
  min-height: 750px;
  background: url('./images/destination/himachal-banner.jpg') center/cover no-repeat fixed;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  color: white;
  padding: 100px 0;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0 0 0 / 34%), rgb(0 0 0 / 24%));
}

.off-strip {
  font-size: 20px !important;
}

.banner-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease-out;
}

.col-content {
  text-align: left;
  align-content: center;
}

.form-attention-strip {
  background: #71a90a;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: .4px;
  animation: softBlink 1.4s infinite;
}

@keyframes softBlink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.banner .subtitle {
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-weight: 600;
}

.banner h1 {
  font-size: 3rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner p {
  font-size: 1.2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  background: #00000075;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  margin-right: auto;
}

/* Buttons */
.btn-primary {
  background: #0595c3;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #71a90a;
}

.btn-outline-light {
  border: 2px solid white;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 500;
  margin: 20px 0px;
}

.btn-outline-light:hover {
  background: #71a90a;
  color: #ffffff;
  transform: translateY(-2px);
  border: none;
}

.col-form {
  align-content: center;
}

.landing-form {
  background: #0000006e;
  padding: 15px;
}

.landing-form h4 {
  color: white;
  margin: 1rem 0px;
}

/* Sections */
section {
  padding: 80px 0;
}

.py-6 {
  padding: 100px 0;
}

.bg-light-gradient {
  background: var(--bg-gradient);
}

/* Package Cards */
.package-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: fit-content;
  border: 1px solid #eef2f6;
  position: relative;
}

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

.card-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
  text-align: left;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
  text-align: left;
}

.package-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.badge-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.package-features {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  color: var(--light-text);
}

.package-features li {
  margin-bottom: 8px;
}

.itnry {
  list-style-type: none;
  gap: 16px;
  padding: 0px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 10px;
  padding: 10px 0px;
}

.itnry p {
  margin: 0px;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 50px;
  font-weight: 500;
}

.view-schedule:active .travel-schedule {
  display: block;
}

.btn-outline-primary:hover {
  background-color: #71a90a;
  border: none;
  color: white;
}

ul.travel-schedule {
  list-style-type: none;
  text-align: left;
  display: none;
  margin-top: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 10px;
  padding: 10px;
}

.touch-icon {
  background: white;
  border-radius: 50%;
  border: 2px solid #0595c3;
}

.contact-icon {
  width: 100%;
  max-width: 46px;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 15px;
  border-radius: var(--radius);
  transition: var(--transition);
  height: 100%;
  align-content: center;
}

.feature-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E0F2FE 0%, #DBEAFE 100%);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
  background: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
}

/* testimonial section */
.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  transition: transform 0.5s ease-in-out;
}


/* Navigation buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0.8;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  opacity: 1;
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  margin: 0 -15px;
  /* Pull out to edges */
}

.testimonial-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .testimonial-slider-wrapper {
    padding-bottom: 60px;
    /* Space for buttons at bottom */
  }

  .slider-btn {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .prev-btn {
    left: 30%;
  }

  .next-btn {
    right: 30%;
  }
}


/* Slider */
.testimonial-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

/* Review Cards */
.review-card {
  flex: 0 0 50%;
  background: #fff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border-top: 5px solid var(--secondary-color);
  align-content: center;
  min-width: 50%;
}

.review-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.avatar {
  width: 60px;
  height: 60px;
  background: #f1f5f9;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary-color);
}

.avatar img.user {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* contact us */
#contact-us {
  background: var(--bg-gradient);
}

#contact-us h5 {
  text-align: left;
  position: relative;
}

#contact-us h5::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  top: 27px;
  left: 0;
  background-color: var(--accent-color);
  transition: var(--transition);
}

#contact-us h5::after {
  content: "";
  position: absolute;
  width: 97px;
  height: 2px;
  top: 27px;
  left: 45px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

#contact-us form {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
}

.contact-form p {
  text-align: left;
  font-weight: 600;
  font-size: 24px;
  color: #0595c3;
}

.contact-details:hover .flex-icon {
  background: #0595c3;
  transform: rotateY(180deg);
}

.contact-info {
  align-content: center;
  padding: 0px 20px;
  border: 1px solid #71a90a;
  border-radius: 10px;
  width: 100%;
  max-width: 84%;
  text-align: left;
  padding-left: 3.2rem;
}

.contact-info a {
  color: #0595c3;
}

.flex-icon {
  background: #71a90a;
  border-radius: 50px;
  padding: 10px;
  position: relative;
  left: 28px;
  transition: transform 0.5s;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #71a90a;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(224 151 16 / 4%);
}

/* Footer */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 30px;
  font-size: 0.9rem;
}

.footer-brand {
  color: white;
  text-decoration: none;
}

.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* popup form */
.modal-body {
  color: black;
}

#landingPopup h3 {
  background: #0595c3;
  margin: 0px;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
}

.btn-book {
  background: #0595c3;
  color: white;
}

.form-control {
  padding: 10px 15px;
}

.btn-book:hover {
  background: #71a90a;
  color: white;
}

.form-select {
  border: var(--bs-border-width) solid #0595c3;
  border-radius: 10px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* == footer== */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 0;
}

.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

.footer a {
  color: #bbb;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.dropdown-links,
.dropdown-links-two-col {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.dropdown-links.open,
.dropdown-links-two-col.open {
  max-height: 500px;
  margin-left: 26px;
}

.dropdown-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: start;
}

.dropdown-btn i {
  transition: transform 0.25s ease;
  margin-right: 11px;
  margin-left: 11px;
}

.dropdown-links-two-col {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: 0.75rem;
}

.dropdown-links-two-col ul {
  list-style: none;
  padding: 0;
  width: 45%;
  margin: 0;
}

.rotate {
  transform: rotate(180deg);
}

/* Cards We Accept */
.card-icon {
  width: 60px;
  height: 48px;
  border-radius: 20%;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  margin: 10px;
}

.approval-logo {
  width: 80px;
  margin: 10px 15px 0 0;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  background-color: #71a90a;
  border-color: #71a90a;
}

@media (max-width: 576px) {
  .card-icon {
    width: 50px;
    height: 50px;
  }

  .dropdown-links-two-col ul {
    width: 100%;
  }

  .approval-logo {
    width: 90px;
  }
}

.copyright {
  background: #0d0d0d;
  color: #aaa;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  margin-top: 1px;
}

.company-logo {
  width: 120px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 576px) {
  .company-logo {
    width: 90px;
  }
}

/* Cards */
.card-icon {
  width: 100%;
  max-width: 61px;
  object-fit: cover;
  background: #fff;
  padding: 10px;
  border-radius: 10%;
}

/* Approval logos */
.approval-logo {
  width: 55px;
  height: 53px;
}

footer h5 {
  position: relative;
}

footer h5::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  top: 27px;
  left: 0;
  background-color: var(--accent-color);
  transition: var(--transition);
}

footer h5::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  top: 27px;
  left: 25px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

footer .nav-link.active::after {
  width: 46px;
}

footer .nav-link:hover::after {
  width: 46px;
}

img.gt-logo {
  width: 100%;
  max-width: 100px;
}

/* ==thanks page=== */
/* Page background */
.thank-you-wrapper {
  min-height: 50vh;
}

/* Card */
.thank-you-card {
  border: none;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Icon */
.icon-wrapper {
  display: flex;
  justify-content: center;
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #e8f1ff;
  color: #71a90a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
}

/* Button */
.btn-primary {
  background-color: #71a90a;
  border: none;
  padding: 0.75rem 2.5rem;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #0595c3;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .card-icon {
    width: 100%;
    max-width: 85px;
    border-radius: 3px;
  }

  .approval-logo {
    width: 60px;
  }

  #packages .btn-book {
    display: block;
  }

  .contact-info {
    width: 100%;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .banner h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left;
  }

  .banner p {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 100%;
  }

  .col-content {
    text-align: center;
    padding-top: 40px;
  }

  .banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 40px;
  }

  .banner-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 !important;
  }

  .landing-form {
    margin-top: 0;
    border-radius: 10px;
  }

  .navbar {
    background: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .navbar-brand img {
    max-width: 80px;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }

  .navbar-toggler .bar {
    background-color: var(--dark-text);
  }

  .itnry p {
    font-size: 11px;
  }

  .banner {
    min-height: 0;
    height: auto;
    padding: 80px 0 40px;
  }

  .review-card {
    padding: 25px 15px;
    text-align: center;
  }

  .review-card .stars {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .review-card p {
    font-size: 0.9rem;
    padding: 0;
  }

  .reviewer {
    flex-direction: column;
    margin-top: 15px !important;
  }

  .reviewer .text-start {
    text-align: center !important;
  }

  .avatar {
    width: 55px;
    height: 55px;
    margin: 0 auto 10px !important;
  }

  .contact-info {
    font-size: 13px;
    padding-left: 2.8rem;
  }

  .flex-icon {
    left: 20px;
  }

  #contact-us h5 {
    margin-bottom: 30px !important;
  }

  footer .text-md-start {
    text-align: center !important;
  }

  .row-1 {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  #company-h5::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 2px;
    top: 27px;
    left: 6rem;
    background-color: var(--accent-color);
    transition: var(--transition);
  }
}

@media (max-width: 768px) {
  #company-h5::after {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 72px;
    height: 2px;
    top: 27px;
    left: 9rem;
    background-color: var(--accent-color);
    transition: var(--transition);
  }
}

@media (max-width: 576px) {

  .section-header h2 {
    font-size: 1.7rem;
  }

  .section-header p.subtitle {
    font-size: 0.9rem;
  }

  .package-card {
    margin: 0;
  }

  .itnry figure img {
    width: 24px;
    height: 24px;
  }

  /* Modal Fixes */
  .modal-dialog {
    margin: 10px;
    display: flex;
    align-items: center;
    min-height: calc(100% - 20px);
  }

  .modal-content {
    border-radius: 12px !important;
  }

  #landingPopup h3 {
    font-size: 1.25rem;
    padding: 15px;
  }

  .modal-body {
    padding: 1.5rem !important;
  }

  .card-img-wrapper {
    height: 200px;
  }
}