@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --mowgli-dark-overlay: rgba(0, 0, 0, 0.55);
  --mowgli-accent: #b8742f;
  --mowgli-ink: #1b2430;
  --mowgli-muted: #5d6673;
  --mowgli-soft-bg: #fffaf4;
}

body {
  font-family: 'Manrope', sans-serif;
}

.site-button {
  border-radius: 10px;
  background: var(--mowgli-accent);
  border: 1px solid var(--mowgli-accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 12px 24px;
  box-shadow: 0 8px 18px rgba(184, 116, 47, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-right: 40px;
}

.site-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  transform: skewX(-22deg);
  z-index: -1;
  transition: left 0.55s ease;
}

.site-button::after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.site-button:hover,
.site-button:focus {
  background: #a76629;
  border-color: #a76629;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(184, 116, 47, 0.3);
}

.site-button:hover::before,
.site-button:focus::before {
  left: 130%;
}

.site-button:hover::after,
.site-button:focus::after {
  transform: translateY(-50%) translateX(3px);
}

.site-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 5px 12px rgba(184, 116, 47, 0.24);
}

.site-header .main-bar {
  position: relative;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 15, 15, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header .mhe-logo {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #2a2a2a;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
}

.site-header .header-nav .nav > li > a,
.site-header .extra-nav a {
  color: #2a2a2a;
}

.site-header .is-fixed .main-bar,
.site-header .is-fixed.color-fill .main-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 15, 15, 0.08);
}

.site-header .is-fixed .mhe-logo,
.site-header .is-fixed .header-nav .nav > li > a,
.site-header .is-fixed .extra-nav a {
  color: #2a2a2a;
}

.site-header .is-fixed .header-nav .nav > li.active > a,
.site-header .is-fixed .header-nav .nav > li > a:hover {
  color: var(--mowgli-accent);
}

.site-header .is-fixed .navbar-toggle .icon-bar {
  background: #2a2a2a;
}

.mowgli-hero {
  padding: 0;
  background: #2a1d14;
}

.mowgli-hero-modern {
  background: #f6f4f1;
  padding: 20px 20px 0;
}

.mowgli-hero-modern .mowgli-hero-carousel {
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid #dfd9cf;
  box-shadow: 0 24px 44px rgba(17, 17, 17, 0.12);
  width: 100%;
}

.mowgli-hero-modern .mowgli-hero-carousel,
.mowgli-hero-modern .mowgli-hero-carousel .swiper-wrapper,
.mowgli-hero-modern .mowgli-hero-carousel .swiper-slide {
  height: 680px;
}

.mowgli-hero-modern-slide {
  position: relative;
}

.mowgli-hero-modern-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mowgli-hero-modern-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 14, 0.58) 0%, rgba(10, 12, 14, 0.34) 38%, rgba(10, 12, 14, 0.12) 100%);
}

.mowgli-hero-modern-content {
  position: absolute;
  left: 96px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 620px;
}

.mowgli-hero-carousel,
.mowgli-hero-carousel .swiper-wrapper,
.mowgli-hero-carousel .swiper-slide {
  height: 760px;
}

.mowgli-hero-slide {
  display: grid;
  align-items: stretch;
}

.mowgli-hero-slide-villa {
  grid-template-columns: 1.2fr 0.8fr;
  background: linear-gradient(90deg, #1f1510 0%, #6f4a2d 55%, #815836 100%);
}

.mowgli-hero-slide-cottage {
  grid-template-columns: 0.82fr 1.18fr;
  background: linear-gradient(140deg, #8a633f 0%, #6f4a2d 48%, #2b1f17 100%);
}

.mowgli-hero-slide-media {
  position: relative;
  overflow: hidden;
}

.mowgli-hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mowgli-hero-slide-villa .mowgli-hero-slide-media {
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
}

.mowgli-hero-slide-cottage .mowgli-hero-slide-media {
  border-top-left-radius: 90px;
  border-bottom-left-radius: 90px;
}

.mowgli-hero-slide-panel {
  padding: 70px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mowgli-hero-slide-villa .mowgli-hero-slide-panel {
  background: linear-gradient(180deg, rgba(255, 241, 224, 0.11), rgba(255, 241, 224, 0.03));
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mowgli-hero-slide-cottage .mowgli-hero-slide-panel {
  background: linear-gradient(180deg, rgba(42, 31, 23, 0.52), rgba(42, 31, 23, 0.2));
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.mowgli-hero .mowgli-subtitle {
  color: #f3d7bb;
  letter-spacing: 2px;
}

.mowgli-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  color: #f8e9d8;
  font-size: 82px;
  line-height: 0.92;
  margin: 10px 0 12px;
  max-width: 640px;
}

.mowgli-hero p {
  color: #f8e9d8;
  max-width: 560px;
  margin-bottom: 24px;
  font-size: 18px;
}

.mowgli-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mowgli-hero-ghost-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #f8e9d8;
  box-shadow: none;
}

.mowgli-hero-ghost-btn:hover,
.mowgli-hero-ghost-btn:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #f8e9d8;
  color: #f8e9d8;
}

.mowgli-hero-carousel .swiper-button-prev,
.mowgli-hero-carousel .swiper-button-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.mowgli-hero-modern .swiper-button-prev,
.mowgli-hero-modern .swiper-button-next {
  background: rgba(15, 15, 15, 0.38);
  border-color: rgba(255, 255, 255, 0.7);
}

.mowgli-hero-carousel .swiper-button-prev:after,
.mowgli-hero-carousel .swiper-button-next:after {
  font-size: 16px;
  font-weight: 700;
}

.mowgli-hero-carousel .swiper-pagination {
  bottom: 18px;
}

.mowgli-hero-carousel .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.mowgli-hero-carousel .swiper-pagination-bullet-active {
  background: #fff;
}

.mowgli-banner {
  padding: 140px 0 80px;
  background: linear-gradient(var(--mowgli-dark-overlay), rgba(0, 0, 0, 0.65)), url('../images/mowgli-ref/jim-corbett.jpg') center/cover no-repeat;
}

.mowgli-banner-corporate {
  background: linear-gradient(var(--mowgli-dark-overlay), rgba(0, 0, 0, 0.65)), url('../images/mowgli-ref/corporate.jpg') center/cover no-repeat;
}

.mowgli-wedding-banner {
  background: linear-gradient(var(--mowgli-dark-overlay), rgba(0, 0, 0, 0.65)), url('../images/mowgli-ref/wedding-2.jpg') center/cover no-repeat;
}

.mowgli-banner h1,
.mowgli-banner p,
.mowgli-banner .mowgli-subtitle {
  color: #fff;
}

.mowgli-subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.mowgli-section {
  padding: 90px 0;
}

.mowgli-section.alt {
  background: #f9f9f9;
}


.mowgli-wed-hero-image {
  padding-top: 12px;
  padding-bottom: 20px;
  background: #f6f4f1;
}

.mowgli-wed-hero-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  border: 1px solid #eadfcd;
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.08);
}

.mowgli-wed-intro {
  padding-top: 10px;
  background: #f6f4f1;
}

.mowgli-wed-intro-box {
  border-radius: 20px;
  border: 1px solid #eadfcd;
  background:
    radial-gradient(circle at 82% 14%, rgba(184, 116, 47, 0.1), rgba(255, 255, 255, 0) 34%),
    linear-gradient(140deg, #fffefb 0%, #fff9f2 100%);
  padding: 32px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 26px rgba(20, 20, 20, 0.07);
}

.mowgli-wed-intro-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--mowgli-ink);
  margin: 0 0 10px;
}

.mowgli-wed-intro-copy p {
  margin: 0;
  color: var(--mowgli-muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.mowgli-wed-intro-art {
  display: none;
}

.mowgli-wed-intro-art i {
  color: rgba(146, 87, 110, 0.45);
  font-size: 118px;
}

.mowgli-wed-intro-art i:last-child {
  margin-left: -46px;
}

.mowgli-festivities {
  background:
    radial-gradient(circle at 8% 10%, rgba(184, 116, 47, 0.08), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #fffaf4 0%, #fff 100%);
}

.mowgli-fest-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 26px;
  border-bottom: 1px solid #dfceb7;
  padding-bottom: 8px;
}

.mowgli-fest-tabs button {
  border: 0;
  background: transparent;
  color: #5f6c79;
  font-size: 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mowgli-fest-tabs button.is-active {
  color: var(--mowgli-accent);
  border-color: var(--mowgli-accent);
}

.mowgli-fest-panel {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  gap: 30px;
  align-items: center;
}

.mowgli-fest-media img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #eadfcd;
  min-height: 420px;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.mowgli-fest-content h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--mowgli-ink);
  font-size: 52px;
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 14px;
}

.mowgli-fest-content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mowgli-muted);
  margin-bottom: 20px;
}

.mowgli-wed-reasons {
  background: #f7f3ed;
}

.mowgli-wed-reasons-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.mowgli-wed-reasons-head span {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 116, 47, 0.2), #b8742f, rgba(184, 116, 47, 0.2));
}

.mowgli-wed-reasons-head h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--mowgli-ink);
  text-align: center;
}

.mowgli-wed-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 20px;
}

.mowgli-wed-reason-grid article {
  border: 1px solid #eadfcd;
  border-radius: 14px;
  padding: 22px 16px 18px;
  text-align: center;
  background: linear-gradient(140deg, #fffefb 0%, #fff9f2 100%);
  box-shadow: 0 10px 22px rgba(20, 20, 20, 0.05);
}

.mowgli-wed-reason-grid i {
  color: var(--mowgli-accent);
  font-size: 36px;
  margin-bottom: 12px;
}

.mowgli-wed-reason-grid h5 {
  margin: 0;
  color: var(--mowgli-ink);
  font-family: 'Manrope', sans-serif;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
}

.mowgli-room,
.mowgli-card,
.mowgli-highlight {
  border: 1px solid #eadfcd;
  border-radius: 16px;
  background: linear-gradient(140deg, #fffefb 0%, #fff9f2 100%);
  box-shadow: 0 14px 32px rgba(15, 15, 15, 0.08);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mowgli-room .content,
.mowgli-card .content,
.mowgli-highlight .content,
.mowgli-card {
  padding: 26px 24px;
}

.mowgli-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.mowgli-gallery-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(184, 116, 47, 0.14), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 92% 94%, rgba(39, 61, 89, 0.08), rgba(255, 255, 255, 0) 36%),
    #f8f4ed;
}

.mowgli-gallery-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.mowgli-gallery-intro h2 {
  margin: 0 0 10px;
  color: #1f2835;
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  line-height: 0.95;
}

.mowgli-gallery-intro p {
  margin: 0;
  font-size: 17px;
  color: #596473;
}

.mowgli-gallery-grid {
  margin-top: 8px;
}

.mowgli-gallery-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8dac5;
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.08);
  height: 100%;
}

.mowgli-gallery-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.mowgli-gallery-link img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.mowgli-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mowgli-gallery-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.mowgli-gallery-overlay i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.3);
}

.mowgli-gallery-link:hover img,
.mowgli-gallery-link:focus img {
  transform: scale(1.08);
}

.mowgli-gallery-link:hover .mowgli-gallery-overlay,
.mowgli-gallery-link:focus .mowgli-gallery-overlay {
  opacity: 1;
}

.mowgli-room:hover,
.mowgli-card:hover,
.mowgli-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(20, 20, 20, 0.11);
  border-color: #dfc29d;
}

.mowgli-room h4,
.mowgli-card h4,
.mowgli-highlight h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 0.96;
  color: var(--mowgli-ink);
  margin: 2px 0 10px;
}

.mowgli-room p,
.mowgli-card p,
.mowgli-highlight p {
  color: var(--mowgli-muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.mowgli-room .site-button,
.mowgli-card .site-button,
.mowgli-highlight .site-button {
  margin-top: 8px;
}

.mowgli-enquiry-card {
  position: relative;
  border-color: #e4d3bb;
  background:
    radial-gradient(circle at 90% 8%, rgba(184, 116, 47, 0.1), rgba(255, 255, 255, 0) 36%),
    linear-gradient(140deg, #fffefb 0%, #fff8ee 100%);
}

.mowgli-enquiry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d39a5d 0%, #b8742f 100%);
}

.mowgli-enquiry-card .mowgli-subtitle {
  color: var(--mowgli-accent);
  letter-spacing: 1.8px;
  font-size: 12px;
  margin-bottom: 8px;
}

.mowgli-enquiry-intro {
  margin-bottom: 18px;
  max-width: 640px;
}

.mowgli-enquiry-form .form-group {
  margin-bottom: 16px;
}

.mowgli-enquiry-form .form-control {
  border: 1px solid #dfd0bc;
  background: #fff;
  border-radius: 12px;
  height: 54px;
  padding: 12px 16px;
  color: #3d4652;
  font-size: 16px;
  box-shadow: 0 6px 14px rgba(24, 20, 16, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mowgli-enquiry-form textarea.form-control {
  min-height: 126px;
  height: auto;
  resize: vertical;
  padding-top: 14px;
}

.mowgli-enquiry-form .form-control::placeholder {
  color: #808791;
}

.mowgli-enquiry-form .form-control:focus {
  border-color: #c48949;
  box-shadow: 0 0 0 4px rgba(184, 116, 47, 0.16);
  transform: translateY(-1px);
}

.mowgli-enquiry-form .site-button {
  min-width: 230px;
}

.mowgli-price {
  font-weight: 700;
}

.mowgli-about-section {
  background: #f4f4f4;
}

.mowgli-about-section .container {
  max-width: 1320px;
}

.mowgli-about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.mowgli-about-media {
  position: relative;
  max-width: 500px;
}

.mowgli-about-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.mowgli-about-float {
  position: absolute;
  background: #efefef;
  border: 1px solid #e0d8ce;
  min-width: 142px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08);
}

.mowgli-about-float strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 0.9;
  color: var(--mowgli-accent);
  margin-bottom: 8px;
}

.mowgli-about-float span {
  display: block;
  color: #3f4a58;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
}

.mowgli-about-float-top {
  right: -42px;
  top: 34px;
}

.mowgli-about-float-bottom {
  left: -42px;
  bottom: 34px;
}

.mowgli-about-content {
  max-width: 640px;
}

.mowgli-about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  line-height: 0.92;
  color: var(--mowgli-ink);
  margin: 10px 0 12px;
}

.mowgli-about-lead {
  margin: 0 0 14px;
  color: var(--mowgli-muted);
  font-size: 16px;
  line-height: 1.7;
}

.mowgli-about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 22px;
}

.mowgli-about-highlights span {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #4f5865;
  font-weight: 500;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mowgli-about-highlights span::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 12px;
  color: var(--mowgli-accent);
  line-height: 1;
}

.mowgli-about-cta {
  margin-top: 8px;
}

.mowgli-property-horizontal {
  display: flex;
  border: 1px solid #eadfcd;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.08);
}

.mowgli-property-horizontal.reverse {
  flex-direction: row-reverse;
}

.mowgli-property-media,
.mowgli-property-body {
  width: 50%;
}

.mowgli-property-media .mowgli-card-image {
  height: 100%;
  min-height: 560px;
}

.mowgli-property-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}

.mowgli-property-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 0.92;
  color: var(--mowgli-ink);
  margin-bottom: 12px;
}

.mowgli-amenity-title {
  color: #2f3e51;
  font-size: 29px;
  margin: 8px 0 10px;
}

.mowgli-amenity-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mowgli-amenity-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #efefef;
  border: 1px solid #e2e2e2;
  color: #4a5461;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1;
}

.mowgli-amenity-list i {
  color: #8f9499;
  font-size: 14px;
}

.mowgli-book-direct {
  background:
    radial-gradient(circle at 10% 10%, rgba(184, 116, 47, 0.12), rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, #fff9f2 0%, #fff 100%);
}

.mowgli-direct-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 30px;
}

.mowgli-direct-item {
  position: relative;
  padding: 16px 12px 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.mowgli-direct-num {
  position: absolute;
  top: 4px;
  right: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 82px;
  color: rgba(27, 36, 48, 0.06);
  line-height: 1;
  pointer-events: none;
}

.mowgli-direct-icon {
  width: 74px;
  height: 74px;
  color: #a5814f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 54px;
}

.mowgli-direct-copy h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 33px;
  line-height: 1.06;
  color: #2b241e;
  margin: 0 0 8px;
}

.mowgli-direct-copy p {
  margin: 0;
  color: #4f5865;
  font-size: 17px;
  line-height: 1.55;
  max-width: 320px;
}

.mowgli-book-direct-wrap {
  border: 1px solid #eddcc7;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  display: flex;
}

.mowgli-book-direct-intro {
  width: 34%;
  padding: 44px 36px;
  background: linear-gradient(180deg, #fff6ea, #fff);
  border-right: 1px solid #f0e2d0;
}

.mowgli-book-direct-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  line-height: 0.95;
  color: #2e2015;
  margin: 12px 0 14px;
}

.mowgli-book-direct-intro p {
  color: #6e5e4c;
  margin-bottom: 22px;
}

.mowgli-book-direct-grid {
  width: 66%;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mowgli-book-item {
  border: 1px solid #efdfcc;
  border-radius: 14px;
  padding: 18px 14px;
  background: #fffdf9;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mowgli-book-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(20, 20, 20, 0.08);
}

.mowgli-book-item img {
  width: 62px;
  height: 62px;
  display: block;
  margin: 0 auto 12px;
}

.mowgli-book-item h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 33px;
  line-height: 0.9;
  color: #294535;
  margin: 0;
}

.mowgli-property-card {
  border: 1px solid #eadfcd;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 15, 15, 0.08);
}

.mowgli-property-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 370px;
}

.mowgli-property-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1;
  color: var(--mowgli-ink);
  margin-bottom: 12px;
}

.mowgli-property-points {
  margin-bottom: 16px;
}

.mowgli-property-points li {
  align-items: center;
  background: #fff;
  border: 1px solid #eedfcd;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 6px 14px rgba(20, 20, 20, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mowgli-property-points li:hover {
  transform: translateY(-2px);
  border-color: #dfc29d;
  box-shadow: 0 10px 20px rgba(184, 116, 47, 0.18);
}

.mowgli-property-points li span:last-child {
  line-height: 1.35;
}

.mowgli-property-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0e5d6;
}

.mowgli-property-footer .mowgli-price {
  margin: 0;
}

.mowgli-experience-section {
  background: radial-gradient(circle at top right, rgba(184, 116, 47, 0.1), rgba(255, 255, 255, 0));
}

.mowgli-wedding-showcase {
  background: #f6f4f1;
}

.mowgli-wedding-showcase .container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.mowgli-wedding-wrap {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  border: 1px solid #e9ddcb;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.08);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.mowgli-wedding-media img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  display: block;
}

.mowgli-wedding-content {
  padding: 44px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at 84% 14%, rgba(184, 116, 47, 0.08), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #fffefb 0%, #fff9f2 100%);
}

.mowgli-wedding-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 86px;
  line-height: 0.86;
  margin: 8px 0 18px;
  color: #2d4334;
}

.mowgli-wedding-content h2 span {
  display: block;
  color: #7e2148;
  font-size: 0.48em;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.mowgli-wedding-content p {
  max-width: 640px;
  font-size: 28px;
  line-height: 1.55;
  color: #4d4a43;
  margin: 0 0 18px;
}

.mowgli-wedding-divider {
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 6px 0 26px;
}

.mowgli-wedding-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(51, 96, 74, 0.2), #4d7e63, rgba(51, 96, 74, 0.2));
}

.mowgli-wedding-divider i {
  color: #3d7b5f;
  font-size: 20px;
}

.mowgli-experience-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--mowgli-ink);
  margin-bottom: 10px;
}

.mowgli-experience-subheading {
  color: var(--mowgli-muted);
  max-width: 740px;
  margin: 0 auto 28px;
  font-size: 17px;
}

.mowgli-edge-slider-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 22px;
}

.mowgli-experience-slider {
  overflow: visible;
  padding: 4px 2px 8px;
}

.mowgli-experience-slider .swiper-slide {
  height: auto;
}

.mowgli-experience-slider .mowgli-horizontal-card {
  height: 100%;
  margin-bottom: 0;
}

.mowgli-experience-slider .swiper-button-prev,
.mowgli-experience-slider .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  top: 50%;
  margin-top: -22px;
}

.mowgli-experience-slider .swiper-button-prev {
  left: 8px;
}

.mowgli-experience-slider .swiper-button-next {
  right: 8px;
}

.mowgli-experience-slider .swiper-button-prev:after,
.mowgli-experience-slider .swiper-button-next:after {
  font-size: 16px;
  font-weight: 700;
}

.mowgli-horizontal-card {
  display: flex;
  border: 1px solid #eadfcd;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 15, 15, 0.08);
  height: 100%;
}

.mowgli-horizontal-card .mowgli-card-image {
  width: 44%;
  min-height: 320px;
  height: 100%;
}

.mowgli-horizontal-content {
  width: 56%;
  padding: 26px 24px;
}

.mowgli-horizontal-card .mowgli-point-list li {
  gap: 10px;
}

.mowgli-horizontal-card .mowgli-point-icon {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.mowgli-horizontal-card .mowgli-point-icon::before {
  content: "\f00c";
  font-family: FontAwesome;
  color: var(--mowgli-accent);
  font-size: 14px;
  line-height: 1;
}

.mowgli-horizontal-card .mowgli-point-icon img {
  display: none;
}

.mowgli-horizontal-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  line-height: 1;
  color: var(--mowgli-ink);
  margin-bottom: 12px;
}

.mowgli-card-note {
  color: var(--mowgli-muted);
  margin-bottom: 16px;
}

.mowgli-point-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mowgli-point-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #4f5865;
  font-weight: 600;
  margin-bottom: 12px;
}

.mowgli-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e0c8a9;
  background: linear-gradient(145deg, #fffaf4, #f6ebdd);
  box-shadow: 0 6px 14px rgba(184, 116, 47, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mowgli-point-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.mowgli-featured-property {
  border: 1px solid #e6d8c4;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff 0%, #fffaf4 100%);
  box-shadow: 0 16px 34px rgba(27, 36, 48, 0.09);
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

.mowgli-featured-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.mowgli-featured-main-image {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.mowgli-featured-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mowgli-featured-thumbs img,
.mowgli-featured-thumb-more {
  width: 100%;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid #e6d8c4;
}

.mowgli-featured-thumb-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--mowgli-ink);
  font-weight: 700;
  background: #f3eadf;
}

.mowgli-featured-gallery img {
  cursor: zoom-in;
}

.mowgli-featured-content {
  padding: 6px 6px 6px 0;
  min-width: 0;
}

.mowgli-featured-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 14px;
}

.mowgli-featured-head h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--mowgli-ink);
  font-size: 50px;
  line-height: 0.95;
  margin: 0 0 6px;
}

.mowgli-featured-head p {
  margin: 0;
  color: var(--mowgli-muted);
  font-weight: 500;
}

.mowgli-featured-head p i {
  color: var(--mowgli-accent);
}

.mowgli-featured-price {
  text-align: right;
  white-space: nowrap;
}

.mowgli-price-value {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: var(--mowgli-ink);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

.mowgli-price-unit {
  color: var(--mowgli-muted);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.mowgli-featured-description {
  color: #47505d;
  margin-bottom: 18px;
  line-height: 1.5;
}

.mowgli-featured-facts {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mowgli-featured-facts li {
  border: 1px solid #e6d8c4;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--mowgli-ink);
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.mowgli-featured-facts li i {
  color: var(--mowgli-accent);
  margin-right: 7px;
}

.mowgli-featured-map {
  border: 1px solid #dfceb7;
  border-radius: 14px;
  padding: 16px 16px 16px 56px;
  margin-bottom: 18px;
  position: relative;
  background: linear-gradient(45deg, #e9f4ea 0%, #f4f9f5 45%, #e2efe7 100%);
  color: #34504a;
  font-weight: 600;
  font-size: 14px;
  min-height: 66px;
  display: flex;
  align-items: center;
}

.mowgli-featured-pin {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #42a278;
  box-shadow: 0 0 0 6px rgba(66, 162, 120, 0.2);
}

.mowgli-featured-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mowgli-featured-call-btn {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.mowgli-featured-call-btn:hover,
.mowgli-featured-call-btn:focus {
  color: #fff;
  background: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(-2px);
}

.mowgli-featured-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #dfceb7;
  color: var(--mowgli-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
}

.mowgli-featured-icon-btn:hover,
.mowgli-featured-icon-btn:focus {
  color: var(--mowgli-accent);
  border-color: var(--mowgli-accent);
}

.mowgli-signature-stack {
  display: grid;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.mowgli-signature-card {
  position: relative;
  overflow: hidden;
}

/* .mowgli-signature-card::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 8px;
  background: linear-gradient(180deg, #d6a56f 0%, #b8742f 100%);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 2;
  pointer-events: none;
} */

.mowgli-signature-card.reverse .mowgli-featured-gallery {
  order: 2;
}

.mowgli-signature-card.reverse .mowgli-featured-content {
  order: 1;
  padding-left: 6px;
  padding-right: 0;
}

.mowgli-featured-actions {
  margin-top: auto;
}

.mowgli-signature-card.reverse::before {
  left: auto;
  right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.mowgli-contact-strip {
  background: #111;
  padding: 14px 0;
  text-align: center;
}

.mowgli-contact-strip a {
  color: #fff;
  margin: 0 12px;
  font-weight: 500;
}

.mowgli-footer-cta {
  /* background: linear-gradient(180deg, #f5f2ea 0%, #f2ede3 100%); */
  padding: 28px 0 28px;
}

.mowgli-footer-cta-wrap {
  border: 1px solid #dfceb7;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(20, 18, 15, 0.1);
  padding: 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.mowgli-footer-cta-wrap h3 {
  margin: 6px 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  line-height: 0.92;
  color: #2f271f;
}

.mowgli-footer-cta-wrap p {
  margin: 0;
  color: #5a534a;
  max-width: 700px;
}

.mowgli-footer-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mowgli-theme-footer {
  border-top: 1px solid #e3d8c8;
}

.mowgli-theme-footer .footer-top {
  background: #f5f1e8;
}

.mowgli-theme-footer .overlay-main {
  opacity: 0 !important;
}

.mowgli-theme-footer .news-letter-footer {
  padding: 30px 0 24px;
}

.mowgli-theme-footer .newsletter-f-left h4 {
  color: #2f271f;
  letter-spacing: 0.7px;
}

.mowgli-theme-footer .newsletter-f-left p {
  color: #625a4f;
}

.mowgli-theme-footer .newsletter-f-right .input-group {
  max-width: 560px;
  margin-left: auto;
}

.mowgli-theme-footer .newsletter-f-right .form-control {
  height: 52px;
  border: 1px solid #d9c7ae;
  background: #fffefb;
  color: #2f271f;
}

.mowgli-theme-footer .widget-title {
  color: #2f271f;
}

.mowgli-theme-footer .widget p,
.mowgli-theme-footer .widget li,
.mowgli-theme-footer .widget a {
  color: #5f564a;
}

.mowgli-theme-footer .widget a:hover {
  color: var(--mowgli-accent);
}

.mowgli-theme-footer .logo-footer .mhe-logo {
  font-size: 30px;
  letter-spacing: 2px;
}

.mowgli-theme-footer .social-icons li a {
  border-color: #dbc8ad;
  color: #7a674a;
}

.mowgli-theme-footer .social-icons li a:hover {
  background: #b8742f;
  color: #fff;
  border-color: #b8742f;
}

.mowgli-theme-footer .footer-bottom {
  border-top: 1px solid #e1d4c2;
  background: #f1ebdf;
}

.mowgli-theme-footer .copyrights-text {
  color: #6a5f51;
}

body.mowgli-lightbox-open {
  overflow: hidden;
}

.mowgli-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 9, 10, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.mowgli-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mowgli-lightbox-figure {
  margin: 0;
  max-width: min(1080px, 90vw);
  max-height: 86vh;
  text-align: center;
}

.mowgli-lightbox-image {
  max-width: 100%;
  max-height: calc(86vh - 44px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.mowgli-lightbox-caption {
  color: #f3f3f3;
  margin-top: 10px;
  font-size: 14px;
}

.mowgli-lightbox-close,
.mowgli-lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mowgli-lightbox-close {
  top: 18px;
  right: 18px;
}

.mowgli-lightbox-nav.prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.mowgli-lightbox-nav.next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.mowgli-lightbox-close:hover,
.mowgli-lightbox-nav:hover {
  background: rgba(184, 116, 47, 0.65);
}

@media (max-width: 991px) {
  .mowgli-banner {
    padding-top: 130px;
  }

  .mowgli-hero-carousel,
  .mowgli-hero-carousel .swiper-wrapper,
  .mowgli-hero-carousel .swiper-slide {
    height: auto;
  }

  .mowgli-hero-modern .mowgli-hero-carousel,
  .mowgli-hero-modern .mowgli-hero-carousel .swiper-wrapper,
  .mowgli-hero-modern .mowgli-hero-carousel .swiper-slide {
    height: 560px;
  }

  .mowgli-hero-modern .mowgli-hero-carousel {
    border-radius: 28px;
  }

  .mowgli-hero-modern-content {
    left: 64px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
  }

  .mowgli-hero-slide,
  .mowgli-hero-slide-villa,
  .mowgli-hero-slide-cottage {
    grid-template-columns: 1fr;
  }

  .mowgli-hero-slide-media {
    height: 380px;
    border-radius: 0;
  }

  .mowgli-hero-slide-panel {
    padding: 52px 26px;
  }

  .mowgli-hero h1 {
    font-size: 62px;
  }

  .mowgli-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mowgli-experience-heading {
    font-size: 40px;
  }

  .mowgli-horizontal-card {
    flex-direction: column;
  }

  .mowgli-horizontal-card .mowgli-card-image,
  .mowgli-horizontal-content {
    width: 100%;
  }

  .mowgli-horizontal-card .mowgli-card-image {
    min-height: 260px;
  }

  .mowgli-edge-slider-wrap {
    padding: 0 14px;
  }

  .mowgli-experience-slider .swiper-button-prev,
  .mowgli-experience-slider .swiper-button-next {
    display: none;
  }

  .mowgli-wedding-wrap {
    grid-template-columns: 1fr;
    border-radius: 14px;
    margin-left: calc(50% - 50vw);
  }

  .mowgli-wedding-media img {
    min-height: 420px;
  }

  .mowgli-wedding-content {
    padding: 34px 24px;
  }

  .mowgli-wedding-content h2 {
    font-size: 66px;
  }

  .mowgli-wedding-content p {
    font-size: 21px;
  }

  .mowgli-wed-intro-box {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .mowgli-wed-intro-copy h2 {
    font-size: 40px;
  }

  .mowgli-wed-intro-copy p {
    font-size: 17px;
  }

  .mowgli-wed-intro-art {
    justify-content: flex-start;
  }

  .mowgli-wed-intro-art i {
    font-size: 72px;
  }

  .mowgli-fest-tabs button {
    font-size: 16px;
    padding: 8px 10px;
  }

  .mowgli-fest-panel {
    grid-template-columns: 1fr;
  }

  .mowgli-fest-media img {
    min-height: 320px;
  }

  .mowgli-fest-content h3 {
    font-size: 40px;
  }

  .mowgli-fest-content p {
    font-size: 19px;
  }

  .mowgli-wed-reasons-head {
    flex-direction: column;
  }

  .mowgli-wed-reasons-head h2 {
    font-size: 40px;
  }

  .mowgli-wed-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mowgli-book-direct-wrap {
    flex-direction: column;
  }

  .mowgli-direct-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .mowgli-direct-copy h4 {
    font-size: 30px;
  }

  .mowgli-property-horizontal,
  .mowgli-property-horizontal.reverse {
    flex-direction: column;
  }

  .mowgli-property-media,
  .mowgli-property-body {
    width: 100%;
  }

  .mowgli-property-media .mowgli-card-image {
    min-height: 290px;
    height: 320px;
  }

  .mowgli-property-body h4 {
    font-size: 48px;
  }

  .mowgli-book-direct-intro,
  .mowgli-book-direct-grid {
    width: 100%;
  }

  .mowgli-book-direct-intro {
    border-right: 0;
    border-bottom: 1px solid #f0e2d0;
  }

  .mowgli-book-direct-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mowgli-property-content h4 {
    font-size: 36px;
  }

  .mowgli-about-wrap {
    grid-template-columns: 1fr;
  }

  .mowgli-about-main-image {
    min-height: 430px;
  }

  .mowgli-about-panel {
    padding: 30px 24px 24px;
  }

  .mowgli-about-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mowgli-about-title {
    font-size: 58px;
  }

  .mowgli-about-lead {
    font-size: 18px;
  }

  .mowgli-about-rating {
    margin-top: 8px;
  }

  .mowgli-about-avatars img {
    width: 50px;
    height: 50px;
  }

  .mowgli-about-bottom {
    grid-template-columns: 1fr;
  }

  .mowgli-about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mowgli-about-stats article {
    min-height: 160px;
    padding: 18px 16px;
  }

  .mowgli-about-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .mowgli-about-stats h4 {
    font-size: 40px;
  }

  .mowgli-about-stats p {
    font-size: 14px;
  }

  .mowgli-about-side-image {
    border-left: 0;
    border-top: 1px solid #e6ddcd;
  }

  .mowgli-about-side-image img {
    min-height: 300px;
  }

  .mowgli-gallery-intro h2 {
    font-size: 46px;
  }

  .mowgli-gallery-link img {
    height: 270px;
  }

  .mowgli-featured-property {
    padding: 26px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mowgli-signature-card.reverse .mowgli-featured-gallery,
  .mowgli-signature-card.reverse .mowgli-featured-content {
    order: initial;
    padding-left: 0;
  }

  .mowgli-signature-card::before,
  .mowgli-signature-card.reverse::before {
    left: 0;
    right: auto;
    top: 14px;
    bottom: 14px;
    width: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .mowgli-featured-content {
    padding: 4px 2px 2px;
  }

  .mowgli-featured-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mowgli-lightbox {
    padding: 20px;
  }

  .mowgli-lightbox-nav.prev {
    left: 12px;
  }

  .mowgli-lightbox-nav.next {
    right: 12px;
  }

  .mowgli-footer-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .mowgli-footer-cta-wrap h3 {
    font-size: 42px;
  }

  .mowgli-theme-footer .newsletter-f-right .input-group {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .mowgli-banner {
    padding-top: 120px;
  }

  .mowgli-hero-modern {
    padding-top: 0;
  }

  .mowgli-hero-modern .mowgli-hero-carousel,
  .mowgli-hero-modern .mowgli-hero-carousel .swiper-wrapper,
  .mowgli-hero-modern .mowgli-hero-carousel .swiper-slide {
    height: 470px;
  }

  .mowgli-hero-modern .mowgli-hero-carousel {
    border-radius: 22px;
  }

  .mowgli-hero-modern-content {
    left: 34px;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    max-width: none;
  }

  .mowgli-hero h1 {
    font-size: 44px;
  }

  .mowgli-hero p {
    font-size: 16px;
  }

  .mowgli-hero-slide-panel {
    padding: 42px 16px;
  }

  .mowgli-hero-slide-media {
    height: 280px;
  }

  .mowgli-section {
    padding: 70px 0;
  }

  .mowgli-card-image {
    height: 200px;
  }

  .mowgli-gallery-intro h2 {
    font-size: 36px;
  }

  .mowgli-gallery-link img {
    height: 235px;
  }

  .mowgli-book-direct-intro {
    padding: 34px 24px;
  }

  .mowgli-direct-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mowgli-direct-item {
    gap: 14px;
  }

  .mowgli-direct-icon {
    width: 58px;
    height: 58px;
    font-size: 42px;
  }

  .mowgli-direct-copy h4 {
    font-size: 28px;
  }

  .mowgli-direct-copy p {
    font-size: 15px;
  }

  .mowgli-direct-num {
    font-size: 64px;
  }

  .mowgli-property-body {
    padding: 24px 18px 18px;
  }

  .mowgli-property-body h4 {
    font-size: 40px;
  }

  .mowgli-amenity-list li {
    font-size: 13px;
    padding: 8px 9px;
  }

  .mowgli-book-direct-intro h2 {
    font-size: 38px;
  }

  .mowgli-book-direct-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .mowgli-experience-heading {
    font-size: 34px;
  }

  .mowgli-edge-slider-wrap {
    padding: 0 10px;
  }

  .mowgli-wedding-media img {
    min-height: 320px;
  }

  .mowgli-wedding-content {
    padding: 24px 14px;
  }

  .mowgli-wedding-content h2 {
    font-size: 48px;
  }

  .mowgli-wedding-content p {
    font-size: 17px;
    line-height: 1.6;
  }

  .mowgli-wed-hero-image {
    padding-top: 18px;
  }

  .mowgli-wed-hero-image img {
    min-height: 220px;
  }

  .mowgli-wed-intro-copy h2 {
    font-size: 34px;
  }

  .mowgli-fest-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-bottom: 10px;
  }

  .mowgli-fest-tabs button {
    font-size: 15px;
  }

  .mowgli-fest-content h3 {
    font-size: 34px;
  }

  .mowgli-fest-content p {
    font-size: 17px;
  }

  .mowgli-wed-reasons-head h2 {
    font-size: 34px;
  }

  .mowgli-wed-reason-grid {
    grid-template-columns: 1fr;
  }

  .mowgli-wed-reason-grid h5 {
    font-size: 21px;
  }

  .mowgli-horizontal-content h4 {
    font-size: 32px;
  }

  .mowgli-property-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .mowgli-about-wrap {
    border-radius: 18px;
  }

  .mowgli-about-main-image {
    min-height: 300px;
  }

  .mowgli-about-panel {
    padding: 20px 14px 16px;
  }

  .mowgli-about-title {
    font-size: 42px;
  }

  .mowgli-about-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .mowgli-about-rating {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mowgli-about-avatars img {
    width: 44px;
    height: 44px;
    margin-left: -10px;
  }

  .mowgli-about-rating-copy strong {
    font-size: 30px;
  }

  .mowgli-about-bottom {
    margin-top: 12px;
  }

  .mowgli-about-stats {
    grid-template-columns: 1fr;
  }

  .mowgli-about-stats article {
    min-height: 136px;
    padding: 14px 14px;
  }

  .mowgli-about-stat-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .mowgli-about-stats h4 {
    font-size: 34px;
  }

  .mowgli-about-stats p {
    font-size: 13px;
  }

  .mowgli-about-side-image img {
    min-height: 220px;
  }

  .mowgli-featured-main-image {
    height: 250px;
  }

  .mowgli-featured-property {
    padding: 18px;
    border-radius: 16px;
  }

  .mowgli-featured-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mowgli-featured-head {
    flex-direction: column;
  }

  .mowgli-featured-head h3 {
    font-size: 38px;
  }

  .mowgli-featured-price {
    text-align: left;
  }

  .mowgli-price-value {
    font-size: 32px;
  }

  .mowgli-featured-facts {
    grid-template-columns: 1fr;
  }

  .mowgli-featured-actions {
    flex-wrap: wrap;
  }

  .mowgli-featured-call-btn {
    min-width: 130px;
  }

  .mowgli-lightbox {
    padding: 14px;
  }

  .mowgli-lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .mowgli-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .mowgli-lightbox-nav.prev,
  .mowgli-lightbox-nav.next {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .mowgli-lightbox-nav.prev {
    left: calc(50% - 50px);
  }

  .mowgli-lightbox-nav.next {
    right: calc(50% - 50px);
  }

  .mowgli-footer-cta {
    padding-bottom: 20px;
  }

  .mowgli-footer-cta-wrap {
    border-radius: 14px;
    padding: 16px 14px;
    gap: 14px;
  }

  .mowgli-footer-cta-wrap h3 {
    font-size: 34px;
  }

  .mowgli-footer-cta-actions {
    width: 100%;
  }

  .mowgli-footer-cta-actions .site-button,
  .mowgli-footer-cta-actions .mowgli-featured-call-btn {
    width: 100%;
    justify-content: center;
  }

  .mowgli-theme-footer .news-letter-footer {
    padding-top: 18px;
  }
}

/* Jim Corbett celebration redesign */
.mowgli-corbett-celebrations {
  background: radial-gradient(circle at 12% 18%, rgba(224, 175, 70, 0.15), transparent 42%), #f7f3ea;
}

.mowgli-corbett-intro {
  background: #eaebed;
  padding: 86px 0 56px;
}

.mowgli-corbett-intro-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.mowgli-corbett-intro-inner .mowgli-subtitle {
  margin-bottom: 18px;
  color: #5a748a;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.mowgli-corbett-intro-inner h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.1;
  color: #1f2228;
}

.mowgli-corbett-intro-inner p {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.95rem);
  color: #577188;
}

.mowgli-corbett-pointers {
  background: #ece7da;
  padding: 28px 0 110px;
}

.mowgli-corbett-pointer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mowgli-corbett-pointer-card {
  background: #fff;
  border: 1px solid #e3d8c5;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
}

.mowgli-corbett-pointer-card h4 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.4;
  color: #1f2228;
}

.mowgli-corbett-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.mowgli-corbett-copy {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 18px 48px rgba(22, 26, 29, 0.08);
}

.mowgli-corbett-copy h2 {
  margin: 8px 0 14px;
}

.mowgli-corbett-label {
  margin-top: 12px;
  font-weight: 700;
  color: #1f2a30;
}

.mowgli-corbett-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.mowgli-corbett-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2f3e46;
  font-weight: 500;
}

.mowgli-corbett-point-card {
  background: #fff;
  border: 1px solid rgba(184, 134, 11, 0.24);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mowgli-corbett-point-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 24, 32, 0.12);
}

.mowgli-pointer-image-box {
  width: 100%;
  height: 190px;
  display: block;
  background: #e7dfcf;
}

.mowgli-pointer-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mowgli-pointer-card-body {
  padding: 16px 16px 18px;
  border-top: 1px solid #efe5d4;
  background: #fff;
}

.mowgli-corbett-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mowgli-corbett-actions .site-button {
  background: #bc7a32;
  border-color: #bc7a32;
  border-radius: 14px;
  padding: 14px 28px;
  box-shadow: 0 14px 28px rgba(188, 122, 50, 0.24);
}

.mowgli-corbett-actions .site-button i {
  margin-left: 8px;
}

.mowgli-corbett-actions .mowgli-featured-call-btn {
  border-radius: 14px;
  padding: 14px 28px;
  background: #06080e;
  color: #fff;
  border-color: #06080e;
}

.mowgli-corbett-vertical-card {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.mowgli-corbett-vertical-card .mowgli-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.mowgli-corbett-vertical-body {
  padding: 16px 18px 20px;
  border-top: 1px solid #efe5d4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mowgli-corbett-vertical-body h4 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  font-family: 'Cormorant Garamond', serif;
  color: var(--mowgli-ink);
}

.mowgli-corbett-card-btn {
  padding: 10px 20px;
  min-width: 154px;
  text-align: center;
}

.mowgli-corbett-list i {
  color: #b8860b;
  margin-top: 4px;
}

.mowgli-corbett-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mowgli-corbett-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: 0 18px 48px rgba(22, 26, 29, 0.16);
}

.mowgli-corbett-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mowgli-corbett-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(12, 16, 20, 0.76);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  letter-spacing: 0.4px;
  font-weight: 600;
}

#corporateEnquiryModal .modal-content {
  background: transparent;
  border: 0;
  box-shadow: none;
}

#corporateEnquiryModal .modal-body {
  padding: 0;
}

.corporate-enquiry-card {
  position: relative;
  margin: 0;
}

.mowgli-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid #8f8a82;
  border-radius: 2px;
  background: #fff;
  color: #2a2a2a;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.mowgli-modal-close:hover,
.mowgli-modal-close:focus {
  background: #f8f5ef;
  border-color: #5f5a52;
  color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .mowgli-corbett-intro {
    padding: 62px 0 42px;
  }

  .mowgli-corbett-pointer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mowgli-corbett-showcase {
    grid-template-columns: 1fr;
  }

  .mowgli-corbett-list {
    grid-template-columns: 1fr;
  }

  .mowgli-corbett-copy {
    padding: 26px;
  }

  .mowgli-corbett-media {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .mowgli-corbett-pointer-grid {
    grid-template-columns: 1fr;
  }

  .mowgli-corbett-pointer-card {
    min-height: auto;
  }

  .mowgli-pointer-image-box {
    height: 210px;
  }

  .mowgli-corbett-vertical-card .mowgli-card-image {
    height: 200px;
  }
}

/* Global MHE navbar layout */
.corporate-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.corporate-header-shell .logo-header {
  margin-right: auto;
}
.corporate-header-shell .extra-nav {
  margin-left: 16px;
}
.corporate-header-shell .extra-nav .mowgli-contact-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: #fff !important;
  background: #b8742f;
  border: 1px solid #b8742f;
  border-radius: 14px;
  padding: 14px 52px 14px 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  box-shadow: 0 10px 20px rgba(184, 116, 47, 0.24);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.corporate-header-shell .extra-nav .mowgli-contact-btn::after {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 16px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.corporate-header-shell .extra-nav .mowgli-contact-btn:hover,
.corporate-header-shell .extra-nav .mowgli-contact-btn:focus {
  color: #fff !important;
  background: #a76629;
  border-color: #a76629;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(184, 116, 47, 0.28);
}
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 12000;
}
body.mobile-menu-open .mobile-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.mobile-menu-open {
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .corporate-header-shell {
    min-height: 76px;
  }
  .mobile-drawer-overlay {
    top: 76px;
    z-index: 998;
  }
  #mobile-side-drawer {
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    background: #fff;
    margin-left: 8px;
    z-index: 12020;
  }
  #mobile-side-drawer .icon-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #1f1f1f;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  body.mobile-menu-open #mobile-side-drawer .icon-bar-first {
    transform: translateY(6px) rotate(45deg);
  }
  body.mobile-menu-open #mobile-side-drawer .icon-bar-two {
    opacity: 0;
  }
  body.mobile-menu-open #mobile-side-drawer .icon-bar-three {
    transform: translateY(-6px) rotate(-45deg);
  }
  .corporate-header-shell .extra-nav .mowgli-contact-btn {
    padding: 11px 40px 11px 20px;
    font-size: 13px;
  }
  .corporate-header-shell .extra-nav .mowgli-contact-btn::after {
    right: 16px;
    font-size: 14px;
  }
  .corporate-header-shell .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    padding: 22px 18px 28px;
    background: #fff;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.14);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    z-index: 12010;
    display: block !important;
    visibility: hidden;
    pointer-events: none;
  }
  body.mobile-menu-open .corporate-header-shell .header-nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .corporate-header-shell .header-nav .nav {
    display: block;
    margin-top: 14px;
  }
  .corporate-header-shell .header-nav .nav > li {
    display: block;
    margin: 0;
  }
  .corporate-header-shell .header-nav .nav > li > a {
    display: block;
    padding: 11px 4px;
  }
  .mobile-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    background: #fff;
    font-size: 24px;
    line-height: 1;
    color: #111;
    position: relative;
    z-index: 12021;
  }
}
@media (min-width: 1200px) {
  #mobile-side-drawer,
  .mobile-drawer-close,
  .mobile-drawer-overlay {
    display: none !important;
  }
  .corporate-header-shell {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .corporate-header-shell .logo-header {
    float: none !important;
    flex: 0 0 auto;
    width: auto !important;
    min-width: max-content;
    margin-right: 36px;
  }
  .corporate-header-shell .header-nav {
    float: none !important;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 20px 0 0;
    display: flex !important;
    justify-content: flex-start;
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .corporate-header-shell .extra-nav {
    float: none !important;
    margin-left: 12px;
  }
  .corporate-header-shell .header-nav .nav.navbar-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
  }
  .corporate-header-shell .header-nav .nav.navbar-nav > li {
    float: none;
    display: block;
  }
  .corporate-header-shell .header-nav .nav.navbar-nav > li > a {
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767.98px) {
  .corporate-header-shell {
    gap: 10px;
    min-height: 68px;
  }

  .corporate-header-shell .logo-header {
    margin-right: 0;
  }

  .site-header .mhe-logo {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .corporate-header-shell .extra-nav {
    margin-left: auto;
  }

  .corporate-header-shell .extra-nav .mowgli-contact-btn {
    padding: 10px 34px 10px 14px;
    font-size: 12px;
    border-radius: 12px;
  }

  .corporate-header-shell .extra-nav .mowgli-contact-btn::after {
    right: 13px;
    font-size: 12px;
  }

  #mobile-side-drawer {
    width: 40px;
    height: 40px;
    margin-left: 0;
  }

  .mowgli-hero-modern {
    padding: 0 10px 0;
  }

  .mowgli-hero-modern .mowgli-hero-carousel,
  .mowgli-hero-modern .mowgli-hero-carousel .swiper-wrapper,
  .mowgli-hero-modern .mowgli-hero-carousel .swiper-slide {
    height: 500px;
  }

  .mowgli-hero-modern .mowgli-hero-carousel {
    border-radius: 18px;
  }

  .mowgli-hero-modern-content {
    left: 24px;
    right: 18px;
    top: auto;
    bottom: 56px;
    transform: none;
    max-width: none;
  }

  .mowgli-hero h1 {
    font-size: 48px;
    line-height: 1.02;
    margin: 8px 0 10px;
  }

  .mowgli-hero p {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .mowgli-hero .mowgli-subtitle {
    font-size: 13px;
    letter-spacing: 1.6px;
  }

  .mowgli-hero-actions .site-button {
    padding: 10px 34px 10px 16px;
    font-size: 12px;
  }

  .mowgli-hero-carousel .swiper-button-prev,
  .mowgli-hero-carousel .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575px) {
  .mowgli-hero-modern .mowgli-hero-carousel,
  .mowgli-hero-modern .mowgli-hero-carousel .swiper-wrapper,
  .mowgli-hero-modern .mowgli-hero-carousel .swiper-slide {
    height: 460px;
  }

  .mowgli-hero-modern-content {
    left: 18px;
    right: 14px;
    bottom: 48px;
  }

  .mowgli-hero h1 {
    font-size: 38px;
  }

  .mowgli-hero p {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .mowgli-hero-carousel .swiper-button-prev,
  .mowgli-hero-carousel .swiper-button-next {
    display: none;
  }

  .corporate-header-shell .extra-nav .mowgli-contact-btn {
    padding: 9px 30px 9px 12px;
    font-size: 11px;
  }
}

@media (max-width: 1199px) {
  .mowgli-about-title {
    font-size: 54px;
  }

  .mowgli-about-float-top {
    right: -16px;
  }

  .mowgli-about-float-bottom {
    left: -16px;
  }
}

@media (max-width: 991px) {
  .mowgli-about-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .mowgli-about-media {
    margin: 0 auto;
  }

  .mowgli-about-title {
    font-size: 46px;
  }

  .mowgli-about-float-top {
    right: 14px;
  }

  .mowgli-about-float-bottom {
    left: 14px;
  }
}

@media (max-width: 767px) {
  .mowgli-about-title {
    font-size: 38px;
  }

  .mowgli-about-float {
    min-width: 118px;
    padding: 14px 10px;
  }

  .mowgli-about-float strong {
    font-size: 42px;
  }

  .mowgli-about-highlights {
    grid-template-columns: 1fr;
  }
}

.modal-content{

  background: none;
}