:root {
  --gold: #c6a86a;
  --gold-dark: #9a7b3f;
  --green: #1f3d2b;
  --green-soft: #28533a;
  --white: #ffffff;
  --cream: #f8f6f2;
  --text: #2f2f2f;
  --muted: #6a6a6a;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #f7f6f2);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: var(--green);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title p {
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.86rem;
}

.section-title h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 8px 20px rgba(198, 168, 106, 0.32);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.btn-dark {
  background: linear-gradient(120deg, var(--green-soft), var(--green));
  box-shadow: 0 8px 20px rgba(31, 61, 43, 0.25);
}

.topbar {
  background: var(--green);
  color: #f6f6f6;
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 700;
}

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

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 500;
  color: #25372c;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-cta {
  padding: 10px 18px;
  font-size: 0.9rem;
  box-shadow: 0 7px 16px rgba(198, 168, 106, 0.28);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.7rem;
  color: var(--green);
}

.hero {
  min-height: 82vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(14, 31, 21, 0.78), rgba(14, 31, 21, 0.32));
}

.hero-content {
  position: relative;
  color: var(--white);
  max-width: 700px;
  z-index: 1;
  animation: fadeUp 1s ease;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  align-items: center;
}

.about-preview img,
.rounded-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card-media {
  height: 230px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-media img {
  transform: scale(1.08);
}

.card-body {
  padding: 18px;
}

.home-services .section-title {
  margin-bottom: 18px;
}

.service-intro {
  max-width: 920px;
  margin: 0 auto 14px;
  text-align: center;
  color: #3d4c42;
}

.service-tags {
  justify-content: center;
  margin-bottom: 26px;
}

.home-service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  border: 1px solid #dce6de;
}

.service-card .card-media {
  height: 210px;
}

.service-card .card-body {
  display: grid;
  gap: 10px;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

.service-head i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  font-size: 0.9rem;
}

.service-meta {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.service-card .btn {
  margin-top: 4px;
  width: fit-content;
}

.icon-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 16px;
}

.icon-pill {
  font-size: 0.78rem;
  background: #eef4ef;
  color: var(--green);
  border-radius: 999px;
  padding: 4px 10px;
}

.amenities-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}

.amenities-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 42, 30, 0.72);
}

.amenity-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.3s ease, background 0.3s ease;
}

.amenity:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
}

.amenity h4 {
  color: #fff;
  margin-top: 4px;
}

.amenity i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.amenity p {
  margin: 6px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.amenity-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-grid;
  place-items: center;
  margin-bottom: 8px;
}

.amenity-icon-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.gallery-grid {
  columns: 4 220px;
  column-gap: 14px;
}

.home-gallery-grid {
  columns: 4 210px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 40, 28, 0.14);
  position: relative;
  cursor: pointer;
  background: #0f1f16;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 12px 14px 14px;
  color: #fff;
  font-size: 0.87rem;
  line-height: 1.5;
  text-wrap: pretty;
  background: linear-gradient(180deg, rgba(8, 14, 10, 0), rgba(8, 14, 10, 0.94));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 2;
  min-height: 64px;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-within .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item a {
  display: block;
  color: inherit;
}

.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  background: rgba(13, 26, 18, 0.55);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 3;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.lg-outer .lg-thumb-outer {
  background: rgba(11, 18, 14, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lg-outer .lg-thumb-item {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.lg-outer .lg-thumb-item:hover,
.lg-outer .lg-thumb-item.active {
  border-color: #c6a86a;
  transform: translateY(-1px);
}

.gallery-grid-modern {
  columns: 4 250px;
  column-gap: 14px;
}

.gallery-grid-modern .gallery-item {
  width: 100%;
  display: inline-block;
  margin-bottom: 14px;
  border: 1px solid #d7e2da;
  background: #102018;
}

.gallery-grid-modern .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.testimonials-swiper {
  padding: 10px 2px 78px;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  padding: 8px;
}

.testimonial {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow: 0 14px 30px rgba(16, 40, 28, 0.11);
  border-radius: var(--radius);
  border: 1px solid #dfe8e2;
  padding: 28px 26px;
  display: grid;
  gap: 12px;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px rgba(16, 40, 28, 0.14);
  border-color: #cddace;
}

.testimonial-quote {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: -4px;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonial-head img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8d6ab;
  box-shadow: 0 6px 16px rgba(16, 40, 28, 0.14);
}

.testimonial-head h3 {
  font-size: 1.08rem;
  color: var(--green);
  margin-bottom: 2px;
}

.testimonial-meta {
  font-size: 0.79rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.rating {
  color: #f2b01e;
  letter-spacing: 2.2px;
  font-size: 0.95rem;
  margin: 0;
}

.testimonial .rating + p {
  margin: 0;
  color: #2f4338;
  line-height: 1.72;
  font-size: 0.95rem;
}

.testimonials-controls {
  margin: 14px auto 0;
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonials-pagination {
  position: static;
  transform: none;
  width: auto !important;
  min-width: 84px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #a1b4a4;
  opacity: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--gold-dark);
  transform: scale(1.22);
}

.testimonials-nav-btn {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  color: var(--green);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 20px rgba(16, 40, 28, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.testimonials-nav-btn:hover {
  transform: translateY(-2px) scale(1.02);
  color: #163624;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 24px rgba(16, 40, 28, 0.2);
}

.testimonials-nav-btn:focus-visible {
  outline: 2px solid rgba(198, 168, 106, 0.55);
  outline-offset: 2px;
}

.testimonials-nav-btn::after {
  content: none;
}

.testimonials-nav-btn i {
  font-size: 0.88rem;
  line-height: 1;
  pointer-events: none;
}

.offer-grid,
.service-grid,
.team-grid,
.stats-grid,
.award-grid,
.instagram-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.offer-grid,
.service-grid,
.team-grid,
.award-grid,
.instagram-grid {
  grid-template-columns: repeat(3, 1fr);
}

.instagram-embed-grid {
  align-items: stretch;
}

.instagram-embed-card {
  background: #fff;
  border: 1px solid #dce7df;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(16, 40, 28, 0.1);
  overflow: hidden;
  padding: 12px 12px 14px;
  display: grid;
  gap: 10px;
}

.instagram-embed-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 12px;
  background: #f5f8f5;
}

.instagram-embed-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #31483b;
}

.instagram-open-btn {
  width: 100%;
  justify-content: center;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home-blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  overflow: hidden;
  border: 1px solid #dbe5de;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(19, 44, 30, 0.14);
}

.blog-card .card-media {
  display: block;
}

.blog-card .card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card .card-body {
  display: grid;
  gap: 10px;
}

.blog-card h3 a {
  color: #163828;
}

.blog-card h3 a:hover {
  color: var(--gold-dark);
}

.blog-meta {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.blog-pagination {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.blog-pagination a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eef3ef;
  color: #1f3d2b;
  font-weight: 600;
}

.blog-pagination a.active {
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  color: #fff;
}

.blog-sidebar {
  position: sticky;
  top: 108px;
}

.blog-recent-list {
  display: grid;
  gap: 10px;
}

.blog-recent-list a {
  color: #204132;
  border-bottom: 1px dashed #d8e3da;
  padding-bottom: 7px;
}

.blog-details-card .card-body {
  padding: 24px;
}

.blog-details-enhanced {
  border: 1px solid #d6e1d9;
  overflow: hidden;
}

.blog-detail-breadcrumb .blog-kicker {
  color: #f2dba7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.blog-hero-image img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding: 10px 0 18px;
  border-bottom: 1px solid #e1e8e3;
  margin-bottom: 18px;
}

.blog-article-meta span {
  font-size: 0.88rem;
  color: #365646;
  font-weight: 500;
}

.blog-back-link {
  margin-left: auto;
  font-size: 0.86rem;
  color: #1f3d2b;
  font-weight: 600;
}

.blog-content {
  line-height: 1.75;
}

.blog-content p,
.blog-content li {
  color: #2f4338;
}

.blog-content h2,
.blog-content h3 {
  margin-top: 18px;
  color: #193526;
}

.blog-content ul,
.blog-content ol {
  padding-left: 20px;
}

.blog-share-row {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e1e8e3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-share-row p {
  margin: 0;
  color: #2f4a3b;
  font-weight: 600;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(237, 245, 239, 0.78);
  border: 1px solid #d9e4dc;
  color: #1f3d2b;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.blog-share-btn:hover {
  background: #1f3d2b;
  color: #fff;
  transform: translateY(-2px);
}

.related-blogs-wrap {
  padding-top: 0;
}

.related-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-blog-card {
  border: 1px solid #dbe5de;
  overflow: hidden;
}

.related-blog-card .card-media {
  display: block;
}

.related-blog-card .card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-blog-card .card-body {
  display: grid;
  gap: 10px;
}

.related-blog-card h3 a {
  color: #163828;
}

.related-blog-card h3 a:hover {
  color: var(--gold-dark);
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.counter-box {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  text-align: center;
  padding: 24px;
}

.counter {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.newsletter {
  background: linear-gradient(110deg, var(--green-soft), var(--green));
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
}

.newsletter form,
.form-grid,
.booking-summary {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.booking-form {
  margin-top: 14px;
}

.booking-form .form-field {
  display: grid;
  gap: 7px;
}

.booking-form label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  background: #fbfcfb;
  border-color: #cfd8d1;
}

.booking-form textarea {
  min-height: 110px;
  resize: vertical;
}

.booking-form .btn {
  justify-self: start;
  margin-top: 4px;
}

.booking-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f8f5, #eef4ef);
  border-top: 1px solid #e0e8e2;
  border-bottom: 1px solid #e0e8e2;
}

.booking-section .container {
  position: relative;
  z-index: 2;
}

.booking-section .grid-2 {
  align-items: stretch;
}

.booking-section aside {
  display: flex;
}

.booking-bg-svg {
  position: absolute;
  z-index: 1;
  fill: none;
  stroke: rgba(198, 168, 106, 0.35);
  stroke-width: 2;
  pointer-events: none;
}

.booking-bg-svg circle,
.booking-bg-svg path {
  fill: rgba(31, 61, 43, 0.06);
}

.booking-bg-svg.svg-1 {
  width: 320px;
  top: -70px;
  left: -60px;
  animation: floatOrb 9s ease-in-out infinite;
}

.booking-bg-svg.svg-2 {
  width: 420px;
  right: -120px;
  bottom: -90px;
  animation: floatOrbReverse 11s ease-in-out infinite;
}

.booking-summary-card {
  position: sticky;
  top: 90px;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 1px solid #dde4de;
  background: linear-gradient(180deg, #ffffff, #f8fbf8);
}

.booking-summary-card .card-body {
  display: grid;
  gap: 10px;
}

.booking-summary-card h3 {
  padding-bottom: 8px;
  border-bottom: 1px solid #dde4de;
}

.booking-summary p {
  margin: 0;
}

.daterangepicker td.drp-unavailable-date,
.daterangepicker td.drp-unavailable-date.off,
.daterangepicker td.drp-unavailable-date.disabled {
  background: rgba(206, 39, 66, 0.16) !important;
  color: #a8263d !important;
  text-decoration: line-through;
}

.daterangepicker td.available:hover {
  background: rgba(31, 61, 43, 0.12);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f8f5, #eef4ef);
}

.contact-shell {
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.contact-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
  pointer-events: none;
}

.contact-bg-shape.shape-1 {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 30px;
  background: radial-gradient(circle at 30% 30%, rgba(198, 168, 106, 0.3), rgba(198, 168, 106, 0.02) 70%);
}

.contact-bg-shape.shape-2 {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -50px;
  background: radial-gradient(circle at 30% 30%, rgba(31, 61, 43, 0.24), rgba(31, 61, 43, 0.02) 70%);
}

.contact-form-pane {
  background: #fff;
  border: 1px solid #dde7df;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 26px;
}

.contact-form-pane h2 {
  margin-bottom: 8px;
}

.contact-info-pane {
  display: flex;
}

.contact-details-card {
  width: 100%;
  border: 1px solid #dbe4dd;
  background: linear-gradient(180deg, #ffffff, #f7faf8);
}

.contact-details-card .card-body {
  display: grid;
  gap: 14px;
}

.contact-lead {
  color: #4e5f54;
}

.contact-detail-list {
  display: grid;
  gap: 12px;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px;
  border: 1px solid #e4ebe6;
  border-radius: 10px;
  background: #fff;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.contact-detail-item h4 {
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 3px;
}

.contact-detail-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #4f5f54;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, 18px, 0) scale(1.04);
  }
}

@keyframes floatOrbReverse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-16px, -14px, 0) scale(1.03);
  }
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8ddd9;
  border-radius: 10px;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(198, 168, 106, 0.38);
  border-color: var(--gold);
}

footer {
  background: #10281c;
  color: #dbe4dc;
  padding: 55px 0 24px;
  margin-top: 80px;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.breadcrumb {
  background: linear-gradient(120deg, #183524, #28533a);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.breadcrumb h1 {
  color: #fff;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid #cad6ce;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  background: #fff;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 88vh;
  border-radius: 10px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.faq-item {
  border: 1px solid #d8ddd9;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  padding: 0 16px;
}

.faq-item.active .faq-a {
  max-height: 240px;
  padding: 0 16px 14px;
}

.timeline-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe4dd;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f6faf7);
  padding: 18px 0;
}

.timeline-marquee::before,
.timeline-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}

.timeline-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f7faf8, rgba(247, 250, 248, 0));
}

.timeline-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f7faf8, rgba(247, 250, 248, 0));
}

.timeline-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 16px;
  animation: timelineScroll 28s linear infinite;
}

.timeline-marquee:hover .timeline-track {
  animation-play-state: paused;
}

.timeline-item {
  position: relative;
  min-width: 300px;
  max-width: 300px;
  border: 1px solid #d7e2da;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  padding: 16px 16px 16px 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(198, 168, 106, 0.2);
}

.timeline-item h4 {
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.92rem;
  line-height: 1.55;
}

@keyframes timelineScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.slides {
  display: flex;
  transition: transform 0.45s ease;
}

.slide {
  min-width: 100%;
  height: 420px;
  object-fit: cover;
}

.slider-controls {
  position: absolute;
  inset: auto 0 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
}

.dot.active {
  background: #fff;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.badge {
  background: #edf5ef;
  color: var(--green);
  border: 1px solid #cfdfd3;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.8rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border: 1px solid #d8ddd9;
  padding: 10px;
  text-align: left;
}

.table th {
  background: #f1f5f2;
}

.sticky-whatsapp,
.scroll-top {
  position: fixed;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 999;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.sticky-whatsapp {
  background: #1ebc57;
  bottom: 84px;
}

.scroll-top {
  background: var(--green);
  bottom: 26px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: grid;
  place-items: center;
  z-index: 10000;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 52px;
  height: 52px;
  border: 4px solid #d9d9d9;
  border-top-color: var(--gold-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-grid,
  .service-grid,
  .team-grid,
  .award-grid,
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .home-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid-modern {
    columns: 3 220px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
    background-attachment: scroll;
  }

  .booking-summary-card {
    position: relative;
    top: 0;
  }

  .contact-form-pane {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 14px;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links.open {
    max-height: 420px;
  }

  .nav-cta {
    display: none;
  }

  .cards,
  .amenity-grid,
  .stats-grid,
  .offer-grid,
  .service-grid,
  .blog-grid,
  .home-blog-grid,
  .related-blog-grid,
  .team-grid,
  .award-grid,
  .instagram-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter {
    padding: 28px 18px;
  }

  .slide {
    height: 280px;
  }

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

  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-meta {
    align-items: flex-start;
  }

  .blog-back-link {
    margin-left: 0;
  }

  .blog-share-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid-modern {
    columns: 2 180px;
  }

  .testimonials-controls {
    width: 100%;
    gap: 10px;
    margin-top: 12px;
  }

  .testimonials-pagination {
    min-width: 72px;
    gap: 8px;
  }

  .testimonials-nav-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .timeline-marquee::before,
  .timeline-marquee::after {
    width: 34px;
  }

  .timeline-item {
    min-width: 240px;
    max-width: 240px;
  }

  .booking-bg-svg.svg-1 {
    width: 220px;
  }

  .booking-bg-svg.svg-2 {
    width: 260px;
    right: -90px;
  }

  .contact-bg-shape.shape-1 {
    width: 180px;
    height: 180px;
  }

  .contact-bg-shape.shape-2 {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 560px) {
  .gallery-grid-modern {
    columns: 1 100%;
  }
}

.daterangepicker {
  z-index: 1200 !important;
}
