:root {
  --primary-color: #00ffae;
  --white-color: #fff;
  --text-color: #141414;
  --muted-color: #333;
  --surface-soft: #f6f6f6;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  color: var(--text-color);
}

.float-whatsapp-icon {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: block;
  z-index: 9999;
}

.float-whatsapp-icon img {
  width: 100%;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding: 0 30px;
  position: relative;
}

.btn-wrapper {
  display: flex;
  gap: 10px;
}

.btn-wrapper .btn {
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 14px;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.94);
}

.btn-wrapper .btn.btn-green {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-wrapper .btn img {
  max-width: 20px;
  width: 100%;
}

.secondary-heading {
  font-size: 35px;
  text-align: center;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.2s all ease-in-out;
}

.header.header-scrolled {
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.header-weapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.hero-section {
  padding: 150px 0 60px;
  text-align: center;
  background-position: top center;
  background-size: cover;
  min-height: 600px;
  position: relative;
  color: var(--white-color);
}

.hero-section::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-main-wrapper {
  width: 70%;
  margin: 90px auto 0;
  position: relative;
  z-index: 1;
}

.hero-main-wrapper .heading {
  font-size: 50px;
  margin-bottom: 10px;
}

.hero-main-wrapper .desc {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-main-wrapper .btn-wrapper {
  justify-content: center;
}

.feed-section {
  padding: 60px 0;
}

.feed-list-main-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.feed-list-wrapper {
  border: 1px solid #e5e2e2;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}

.feed-list-wrapper:hover {
  border-color: #6b6b6b;
}

.feed-img-wrapper {
  width: 420px;
}

.feed-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feed-content-wrapper {
  padding: 30px;
  flex: 1;
}

.feed-content-wrapper > h4 a {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.feed-desc {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 5px;
  color: var(--muted-color);
}

.feed-accomodation-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin: 20px 0;
  width: 80%;
}

.feed-accomodation-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 40%;
}

.feed-accomodation-wrap img {
  max-width: 24px;
  width: 100%;
}

.feed-accomodation-wrap p {
  text-transform: capitalize;
}

.feed-price {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
}

.get-touch-section {
  padding: 60px 0;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.get-touch-section::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.get-touch-section-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.get-touch-section-wrapper {
  width: 50%;
}

.get-touch-section-wrapper > h2 {
  font-size: 40px;
  color: #fff;
}

.get-touch-section-main-wrapper .btn-wrapper {
  width: 30%;
  justify-content: flex-end;
}

.why-choose-section {
  padding: 60px 0;
}

.why-choose-main-wrapper {
  display: flex;
  gap: 20px;
}

.why-choose-wrapper1 {
  width: 50%;
}

.why-choose-wrapper2 {
  width: 50%;
}

.why-choose-wrapper > img {
  height: 100%;
  border-radius: 20px;
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.why-choose-main-wrapper h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.why-choose-main-wrapper p {
  color: var(--muted-color);
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer {
  background-color: #ebfff9;
  padding: 40px 0;
}

.footer-main-wrapper {
  display: flex;
}

.footer-logo {
  max-width: 200px;
  display: block;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 100%;
}

.footer-col1 > p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 5px;
  color: var(--muted-color);
  width: 70%;
}

.footer-col1 {
  width: 50%;
}

.footer-col2 {
  width: 20%;
  margin-right: 5%;
}

.footer-col3 {
  width: 25%;
}

.footer-col2 > h6,
.footer-col3 > h6 {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col-wrapper a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 5px;
  color: var(--muted-color);
  text-decoration: none;
}

.elite-services-section {
  padding: 60px 0;
  background-color: var(--surface-soft);
}

.elite-services-main-wrapper > h2 {
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: transparent;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-image-wrapper {
  width: 100%;
  border: 3px solid #ccc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover .card-image-wrapper {
  transform: scale(1.02);
}

.card-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted-color);
  margin-bottom: 25px;
  min-height: 40px;
  text-transform: capitalize;
}

.more-info-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
  transition: background-color 0.3s, color 0.3s;
}

.more-info-btn:hover {
  color: #fff;
}

.inner-page-hero {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, rgba(0, 255, 174, 0.12), rgba(0, 0, 0, 0.75)), url("/assets/hero-img.jpg") center / cover;
  color: #fff;
}

.inner-page-hero__content {
  max-width: 760px;
}

.inner-page-hero__eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}

.inner-page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.inner-page-hero p {
  line-height: 1.7;
  max-width: 640px;
}

.page-content-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #fbfefc 0%, #f3fffa 100%);
}

.page-content-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.prose-content {
  color: var(--muted-color);
  line-height: 1.8;
}

.prose-content h1,
.prose-content h2,
.prose-content h3,
.prose-content h4 {
  color: var(--text-color);
  margin: 0 0 16px;
}

.prose-content p,
.prose-content ul,
.prose-content ol,
.prose-content blockquote {
  margin: 0 0 18px;
}

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

.prose-content a {
  color: #008c60;
}

@media (max-width: 1024px) {
  .feed-img-wrapper {
    width: 350px;
  }

  .header {
    background-color: #fff;
  }
}

@media (max-width: 900px) {
  .header-weapper {
    flex-direction: column;
    padding: 12px 0;
  }

  .hero-main-wrapper {
    width: 100%;
  }

  .hero-main-wrapper .heading {
    font-size: 38px;
  }

  .get-touch-section-main-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .get-touch-section-wrapper,
  .get-touch-section-main-wrapper .btn-wrapper,
  .why-choose-wrapper1,
  .why-choose-wrapper2,
  .footer-col1,
  .footer-col2,
  .footer-col3 {
    width: 100%;
  }

  .why-choose-main-wrapper,
  .footer-main-wrapper {
    flex-direction: column;
  }

  .footer-main-wrapper {
    gap: 20px;
  }

  .footer-col1 > p {
    width: 100%;
  }
}

@media (max-width: 786px) {
  .container {
    padding: 0 16px;
  }

  .btn-wrapper {
    flex-wrap: wrap;
  }

  .feed-list-wrapper {
    flex-wrap: wrap;
  }

  .feed-list-wrapper > div,
  .feed-list-wrapper > a,
  .feed-accomodation-wrapper {
    width: 100%;
  }

  .hero-main-wrapper .heading {
    font-size: 30px;
  }

  .secondary-heading,
  .elite-services-main-wrapper > h2 {
    font-size: 28px;
  }

  .inner-page-hero {
    padding: 150px 0 56px;
  }

  .inner-page-hero h1 {
    font-size: 34px;
  }

  .page-content-card {
    padding: 22px;
  }
}
