/* Compact, fluid presentation layer for the public website. */

:root {
  --mp-section-space: clamp(54px, 6vw, 82px);
  --mp-container-gutter: clamp(16px, 3vw, 28px);
  --mp-forest-950: #0d2117;
  --mp-forest-900: #132d20;
  --mp-forest-800: #1d422e;
  --mp-forest-700: #28563b;
  --mp-moss: #6aaf08;
  --mp-safari-gold: #c58a32;
  --mp-sand: #f3eee2;
  --mp-cream: #faf8f2;
  --mp-ink: #18231c;
}

html {
  font-size: 15px;
}

body {
  background: var(--mp-cream);
  font-size: 15px;
  line-height: 1.65;
  color: #536159;
}

p {
  line-height: 1.65;
  color: #59665f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--mp-ink);
  font-family: 'Roboto', sans-serif;
  letter-spacing: -.025em;
}

h1 { font-size: clamp(2rem, 3vw, 2.5rem); }
h2 { font-size: clamp(1.75rem, 2.5vw, 2.2rem); }
h3 { font-size: clamp(1.45rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

.container,
.container-fluid {
  padding-left: var(--mp-container-gutter);
  padding-right: var(--mp-container-gutter);
}

/* Header */
.navbar-brand img {
  width: 155px;
  max-height: 54px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .navbar .nav-item .nav-link {
    padding: 20px 0;
    margin-right: 18px;
    font-size: 15px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    padding: 8px 24px;
    font-size: 15px;
  }
}

.theme-btn {
  padding: 5px 5px 5px 18px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
}

.theme-btn i {
  width: 34px;
  height: 34px;
  margin-left: 7px;
  line-height: 34px;
  border-radius: 7px;
}

/* Hero */
.hero-single {
  min-height: clamp(430px, 55vh, 500px);
  padding-top: clamp(68px, 7vw, 82px);
  padding-bottom: 30px;
}

.hero-section .hero-single {
  align-items: flex-end;
}

.hero-section .hero-single > .container {
  max-width: none;
  padding-left: clamp(20px, 4vw, 58px);
  padding-right: clamp(20px, 4vw, 58px);
}

.hero-single .hero-content {
  max-width: 500px;
  margin-top: 0;
  padding: clamp(17px, 2vw, 22px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 4px solid #6aaf08;
  border-radius: 0 16px 16px 0;
  background: linear-gradient(110deg, rgba(11, 24, 14, .72), rgba(11, 24, 14, .42));
  box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
  backdrop-filter: blur(2px);
}

.hero-single .hero-content .wow {
  visibility: visible !important;
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
}

.hero-single .hero-content .hero-title {
  max-width: 460px;
  margin: 11px 0 14px;
  font-size: clamp(29px, 2.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -.035em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .36);
}

.hero-single .hero-content .hero-sub-title {
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(217, 246, 176, .42);
  border-radius: 999px;
  background: rgba(14, 31, 18, .36);
  font-family: 'Roboto', sans-serif;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-single .hero-content .hero-btn {
  gap: 1rem;
  margin-top: .75rem;
}

.hero-slider2.owl-theme .owl-nav .owl-prev,
.hero-slider2.owl-theme .owl-nav .owl-next {
  top: auto;
  bottom: 24px;
  transform: none;
}

.hero-slider2.owl-theme .owl-nav .owl-prev {
  right: 82px;
  left: auto;
}

.hero-slider2.owl-theme .owl-nav .owl-next {
  right: 26px;
}

.hero-slider2.owl-theme .owl-nav [class*="owl-"] {
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 44px;
}

/* Shared section rhythm */
.py-120,
.pt-120 {
  padding-top: var(--mp-section-space);
}

.py-120,
.pb-120 {
  padding-bottom: var(--mp-section-space);
}

.pb-140 {
  padding-bottom: calc(var(--mp-section-space) + 10px);
}

.site-heading {
  margin-bottom: clamp(28px, 4vw, 38px);
}

.site-title-tagline {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(106, 175, 8, .25);
  border-radius: 999px;
  background: rgba(106, 175, 8, .09);
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-title {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.site-heading > .site-title-tagline + .site-title {
  margin-top: 12px;
}

.site-heading p {
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 15px;
}

/* Professional content rhythm shared by all public pages */
.main p,
.main li {
  font-size: 15px;
}

.main strong {
  color: #27342c;
  font-weight: 700;
}

.animal-area,
.event-area,
.blog-area.bg,
.counter-area.bg {
  background: #f3f7f1 !important;
}

.about-area,
.faq-area,
.blog-area {
  position: relative;
}

.about-img img {
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(27, 52, 34, .14);
}

.about-img::before {
  border-width: 2px;
  border-color: rgba(106, 175, 8, .55);
}

.about-list li {
  color: #3f4c44;
  line-height: 1.5;
}

.blog-item,
.event-item,
.testimonial-single,
.service-item,
.feature-item {
  border: 1px solid #e3ebe1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(28, 47, 33, .08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.blog-item:hover,
.event-item:hover,
.testimonial-single:hover,
.service-item:hover,
.feature-item:hover {
  border-color: rgba(106, 175, 8, .4);
  box-shadow: 0 18px 42px rgba(28, 47, 33, .14);
  transform: translateY(-5px);
}

.blog-item-img {
  overflow: hidden;
  background: #edf2eb;
}

.blog-item-img img,
.event-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-item-info,
.event-content {
  padding: 20px;
}

.blog-item-info h4 a,
.event-title {
  color: #1d2921;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
}

.blog-item-meta ul li,
.event-list li {
  color: #6b766f;
  font-size: 13px;
}

.blog-btn,
.bandhavgarh-bg-color .button,
.blog-section .card .card-body .button {
  color: #568f06;
  font-size: 14px;
  font-weight: 700;
}

.accordion-button {
  font-family: 'Roboto', sans-serif;
  letter-spacing: -.015em;
}

.faq-area .accordion-item {
  border: 1px solid #e4ebe2;
  box-shadow: 0 8px 26px rgba(28, 47, 33, .06);
}

.form-control,
.form-select,
.main input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]),
.main select,
.main textarea {
  border-color: #dce5da;
  border-radius: 10px;
}

.form-control:focus,
.form-select:focus,
.main input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):focus,
.main select:focus,
.main textarea:focus {
  border-color: #6aaf08;
  box-shadow: 0 0 0 3px rgba(106, 175, 8, .12);
}

.site-breadcrumb {
  min-height: 270px;
  padding: 92px 0 54px;
  background-position: center !important;
  background-size: cover !important;
}

.site-breadcrumb::before {
  background: linear-gradient(180deg, rgba(9, 22, 13, .3), rgba(9, 22, 13, .78));
}

.site-breadcrumb .breadcrumb-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -.035em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .35);
}

.site-breadcrumb .breadcrumb-menu {
  margin-top: 10px;
}

.footer-area p,
.footer-area li,
.footer-area a {
  font-size: 14px;
  line-height: 1.6;
}

.footer-area .footer-widget-wrapper {
  padding-top: 42px !important;
  padding-bottom: 26px !important;
}

.footer-area .footer-widget-box {
  margin-bottom: 0;
}

.footer-area .footer-logo img {
  width: 138px;
  margin-bottom: 12px;
}

.footer-area .footer-widget-box p {
  max-width: 520px;
  margin-bottom: 12px !important;
  padding-right: 28px;
  color: #cbd3ce;
  font-size: 13px;
  line-height: 1.55;
}

.footer-area .footer-contact li {
  margin-bottom: 7px;
  color: #e4e9e6;
  font-size: 13px;
}

.footer-area .footer-contact li i {
  width: 26px;
  height: 26px;
  margin-right: 9px;
  border-radius: 7px;
  font-size: 12px;
  line-height: 26px;
}

.footer-area .footer-widget-title {
  margin-bottom: 14px;
  padding-bottom: 10px;
  font-size: 16px;
}

.footer-area .footer-list {
  gap: .4rem;
}

.footer-area .footer-list li a {
  color: #dfe5e1;
  font-size: 13px;
}

.footer-area .copyright {
  padding: 11px 0;
}

.footer-area .copyright .copyright-text,
.footer-area .copyright .copyright-text a {
  font-size: 12.5px;
}

.footer-area .footer-social {
  gap: 8px;
}

.footer-area .footer-social li a i {
  width: 31px;
  height: 31px;
  font-size: 12px;
  line-height: 31px;
}

.about-right {
  padding-left: clamp(12px, 2vw, 24px);
}

.about-list-wrapper {
  margin-top: 14px;
}

.counter-box {
  gap: 12px;
  padding-bottom: 16px;
  border-radius: 12px;
}

.counter-box .icon {
  width: 76px;
  height: 76px;
  font-size: 42px;
}

.counter-box .icon img {
  width: 40px;
}

.counter-box .counter {
  font-size: 38px;
}

.counter-box .title {
  margin-top: 4px;
  font-size: 17px;
}

.faq-area .accordion-item {
  margin-bottom: 16px;
}

.accordion-button {
  padding: 14px 18px;
  font-size: 17px;
}

.footer-logo img {
  width: 165px;
  margin-bottom: 20px;
}

.footer-widget-title {
  margin-bottom: 20px;
  padding-bottom: 14px;
  font-size: 18px;
}

.footer-list {
  gap: .65rem;
}

.copyright {
  padding: 14px 0;
}

/* Shared destination-page hero */
.destination-hero-section {
  background: #172019;
}

.bandhavgarh-bg.destination-hero {
  min-height: clamp(440px, 62vh, 570px);
  padding: 0;
  background-position: center 38%;
  display: flex;
  align-items: flex-end;
}

.destination-hero-content {
  width: 100%;
  padding-top: 110px;
  padding-bottom: clamp(38px, 5vw, 56px);
}

.destination-hero-copy {
  margin: 0 auto;
  text-align: center;
}

.destination-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: #d9f6b0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.destination-hero-kicker::before,
.destination-hero-kicker::after {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: .8;
}

.bandhavgarh-bg.destination-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .45);
}

.destination-hero-actions {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.destination-action-bar {
  position: relative;
  z-index: 2;
  padding: 22px 0;
  border-bottom: 1px solid #e1e9df;
  background: #fff;
  box-shadow: 0 10px 28px rgba(28, 47, 33, .08);
}

.destination-hero-action {
  min-height: 62px;
  padding: 9px 14px;
  border: 1px solid #dde7da;
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 22px rgba(28, 47, 33, .08);
  color: #253021;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.destination-hero-action i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #6aaf08;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  transition: background-color .2s ease, color .2s ease;
}

.destination-hero-action.is-primary {
  border-color: #6aaf08;
  background: #6aaf08;
  color: #fff;
}

.destination-hero-action.is-primary i {
  background: #fff;
  color: #568f06;
}

.destination-hero-actions:has(.destination-hero-action:not(.is-primary):hover) .destination-hero-action.is-primary,
.destination-hero-actions:has(.destination-hero-action:not(.is-primary):focus-visible) .destination-hero-action.is-primary {
  border-color: #dde7da;
  background: #fff;
  color: #253021;
  transform: none;
}

.destination-hero-actions:has(.destination-hero-action:not(.is-primary):hover) .destination-hero-action.is-primary i,
.destination-hero-actions:has(.destination-hero-action:not(.is-primary):focus-visible) .destination-hero-action.is-primary i {
  background: #6aaf08;
  color: #fff;
}

.destination-hero-action:hover,
.destination-hero-action:focus-visible {
  background: #6aaf08;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .27);
  color: #fff;
  outline: none;
  transform: translateY(-3px);
}

.destination-hero-action:hover i,
.destination-hero-action:focus-visible i {
  background: #fff;
  color: #568f06;
}

@media (max-width: 991.98px) {
  :root {
    --mp-section-space: clamp(46px, 7vw, 64px);
  }
}

.navbar {
  background: linear-gradient(90deg, var(--mp-forest-950), var(--mp-forest-900));
  border-bottom: 1px solid rgba(197, 138, 50, .28);
}

.navbar.fixed-top {
  background: rgba(13, 33, 23, .96);
  backdrop-filter: blur(10px);
}

@media (min-width: 992px) {
  .navbar .nav-item .nav-link {
    color: rgba(255, 255, 255, .88);
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: #d9ad62;
  }
}

.theme-btn {
  background: var(--mp-forest-700);
  box-shadow: 0 8px 22px rgba(13, 33, 23, .2);
}

.theme-btn i {
  background: var(--mp-safari-gold);
}

.theme-btn:hover {
  background: var(--mp-safari-gold);
}

.theme-btn:hover i {
  background: var(--mp-forest-950);
}

.hero-single::before {
  background: linear-gradient(90deg, rgba(8, 24, 15, .42) 0%, rgba(8, 24, 15, .14) 48%, rgba(8, 24, 15, .06) 100%);
}

.hero-single .hero-content {
  border-color: rgba(226, 193, 137, .2);
  border-left-color: var(--mp-safari-gold);
  background: linear-gradient(110deg, rgba(9, 29, 18, .76), rgba(9, 29, 18, .38));
}

.hero-single .hero-content .hero-sub-title {
  border-color: rgba(226, 193, 137, .45);
  background: rgba(197, 138, 50, .12);
  color: #f0cf94;
}

.hero-slider2.owl-theme .owl-nav [class*="owl-"] {
  border: 1px solid rgba(255, 255, 255, .45);
  background: var(--mp-forest-800);
}

.hero-slider2.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--mp-safari-gold);
  color: #fff;
}

.site-title-tagline {
  border-color: rgba(40, 86, 59, .2);
  background: rgba(40, 86, 59, .08);
  color: var(--mp-forest-700);
}

.site-title-tagline::before {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mp-safari-gold);
  content: "";
}

.site-title {
  color: var(--mp-forest-950);
}

.animal-area,
.event-area,
.blog-area.bg,
.counter-area.bg {
  background-color: var(--mp-sand) !important;
  background-image: radial-gradient(circle at 12% 20%, rgba(40, 86, 59, .055) 0 2px, transparent 3px), radial-gradient(circle at 88% 75%, rgba(197, 138, 50, .06) 0 2px, transparent 3px) !important;
  background-size: 34px 34px, 42px 42px !important;
}

.about-area,
.faq-area,
.blog-area {
  background-color: var(--mp-cream);
}

.about-img img {
  border: 1px solid rgba(40, 86, 59, .2);
  box-shadow: 18px 18px 0 rgba(197, 138, 50, .12), 0 22px 50px rgba(27, 52, 34, .14);
}

.about-img::before {
  border-color: rgba(197, 138, 50, .65);
}

.about-list li::before {
  background: var(--mp-forest-700);
}

.blog-item,
.event-item,
.service-item,
.feature-item {
  border-color: rgba(40, 86, 59, .15);
  background: rgba(255, 255, 255, .94);
}

.blog-item:hover,
.event-item:hover,
.service-item:hover,
.feature-item:hover {
  border-color: rgba(197, 138, 50, .48);
}

.blog-item-img::after,
.event-img::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 3px;
  border-radius: 4px;
  background: var(--mp-safari-gold);
  content: "";
}

.blog-item-img,
.event-img {
  position: relative;
}

.blog-btn,
.bandhavgarh-bg-color .button,
.blog-section .card .card-body .button {
  color: var(--mp-forest-700);
}

.blog-btn:hover,
.bandhavgarh-bg-color .button:hover {
  color: var(--mp-safari-gold);
}

.counter-box {
  border: 1px solid rgba(226, 193, 137, .22);
  border-top: 3px solid var(--mp-safari-gold);
  background: linear-gradient(145deg, var(--mp-forest-800), var(--mp-forest-950));
}

.counter-box .icon {
  background: rgba(255, 255, 255, .08);
}

.counter-box .icon::before {
  border-color: rgba(197, 138, 50, .55);
}

.faq-area .accordion-item {
  border-left: 3px solid rgba(197, 138, 50, .72);
}

.faq-area .accordion-item i {
  background: var(--mp-forest-700);
}

.testimonial-area {
  background-color: var(--mp-forest-950);
}

.testimonial-single {
  border-color: rgba(226, 193, 137, .22);
  background: rgba(255, 255, 255, .97);
}

.site-breadcrumb::before {
  background: linear-gradient(180deg, rgba(7, 23, 14, .24), rgba(7, 23, 14, .84));
}

.site-breadcrumb .breadcrumb-title::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 13px auto 0;
  border-radius: 3px;
  background: var(--mp-safari-gold);
  content: "";
}

.destination-action-bar {
  border-bottom-color: rgba(40, 86, 59, .15);
  background: var(--mp-cream);
}

.destination-hero-action {
  border-color: rgba(40, 86, 59, .18);
  background: #fff;
}

.destination-hero-action.is-primary,
.destination-hero-action:hover,
.destination-hero-action:focus-visible {
  border-color: var(--mp-forest-700);
  background: var(--mp-forest-700);
}

.destination-hero-action i,
.destination-hero-actions:has(.destination-hero-action:not(.is-primary):hover) .destination-hero-action.is-primary i,
.destination-hero-actions:has(.destination-hero-action:not(.is-primary):focus-visible) .destination-hero-action.is-primary i {
  background: var(--mp-safari-gold);
}

.footer-area {
  background: linear-gradient(145deg, var(--mp-forest-950), #08170f);
  border-top: 3px solid var(--mp-safari-gold);
}

.footer-area .copyright {
  background: rgba(0, 0, 0, .28);
}

.footer-area .footer-widget-title::before,
.footer-area .footer-widget-title::after {
  background: var(--mp-safari-gold);
}

.footer-area .footer-contact li i,
.footer-area .footer-social li a i {
  background: var(--mp-forest-700);
}

.footer-area .footer-contact li i:hover,
.footer-area .footer-social li a i:hover {
  background: var(--mp-safari-gold);
}

.stapp {
  background: var(--mp-forest-700);
  box-shadow: 0 9px 24px rgba(13, 33, 23, .28);
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 62px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .navbar-brand img {
    width: 132px;
    max-height: 48px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 62px);
    padding: 8px 20px 14px;
  }

  .navbar .nav-item .nav-link {
    padding: 9px 0;
    font-size: 15px;
  }

  .hero-single {
    min-height: 430px;
    padding-top: 108px;
    padding-bottom: 24px;
  }

  .hero-single .hero-content .hero-title {
    font-size: clamp(31px, 5vw, 40px);
  }

  .hero-single .hero-content {
    max-width: 470px;
    margin-top: 0;
  }

  .site-breadcrumb {
    min-height: 230px;
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .about-right {
    margin-top: 30px;
    padding-left: 0;
  }

  .counter-area .counter-box {
    margin: 18px 0;
  }

  .bandhavgarh-bg.destination-hero {
    min-height: 500px;
    background-position: center;
  }

  .destination-hero-actions {
    max-width: 660px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-action-bar {
    padding: 18px 0;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .hero-single {
    min-height: 390px;
    padding-top: 96px;
    padding-bottom: 18px;
    background-position: 62% center !important;
  }

  .hero-single .hero-content .hero-title {
    margin: 10px 0 16px;
    font-size: clamp(27px, 8vw, 32px);
  }

  .hero-single .hero-content {
    width: min(92%, 430px);
    margin-top: 0;
    padding: 15px;
    border-left-width: 3px;
    border-radius: 0 13px 13px 0;
  }

  .hero-section .hero-single > .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-slider2.owl-theme .owl-nav .owl-prev,
  .hero-slider2.owl-theme .owl-nav .owl-next {
    bottom: 14px !important;
  }

  .hero-slider2.owl-theme .owl-nav .owl-prev {
    right: 68px;
  }

  .hero-slider2.owl-theme .owl-nav .owl-next {
    right: 16px;
  }

  .hero-single .hero-content .hero-sub-title {
    font-size: 11px;
  }

  .site-heading {
    margin-bottom: 24px;
  }

  .site-title-tagline {
    min-height: 28px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .site-title {
    font-size: 28px;
  }

  .theme-btn {
    padding-left: 15px;
  }

  .accordion-button {
    padding: 12px 14px;
    font-size: 15px;
  }

  .footer-widget-box {
    margin-bottom: 26px;
  }

  .footer-area .footer-widget-wrapper {
    padding-top: 32px !important;
    padding-bottom: 8px !important;
  }

  .footer-area .footer-widget-box {
    margin-bottom: 24px;
  }

  .footer-area .footer-widget-box p {
    padding-right: 0;
  }

  .footer-area .footer-social {
    margin-top: 10px;
  }

  .blog-item-info,
  .event-content {
    padding: 16px;
  }

  .bandhavgarh-bg.destination-hero {
    min-height: 520px;
  }

  .destination-hero-content {
    padding-top: 92px;
    padding-bottom: 30px;
  }

  .destination-hero-copy {
    margin-bottom: 0;
  }

  .destination-hero-kicker {
    font-size: 11px;
    letter-spacing: .12em;
  }

  .destination-hero-kicker::before,
  .destination-hero-kicker::after {
    width: 18px;
  }

  .bandhavgarh-bg.destination-hero h1 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .destination-hero-actions {
    gap: 9px;
  }

  .destination-action-bar {
    padding: 14px 0;
  }

  .destination-hero-action {
    min-height: 54px;
    padding: 7px 9px;
    border-radius: 10px;
    gap: 7px;
    font-size: 13px;
  }

  .destination-hero-action i {
    width: 29px;
    height: 29px;
    font-size: 12px;
  }
}
