@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #cb9a51;
  --primary-color-dark: #684a00;
  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--primary-color);
}

.section__header {
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--text-dark);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

.logo {
  max-width: 120px;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.header {
  background-image: url("assets/homestay-bg.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  z-index: 9;
}

.nav__bar {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: var(--primary-color);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  list-style: none;
  position: absolute;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color: rgba(188, 28, 92, 0.9);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  color: var(--white);
  transition: 0.3s;
}

.nav__btn {
  display: none;
}

.header__container {
  padding-block: 10rem 15rem;
}

.header__container p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  opacity: 0.6;
}

.header__container h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 4.5rem;
  color: var(--white);
  text-align: center;
}

.header__container h1 span {
  color: var(--primary-color);
}

.booking__container {
  padding-block: 0;
}

.booking__form {
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--white);
  border-radius: 10px;
  transform: translateY(-50%);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.input__group {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.input__group span {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.input__group label {
  font-weight: 500;
  color: var(--text-dark);
}

.input__group input {
  display: block;
  width: 100%;
  max-width: 150px;
  padding-block: 5px;
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  border: none;
}

.input__group input::placeholder {
  color: var(--text-light);
}

.about__container {
  overflow: hidden;
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}

.room__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.room__card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.room__card__image {
  position: relative;
  isolation: isolate;
}

.room__card__icons {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1;
}

.room__card__icons span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.5rem;
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.room__card__icons span:nth-child(1) {
  color: #f472b6;
}

.room__card__icons span:nth-child(2) {
  color: #c084fc;
}

.room__card__icons span:nth-child(3) {
  color: #60a5fa;
}

.room__card__details {
  padding: 1rem;
}

.room__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.room__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.room__card h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.room__card h5 span {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.service {
  background-image: url("assets/service.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  padding-block: 0;
  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

.service__content {
  grid-column: 1/3;
  padding: 2rem 4rem;
  background-color: var(--white);
}

.service__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service__list span {
  padding: 5px 12px;
  font-size: 1.75rem;
  color: var(--text-dark);
  background-color: var(--text-light);
  border-radius: 100%;
}

.service__list li:nth-child(1) span {
  color: #60a5fa;
  background-color: #dbeafe;
}

.service__list li:nth-child(2) span {
  color: #f472b6;
  background-color: #fce7f3;
}

.service__list li:nth-child(3) span {
  color: #c084fc;
  background-color: #f3e8ff;
}

.service__list li:nth-child(4) span {
  color: #fb7185;
  background-color: #ffe4e6;
}

.banner__content {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card {
  text-align: center;
  flex: 1 1 180px;
}

.banner__card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.banner__card p {
  color: var(--text-light);
}

.explore :is(.section__subheader, .section__header) {
  text-align: center;
  margin-inline: auto;
}

.explore__bg {
  margin-top: 4rem;
  padding-block: 3rem;
  display: grid;
  grid-template-columns:
    minmax(1rem, 1fr)
    minmax(0, var(--max-width))
    minmax(1rem, 1fr);
  background-image: url("assets/explore.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.explore__content {
  grid-column: 2/3;
  max-width: 400px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.explore__content p {
  margin-bottom: 0.5rem;
}

.explore__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-dark);
}

.explore__content .btn {
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}

.explore__content .btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.footer {
  background-color: var(--text-dark);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col .section__description {
  margin-block: 2rem;
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.footer__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__socials {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials img {
  max-width: 25px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer__socials img:hover {
  opacity: 1;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 576px) {
  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    padding: 2rem 1rem;
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__bar {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    padding: 0;
    width: unset;
    position: static;
    transform: none;
    flex-direction: row;
    background-color: transparent;
  }

  .nav__btn {
    display: block;
  }

  .nav__links a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: 0.3s;
    transform-origin: left;
  }

  .nav__links a:hover::after {
    width: 100%;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__content {
    grid-column: 2/3;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width > 1024px) {
  .room__grid {
    gap: 2rem;
  }
}

.footer__col,
.footer__col h4,
.footer__col h5,
.footer__col p,
.footer__links li,
.footer__links i {
  color: #ffffff;
}


.footer__col h4,
.footer__links a {
  color: #ffffff;
}


.service {
  padding: 4rem 1rem;
  background: #f9fafb;
}

.section__container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section__subheader {
  color: #c59d5f;
  letter-spacing: 2px;
  font-weight: 600;
}

.section__header {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.service__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.service__card {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service__card i {
  font-size: 2.5rem;
  color: #c59d5f;
  margin-bottom: 1rem;
}

.service__card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service__card p {
  font-size: 0.95rem;
  color: #555;
}

.service__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}


.banner--inline {
  background: #0f172a;
  padding: 3.5rem 1rem;
  color: #fff;
}

.banner__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.banner__stat {
  text-align: center;
  min-width: 160px;
}

.banner__stat h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #c59d5f;
}

.banner__stat h3 span {
  font-size: 1.5rem;
}

.banner__stat p {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.85;
}

.banner__divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .banner__divider {
    display: none;
  }
}

.room__badge {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.map-container {
      max-width: 1000px;
      margin: 40px auto;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .map-container iframe {
      width: 100%;
      height: 400px;
      border: 0;
    }

    @media (max-width: 768px) {
      .map-container iframe {
        height: 300px;
      }
    }

















.luxury-hero__location {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;

  color: #d0d1cc;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.luxury-hero__location > span:first-child {
  display: block;

  width: 30px;
  height: 1px;

  flex-shrink: 0;

  background: #cb9a51;
}

.luxury-hero__location > span:last-child {
  display: block;

  width: auto;
  height: auto;

  color: #d0d1cc;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2.5px;

  white-space: nowrap;
}
.luxury-hero__location > span:first-child {
  width: 30px;
  height: 1px;
  background: #cb9a51;
  flex-shrink: 0;
}

.luxury-hero__location > span:last-child {
  color: #d0d1cc;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
}




/* ==========================================
   TANISHKA HOME STAY
   LUXURY HEADER + HERO
========================================== */

.luxury-header {
  position: relative;

  min-height: 760px;

  background:
    linear-gradient(
      90deg,
      rgba(20, 23, 19, 0.94) 0%,
      rgba(20, 23, 19, 0.78) 45%,
      rgba(20, 23, 19, 0.35) 100%
    ),
    url("assets/homestay.webp") center/cover no-repeat;

  color: #ffffff;

  overflow: hidden;
}


/* ==========================================
   NAVIGATION
========================================== */

.luxury-nav {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 100;
}


.luxury-nav__container {
  max-width: 1200px;

  min-height: 90px;

  margin: auto;

  padding: 0 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  border-bottom: 1px solid
    rgba(255, 255, 255, 0.12);
}


/* ==========================================
   LOGO
========================================== */

.luxury-logo {
  display: flex;

  flex-direction: column;

  text-decoration: none;

  line-height: 1;
}


.luxury-logo__main {
  color: #ffffff;

  font-size: 21px;

  font-weight: 700;

  letter-spacing: 3px;
}


.luxury-logo__sub {
  margin-top: 6px;

  color: #cb9a51;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 4px;

  text-align: center;
}


/* ==========================================
   NAV LINKS
========================================== */

.luxury-nav__links {
  display: flex;

  align-items: center;

  gap: 30px;

  margin: 0;

  padding: 0;

  list-style: none;
}


.luxury-nav__links a {
  position: relative;

  color: rgba(255, 255, 255, 0.78);

  text-decoration: none;

  font-size: 11px;

  font-weight: 600;

  transition: 0.3s ease;
}


.luxury-nav__links a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -9px;

  width: 0;

  height: 1px;

  background: #cb9a51;

  transform: translateX(-50%);

  transition: 0.3s ease;
}


.luxury-nav__links a:hover,
.luxury-nav__links a.active {
  color: #ffffff;
}


.luxury-nav__links a:hover::after,
.luxury-nav__links a.active::after {
  width: 18px;
}


/* ==========================================
   BOOK BUTTON
========================================== */

.luxury-nav__button {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 11px 17px;

  background: #cb9a51;

  color: #20231e;

  text-decoration: none;

  border-radius: 3px;

  font-size: 10px;

  font-weight: 800;

  white-space: nowrap;

  transition: 0.3s ease;
}


.luxury-nav__button i {
  font-size: 14px;

  transition: transform 0.3s ease;
}


.luxury-nav__button:hover {
  background: #ffffff;
}


.luxury-nav__button:hover i {
  transform: translateX(4px);
}


/* ==========================================
   MOBILE MENU BUTTON
========================================== */

.luxury-menu-btn {
  display: none;

  width: 40px;
  height: 40px;

  border: 1px solid
    rgba(255, 255, 255, 0.25);

  background: transparent;

  color: #ffffff;

  border-radius: 3px;

  cursor: pointer;

  font-size: 20px;
}


/* ==========================================
   HERO
========================================== */

.luxury-hero {
  position: relative;

  max-width: 1200px;

  min-height: 760px;

  margin: auto;

  padding: 190px 20px 80px;

  display: flex;

  align-items: center;
}


.luxury-hero__content {
  max-width: 720px;
}


/* ==========================================
   LOCATION
========================================== */

.luxury-hero__location {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  color: #d0d1cc;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2.5px;
}


.luxury-hero__location span {
  width: 30px;

  height: 1px;

  background: #cb9a51;
}


/* ==========================================
   HERO HEADING
========================================== */

.luxury-hero h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(
    45px,
    6vw,
    76px
  );

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: -2px;
}


.luxury-hero h1 strong {
  color: #cb9a51;

  font-weight: 600;
}


/* ==========================================
   DESCRIPTION
========================================== */

.luxury-hero__content > p {
  max-width: 570px;

  margin: 25px 0 32px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;

  line-height: 1.9;
}


/* ==========================================
   HERO BUTTONS
========================================== */

.luxury-hero__actions {
  display: flex;

  align-items: center;

  gap: 25px;
}


.luxury-hero__primary {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 20px;

  background: #cb9a51;

  color: #20231e;

  text-decoration: none;

  border-radius: 3px;

  font-size: 10px;

  font-weight: 800;

  transition: 0.3s ease;
}


.luxury-hero__primary i {
  transition: transform 0.3s ease;
}


.luxury-hero__primary:hover {
  background: #ffffff;
}


.luxury-hero__primary:hover i {
  transform: translateX(4px);
}


.luxury-hero__secondary {
  color: #ffffff;

  text-decoration: none;

  font-size: 10px;

  font-weight: 600;

  border-bottom: 1px solid #cb9a51;

  padding-bottom: 4px;

  transition: 0.3s ease;
}


.luxury-hero__secondary:hover {
  color: #cb9a51;
}


/* ==========================================
   HERO INFO
========================================== */

.luxury-hero__info {
  display: flex;

  align-items: center;

  gap: 30px;

  margin-top: 65px;

  padding-top: 20px;

  border-top: 1px solid
    rgba(255, 255, 255, 0.13);
}


.luxury-hero__info div {
  display: flex;

  align-items: center;

  gap: 8px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 9px;
}


.luxury-hero__info i {
  color: #cb9a51;

  font-size: 16px;
}


/* ==========================================
   SCROLL
========================================== */

.luxury-hero__scroll {
  position: absolute;

  right: 20px;
  bottom: 35px;

  display: flex;

  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.55);

  text-decoration: none;

  font-size: 8px;

  letter-spacing: 2px;

  writing-mode: vertical-rl;
}


.luxury-hero__scroll i {
  color: #cb9a51;

  font-size: 15px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

  .luxury-nav__links {
    gap: 18px;
  }


  .luxury-nav__button {
    padding: 10px 13px;
  }


  .luxury-hero h1 {
    font-size: 58px;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

  .luxury-header {
    min-height: 700px;

    background:
      linear-gradient(
        180deg,
        rgba(20, 23, 19, 0.82),
        rgba(20, 23, 19, 0.92)
      ),
      url("assets/homestay.webp") center/cover no-repeat;
  }


  .luxury-nav__container {
    min-height: 75px;
  }


  .luxury-menu-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: auto;
  }


  .luxury-nav__links {
    position: absolute;

    top: 75px;
    left: 15px;
    right: 15px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px;

    background: rgba(32, 35, 30, 0.98);

    border: 1px solid
      rgba(255, 255, 255, 0.1);

    border-radius: 5px;
  }


  .luxury-nav__links.open {
    display: flex;
  }


  .luxury-nav__links li {
    width: 100%;
  }


  .luxury-nav__links a {
    display: block;

    padding: 13px 15px;
  }


  .luxury-nav__links a::after {
    display: none;
  }


  .luxury-nav__button {
    display: none;
  }


  .luxury-hero {
    min-height: 700px;

    padding: 150px 20px 60px;

    align-items: center;
  }


  .luxury-hero__location {
    font-size: 8px;

    letter-spacing: 1.7px;
  }


  .luxury-hero h1 {
    font-size: 43px;

    letter-spacing: -1px;
  }


  .luxury-hero__content > p {
    font-size: 12px;

    line-height: 1.8;
  }


  .luxury-hero__actions {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
  }


  .luxury-hero__info {
    flex-wrap: wrap;

    gap: 15px 22px;

    margin-top: 45px;
  }


  .luxury-hero__scroll {
    display: none;
  }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

  .luxury-logo__main {
    font-size: 17px;

    letter-spacing: 2px;
  }


  .luxury-logo__sub {
    font-size: 7px;

    letter-spacing: 3px;
  }


  .luxury-hero h1 {
    font-size: 37px;
  }

}






/* ==========================================
   BOOKING HEADER - NEW DESIGN
========================================== */

.stay-search__header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;

  margin-bottom: 32px;

  padding: 0 5px;
}


/* LEFT TITLE */

.stay-search__title {
  display: flex;

  align-items: center;

  gap: 15px;
}


.stay-search__eyebrow {
  color: #cb9a51;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

  white-space: nowrap;
}


/* GOLD LINE */

.stay-search__line {
  width: 45px;

  height: 1px;

  background: #cb9a51;
}


/* HEADING */

.stay-search__title h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(27px, 3vw, 36px);

  font-weight: 500;

  line-height: 1.15;

  white-space: nowrap;
}


.stay-search__title h2 strong {
  color: #cb9a51;

  font-weight: 600;
}


/* ==========================================
   DESCRIPTION
========================================== */

.stay-search__description {
  display: flex;

  align-items: center;

  gap: 12px;

  max-width: 340px;

  padding-left: 25px;

  border-left: 1px solid rgba(203, 154, 81, 0.3);
}


.stay-search__description i {
  flex-shrink: 0;

  color: #cb9a51;

  font-size: 20px;
}


.stay-search__description p {
  margin: 0;

  color: #969990;

  font-size: 12px;

  line-height: 1.7;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 850px) {

  .stay-search__header {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }


  .stay-search__description {
    padding-left: 0;

    border-left: 0;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .stay-search__header {
    gap: 16px;

    margin-bottom: 25px;
  }


  .stay-search__title {
    flex-wrap: wrap;

    gap: 10px;
  }


  .stay-search__line {
    width: 30px;
  }


  .stay-search__title h2 {
    width: 100%;

    font-size: 30px;

    white-space: normal;
  }


  .stay-search__description {
    max-width: 100%;
  }

}



/* ==========================================
   TANISHKA HOME STAY
   PREMIUM BOOKING SEARCH
========================================== */

.stay-search {
  position: relative;

  padding: 75px 20px;

  background: #20231e;

  overflow: hidden;
}


/* Decorative background */

.stay-search::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  border: 1px solid rgba(203, 154, 81, 0.1);

  border-radius: 50%;

  top: -280px;
  right: -120px;
}


.stay-search::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  border: 1px solid rgba(203, 154, 81, 0.08);

  border-radius: 50%;

  bottom: -220px;
  left: -100px;
}


/* ==========================================
   CONTAINER
========================================== */

.stay-search__container {
  position: relative;

  z-index: 2;

  max-width: 1200px;

  margin: auto;
}


/* ==========================================
   HEADER
========================================== */

.stay-search__header {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 30px;

  margin-bottom: 30px;
}


.stay-search__header span {
  display: block;

  margin-bottom: 10px;

  color: #cb9a51;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;
}


.stay-search__header h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(28px, 4vw, 40px);

  line-height: 1.15;
}


.stay-search__header h2 strong {
  color: #cb9a51;

  font-weight: 600;
}


.stay-search__header p {
  max-width: 350px;

  margin: 0 0 3px;

  color: #9b9e96;

  font-size: 13px;

  line-height: 1.7;
}


/* ==========================================
   FORM
========================================== */

.stay-search__form {
  display: grid;

  grid-template-columns:
    1.2fr 1.2fr
    0.8fr 0.8fr
    0.8fr
    1.4fr;

  background: #ffffff;

  border-radius: 8px;

  overflow: hidden;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25);
}


/* ==========================================
   FIELD
========================================== */

.stay-search__field {
  min-height: 82px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 0 16px;

  border-right: 1px solid #e8e5de;

  background: #ffffff;

  transition: background 0.3s ease;
}


.stay-search__field:hover {
  background: #faf8f3;
}


/* ==========================================
   ICON
========================================== */

.stay-search__icon {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f5eee2;

  color: #b68135;

  border-radius: 50%;
}


.stay-search__icon i {
  font-size: 17px;
}


/* ==========================================
   INPUT
========================================== */

.stay-search__input {
  min-width: 0;
  width: 100%;
}


.stay-search__input label {
  display: block;

  margin-bottom: 6px;

  color: #999b94;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.2px;
}


.stay-search__input input {
  width: 100%;

  padding: 0;

  border: 0;

  outline: 0;

  background: transparent;

  color: #292c26;

  font-family: inherit;

  font-size: 12px;

  font-weight: 600;
}


.stay-search__input input::-webkit-calendar-picker-indicator {
  cursor: pointer;

  opacity: 0.6;
}


.stay-search__input input[type="number"] {
  max-width: 60px;
}


/* ==========================================
   BUTTON
========================================== */

.stay-search__button {
  min-height: 82px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  border: 0;

  background: #b68135;

  color: #ffffff;

  cursor: pointer;

  font-family: inherit;

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}


.stay-search__button i {
  font-size: 17px;

  transition: transform 0.3s ease;
}


.stay-search__button:hover {
  background: #22251f;
}


.stay-search__button:hover i {
  transform: translateX(5px);
}


/* ==========================================
   BOTTOM INFO
========================================== */

.stay-search__bottom {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 35px;

  margin-top: 22px;
}


.stay-search__bottom span {
  display: flex;

  align-items: center;

  gap: 6px;

  color: #858981;

  font-size: 10px;
}


.stay-search__bottom i {
  color: #cb9a51;

  font-size: 14px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

  .stay-search__form {
    grid-template-columns:
      repeat(3, 1fr);
  }


  .stay-search__field:nth-child(3) {
    border-bottom: 1px solid #e8e5de;
  }


  .stay-search__field:nth-child(4) {
    border-top: 1px solid #e8e5de;
  }


  .stay-search__button {
    border-top: 1px solid #e8e5de;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

  .stay-search {
    padding: 60px 15px;
  }


  .stay-search__header {
    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }


  .stay-search__header h2 {
    font-size: 31px;
  }


  .stay-search__form {
    display: flex;

    flex-direction: column;

    border-radius: 8px;
  }


  .stay-search__field {
    min-height: 70px;

    border-right: 0;

    border-bottom: 1px solid #e8e5de;
  }


  .stay-search__button {
    min-height: 65px;
  }


  .stay-search__bottom {
    flex-direction: column;

    gap: 10px;

    align-items: flex-start;
  }

}



/* ==========================================
   TANISHKA HOME STAY
   ROOM BOOKING SECTION
========================================== */

.booking-rooms {
  padding: 100px 20px;

  background: #f7f5f0;
}


.booking-rooms__container {
  max-width: 1200px;

  margin: auto;
}


/* ==========================================
   HEADER
========================================== */

.booking-rooms__header {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 55px;
}


.booking-rooms__label {
  display: block;

  margin-bottom: 12px;

  color: #b68135;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;
}


.booking-rooms__header h2 {
  margin: 0;

  color: #22251f;

  font-size: clamp(34px, 4vw, 50px);

  line-height: 1.1;
}


.booking-rooms__header h2 strong {
  color: #b68135;

  font-weight: 600;
}


.booking-rooms__header > p {
  margin: 0;

  color: #73766f;

  font-size: 14px;

  line-height: 1.9;
}


/* ==========================================
   ROOM GRID
========================================== */

.booking-rooms__grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}


/* ==========================================
   CARD
========================================== */

.booking-room-card {
  overflow: hidden;

  background: #ffffff;

  border: 1px solid #e5e2db;

  border-radius: 10px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


.booking-room-card:hover {
  transform: translateY(-8px);

  border-color: rgba(182, 129, 53, 0.35);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.1);
}


/* ==========================================
   IMAGE
========================================== */

.booking-room-card__image {
  position: relative;

  height: 255px;

  overflow: hidden;
}


.booking-room-card__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}


.booking-room-card:hover
.booking-room-card__image img {
  transform: scale(1.06);
}


/* ==========================================
   IMAGE TAG
========================================== */

.booking-room-card__tag {
  position: absolute;

  left: 16px;
  bottom: 16px;

  padding: 7px 11px;

  background: #cb9a51;

  color: #20231e;

  border-radius: 3px;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* ==========================================
   CARD BODY
========================================== */

.booking-room-card__body {
  padding: 25px;
}


/* ==========================================
   TITLE
========================================== */

.booking-room-card__heading {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 12px;
}


.booking-room-card__small {
  display: block;

  margin-bottom: 7px;

  color: #999b94;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.2px;
}


.booking-room-card__heading h3 {
  margin: 0;

  color: #272a24;

  font-size: 20px;

  font-weight: 600;
}


.booking-room-card__icon {
  width: 45px;
  height: 45px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f5eee2;

  color: #b68135;

  border-radius: 50%;

  transition: 0.3s ease;
}


.booking-room-card:hover
.booking-room-card__icon {
  background: #b68135;

  color: #ffffff;
}


/* ==========================================
   GUEST
========================================== */

.booking-room-card__guest {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  margin-top: 14px;

  padding: 6px 9px;

  background: #f7f5f0;

  color: #676a62;

  border-radius: 3px;

  font-size: 10px;

  font-weight: 600;
}


.booking-room-card__guest i {
  color: #b68135;

  font-size: 13px;
}


/* ==========================================
   DESCRIPTION
========================================== */

.booking-room-card__body > p {
  min-height: 65px;

  margin: 16px 0;

  color: #777a72;

  font-size: 12px;

  line-height: 1.8;
}


/* ==========================================
   FEATURES
========================================== */

.booking-room-card__features {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-bottom: 22px;
}


.booking-room-card__features span {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  padding: 6px 8px;

  border: 1px solid #eeeae2;

  color: #777a72;

  border-radius: 3px;

  font-size: 9px;
}


.booking-room-card__features i {
  color: #b68135;
}


/* ==========================================
   BOTTOM
========================================== */

.booking-room-card__bottom {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 15px;

  padding-top: 18px;

  border-top: 1px solid #ebe8e1;
}


.booking-room-card__price small {
  display: block;

  margin-bottom: 4px;

  color: #999b94;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1px;
}


.booking-room-card__price strong {
  color: #22251f;

  font-size: 22px;

  font-weight: 700;
}


.booking-room-card__price strong span {
  color: #85877f;

  font-size: 9px;

  font-weight: 500;
}


/* ==========================================
   BOOK BUTTON
========================================== */

.booking-room-card__button {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  padding: 11px 15px;

  background: #22251f;

  color: #ffffff;

  text-decoration: none;

  border-radius: 4px;

  font-size: 10px;

  font-weight: 700;

  white-space: nowrap;

  transition: 0.3s ease;
}


.booking-room-card__button i {
  color: #cb9a51;

  transition: 0.3s ease;
}


.booking-room-card__button:hover {
  background: #b68135;
}


.booking-room-card__button:hover i {
  color: #ffffff;

  transform: translateX(3px);
}


/* ==========================================
   NOTE
========================================== */

.booking-rooms__note {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  margin-top: 30px;

  color: #888a83;

  font-size: 10px;

  text-align: center;
}


.booking-rooms__note i {
  color: #b68135;

  font-size: 15px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

  .booking-rooms__grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .booking-room-card:last-child {
    grid-column: span 2;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

  .booking-rooms {
    padding: 70px 15px;
  }


  .booking-rooms__header {
    grid-template-columns: 1fr;

    gap: 20px;

    margin-bottom: 35px;
  }


  .booking-rooms__header h2 {
    font-size: 34px;
  }


  .booking-rooms__grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  .booking-room-card:last-child {
    grid-column: auto;
  }


  .booking-room-card__image {
    height: 235px;
  }


  .booking-room-card__body {
    padding: 22px;
  }


  .booking-room-card__bottom {
    align-items: center;
  }


  .booking-rooms__note {
    align-items: flex-start;

    line-height: 1.6;
  }

}


/* ==========================================
   TANISHKA HOME STAY
   PREMIUM ABOUT SECTION
========================================== */

.about-home {
  padding: 110px 20px;

  background: #ffffff;

  overflow: hidden;
}


.about-home__container {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  gap: 85px;

  align-items: center;
}


/* ==========================================
   IMAGE
========================================== */

.about-home__visual {
  position: relative;

  padding: 15px 15px 30px 0;
}


.about-home__image {
  position: relative;

  height: 560px;

  overflow: hidden;

  border-radius: 4px;
}


.about-home__image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 60%,
      rgba(0, 0, 0, 0.18)
    );
}


.about-home__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.8s ease;
}


.about-home__visual:hover
.about-home__image img {
  transform: scale(1.04);
}


/* ==========================================
   GOLD FRAME
========================================== */

.about-home__visual::before {
  content: "";

  position: absolute;

  width: 85%;

  height: 85%;

  right: -5px;
  bottom: 0;

  border: 1px solid #cb9a51;

  border-radius: 4px;

  z-index: 0;
}


.about-home__image {
  position: relative;

  z-index: 1;
}


/* ==========================================
   BADGE
========================================== */

.about-home__badge {
  position: absolute;

  left: -25px;
  bottom: 70px;

  z-index: 3;

  width: 145px;
  height: 145px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  background: #20231e;

  color: #ffffff;

  border-radius: 50%;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.18);
}


.about-home__badge strong {
  color: #cb9a51;

  font-size: 30px;

  line-height: 1;
}


.about-home__badge span {
  margin-top: 8px;

  color: #d2d3ce;

  font-size: 10px;

  line-height: 1.5;

  letter-spacing: 0.5px;
}


/* ==========================================
   WATERMARK
========================================== */

.about-home__watermark {
  position: absolute;

  right: -25px;
  top: 20px;

  color: #f0eee9;

  font-size: 110px;

  font-weight: 800;

  line-height: 1;

  z-index: 0;
}


/* ==========================================
   CONTENT
========================================== */

.about-home__content {
  position: relative;
}


.about-home__label {
  display: block;

  margin-bottom: 14px;

  color: #b68135;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;
}


.about-home__content h2 {
  margin: 0;

  color: #22251f;

  font-size: clamp(34px, 4vw, 50px);

  line-height: 1.12;
}


.about-home__content h2 strong {
  color: #b68135;

  font-weight: 600;
}


/* ==========================================
   TEXT
========================================== */

.about-home__intro {
  max-width: 600px;

  margin: 25px 0 12px;

  color: #464941;

  font-size: 16px;

  font-weight: 500;

  line-height: 1.8;
}


.about-home__text {
  max-width: 600px;

  margin: 0 0 30px;

  color: #777a72;

  font-size: 13px;

  line-height: 1.9;
}


/* ==========================================
   FEATURES
========================================== */

.about-home__features {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 18px 30px;

  padding: 25px 0;

  border-top: 1px solid #e9e6df;

  border-bottom: 1px solid #e9e6df;
}


.about-home__feature {
  display: flex;

  align-items: center;

  gap: 12px;
}


.about-home__feature > span {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f5eee2;

  color: #b68135;

  border-radius: 50%;
}


.about-home__feature > span i {
  font-size: 19px;
}


.about-home__feature h4 {
  margin: 0 0 4px;

  color: #292c26;

  font-size: 13px;

  font-weight: 700;
}


.about-home__feature p {
  margin: 0;

  color: #85877f;

  font-size: 10px;
}


/* ==========================================
   BUTTONS
========================================== */

.about-home__actions {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 30px;
}


.about-home__button {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 13px 20px;

  background: #22251f;

  color: #ffffff;

  text-decoration: none;

  border-radius: 4px;

  font-size: 11px;

  font-weight: 700;

  transition: 0.3s ease;
}


.about-home__button i {
  color: #cb9a51;

  transition: 0.3s ease;
}


.about-home__button:hover {
  background: #b68135;

  transform: translateY(-2px);
}


.about-home__button:hover i {
  color: #ffffff;

  transform: translateX(4px);
}


.about-home__contact {
  color: #6e7169;

  text-decoration: none;

  font-size: 12px;

  font-weight: 600;

  border-bottom: 1px solid #cb9a51;

  padding-bottom: 3px;

  transition: 0.3s ease;
}


.about-home__contact:hover {
  color: #b68135;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

  .about-home__container {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .about-home__visual {
    max-width: 650px;

    width: 100%;

    margin: auto;
  }


  .about-home__image {
    height: 500px;
  }


  .about-home__content {
    max-width: 750px;

    margin: auto;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .about-home {
    padding: 70px 15px;
  }


  .about-home__visual {
    padding-right: 8px;
  }


  .about-home__image {
    height: 400px;
  }


  .about-home__badge {
    width: 105px;
    height: 105px;

    left: -5px;
    bottom: 45px;
  }


  .about-home__badge strong {
    font-size: 23px;
  }


  .about-home__badge span {
    font-size: 8px;
  }


  .about-home__watermark {
    font-size: 75px;

    right: -5px;
  }


  .about-home__content h2 {
    font-size: 33px;
  }


  .about-home__features {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  .about-home__actions {
    align-items: flex-start;

    flex-direction: column;

    gap: 18px;
  }

}







/* ==========================================
   TANISHKA HOME STAY
   PREMIUM ROOMS SHOWCASE
========================================== */

.rooms-showcase {
  padding: 100px 20px;

  background: #ffffff;
}


.rooms-showcase__container {
  max-width: 1200px;

  margin: auto;
}


/* ==========================================
   HEADER
========================================== */

.rooms-showcase__header {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 55px;
}


.rooms-showcase__label {
  display: block;

  margin-bottom: 12px;

  color: #b68135;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;
}


.rooms-showcase__header h2 {
  margin: 0;

  color: #22251f;

  font-size: clamp(34px, 4vw, 50px);

  line-height: 1.1;
}


.rooms-showcase__header h2 strong {
  color: #b68135;

  font-weight: 600;
}


.rooms-showcase__header > p {
  margin: 0;

  color: #73766f;

  font-size: 14px;

  line-height: 1.9;
}


/* ==========================================
   ROOM GRID
========================================== */

.rooms-showcase__grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}


/* ==========================================
   ROOM CARD
========================================== */

.showcase-room {
  background: #ffffff;

  border: 1px solid #e8e5de;

  border-radius: 12px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


.showcase-room:hover {
  transform: translateY(-8px);

  border-color: rgba(182, 129, 53, 0.35);

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.1);
}


/* ==========================================
   IMAGE
========================================== */

.showcase-room__image {
  position: relative;

  height: 260px;

  overflow: hidden;

  background: #eeeeeb;
}


.showcase-room__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}


.showcase-room:hover
.showcase-room__image img {
  transform: scale(1.06);
}


/* ==========================================
   ROOM NUMBER
========================================== */

.showcase-room__number {
  position: absolute;

  top: 16px;
  left: 16px;

  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(20, 23, 19, 0.85);

  color: #ffffff;

  border-radius: 50%;

  font-size: 11px;

  font-weight: 700;
}


/* ==========================================
   ROOM TYPE
========================================== */

.showcase-room__type {
  position: absolute;

  right: 16px;
  bottom: 16px;

  padding: 7px 11px;

  background: #cb9a51;

  color: #171914;

  border-radius: 3px;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* ==========================================
   CONTENT
========================================== */

.showcase-room__content {
  padding: 25px;
}


/* ==========================================
   TITLE
========================================== */

.showcase-room__title {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 15px;
}


.showcase-room__title span {
  display: block;

  margin-bottom: 7px;

  color: #999b94;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.3px;
}


.showcase-room__title h3 {
  margin: 0;

  color: #252821;

  font-size: 21px;

  font-weight: 600;
}


.showcase-room__title > i {
  color: #b68135;

  font-size: 24px;
}


/* ==========================================
   DESCRIPTION
========================================== */

.showcase-room__content > p {
  margin: 15px 0 20px;

  color: #777a72;

  font-size: 12px;

  line-height: 1.8;
}


/* ==========================================
   FEATURES
========================================== */

.showcase-room__features {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-bottom: 22px;
}


.showcase-room__features span {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  padding: 6px 9px;

  background: #f7f5f0;

  color: #666961;

  border-radius: 3px;

  font-size: 9px;
}


.showcase-room__features i {
  color: #b68135;

  font-size: 12px;
}


/* ==========================================
   BUTTON
========================================== */

.showcase-room__button {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding-top: 15px;

  border-top: 1px solid #eeeae2;

  color: #252821;

  text-decoration: none;

  font-size: 12px;

  font-weight: 700;

  transition: color 0.3s ease;
}


.showcase-room__button i {
  color: #b68135;

  font-size: 17px;

  transition: transform 0.3s ease;
}


.showcase-room__button:hover {
  color: #b68135;
}


.showcase-room__button:hover i {
  transform: translateX(5px);
}


/* ==========================================
   BOTTOM CTA
========================================== */

.rooms-showcase__bottom {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 25px;

  margin-top: 45px;

  padding-top: 30px;

  border-top: 1px solid #ebe8e1;
}


.rooms-showcase__bottom p {
  margin: 0;

  color: #777a72;

  font-size: 13px;
}


.rooms-showcase__all-button {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 20px;

  background: #22251f;

  color: #ffffff;

  text-decoration: none;

  border-radius: 4px;

  font-size: 11px;

  font-weight: 700;

  transition: 0.3s ease;
}


.rooms-showcase__all-button:hover {
  background: #b68135;

  transform: translateY(-2px);
}


.rooms-showcase__all-button i {
  color: #cb9a51;

  transition: 0.3s ease;
}


.rooms-showcase__all-button:hover i {
  color: #ffffff;

  transform: translateX(4px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

  .rooms-showcase__grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .showcase-room:last-child {
    grid-column: span 2;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

  .rooms-showcase {
    padding: 70px 15px;
  }


  .rooms-showcase__header {
    grid-template-columns: 1fr;

    gap: 20px;

    margin-bottom: 35px;
  }


  .rooms-showcase__header h2 {
    font-size: 34px;
  }


  .rooms-showcase__grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  .showcase-room:last-child {
    grid-column: auto;
  }


  .showcase-room__image {
    height: 240px;
  }


  .rooms-showcase__bottom {
    flex-direction: column;

    gap: 15px;

    text-align: center;
  }

}








/* ==========================================
   TANISHKA HOME STAY
   PREMIUM SERVICES
========================================== */

.premium-services {
  padding: 100px 20px;

  background: #f7f5f0;
}


/* ==========================================
   CONTAINER
========================================== */

.premium-services__container {
  max-width: 1200px;

  margin: auto;
}


/* ==========================================
   HEADER
========================================== */

.premium-services__header {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 55px;
}


.premium-services__label {
  display: block;

  margin-bottom: 12px;

  color: #b68135;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;
}


.premium-services__header h2 {
  margin: 0;

  color: #22251f;

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.15;
}


.premium-services__header h2 strong {
  color: #b68135;

  font-weight: 600;
}


.premium-services__header > p {
  margin: 0;

  color: #6e716a;

  font-size: 14px;

  line-height: 1.9;
}


/* ==========================================
   SERVICE GRID
========================================== */

.premium-services__grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}


/* ==========================================
   CARD
========================================== */

.premium-service-card {
  position: relative;

  min-height: 330px;

  padding: 28px;

  box-sizing: border-box;

  background: #ffffff;

  border: 1px solid #e8e5de;

  border-radius: 10px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


.premium-service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(182, 129, 53, 0.4);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.09);
}


/* ==========================================
   TOP
========================================== */

.premium-service-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 45px;
}


.premium-service-number {
  color: #b7b8b1;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1px;
}


/* ==========================================
   ICON
========================================== */

.premium-service-icon {
  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f5eee2;

  border-radius: 50%;

  color: #b68135;

  transition: 0.35s ease;
}


.premium-service-icon i {
  font-size: 23px;
}


.premium-service-card:hover
.premium-service-icon {
  background: #b68135;

  color: #ffffff;

  transform: rotate(8deg);
}


/* ==========================================
   TITLE
========================================== */

.premium-service-card h3 {
  margin: 0 0 12px;

  color: #252821;

  font-size: 20px;

  font-weight: 600;
}


/* ==========================================
   DESCRIPTION
========================================== */

.premium-service-card p {
  margin: 0;

  color: #777a72;

  font-size: 13px;

  line-height: 1.8;
}


/* ==========================================
   LINE
========================================== */

.premium-service-line {
  width: 35px;

  height: 2px;

  margin-top: 25px;

  background: #b68135;

  transition: width 0.35s ease;
}


.premium-service-card:hover
.premium-service-line {
  width: 65px;
}


/* ==========================================
   TAG
========================================== */

.premium-service-tag {
  position: absolute;

  left: 28px;

  bottom: 25px;

  color: #aaa9a1;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

  .premium-services__grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

  .premium-services {
    padding: 70px 15px;
  }


  .premium-services__header {
    grid-template-columns: 1fr;

    gap: 20px;

    margin-bottom: 35px;
  }


  .premium-services__header h2 {
    font-size: 32px;
  }


  .premium-services__grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }


  .premium-service-card {
    min-height: 290px;

    padding: 25px;
  }


  .premium-service-top {
    margin-bottom: 35px;
  }

}






/* ==========================================
   TANISHKA HOME STAY
   PREMIUM STATS SECTION
========================================== */

.stay-stats {
  position: relative;

  padding: 90px 20px;

  background: #20231e;

  overflow: hidden;
}


/* Decorative circles */

.stay-stats::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  border: 1px solid rgba(203, 154, 81, 0.12);

  border-radius: 50%;

  top: -260px;
  left: -120px;
}


.stay-stats::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  border: 1px solid rgba(203, 154, 81, 0.1);

  border-radius: 50%;

  bottom: -240px;
  right: -100px;
}


/* CONTAINER */

.stay-stats__container {
  position: relative;

  z-index: 2;

  max-width: 1200px;

  margin: auto;
}


/* ==========================================
   HEADING
========================================== */

.stay-stats__heading {
  max-width: 650px;

  margin: 0 auto 55px;

  text-align: center;
}


.stay-stats__heading > span {
  display: block;

  margin-bottom: 12px;

  color: #cb9a51;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;
}


.stay-stats__heading h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(30px, 4vw, 44px);

  line-height: 1.2;
}


.stay-stats__heading h2 strong {
  color: #cb9a51;

  font-weight: 600;
}


.stay-stats__heading p {
  max-width: 560px;

  margin: 16px auto 0;

  color: #a5a8a1;

  font-size: 14px;

  line-height: 1.8;
}


/* ==========================================
   STATS GRID
========================================== */

.stay-stats__grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}


/* ==========================================
   STAT CARD
========================================== */

.stay-stat {
  position: relative;

  padding: 35px 25px;

  text-align: center;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 10px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}


.stay-stat:hover {
  transform: translateY(-8px);

  background: rgba(203, 154, 81, 0.07);

  border-color: rgba(203, 154, 81, 0.35);
}


/* ==========================================
   ICON
========================================== */

.stay-stat__icon {
  width: 52px;
  height: 52px;

  margin: 0 auto 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(203, 154, 81, 0.12);

  border-radius: 50%;

  color: #cb9a51;

  transition: 0.3s ease;
}


.stay-stat__icon i {
  font-size: 23px;
}


.stay-stat:hover .stay-stat__icon {
  background: #cb9a51;

  color: #20231e;

  transform: rotate(5deg);
}


/* ==========================================
   NUMBER
========================================== */

.stay-stat__number {
  margin-bottom: 5px;

  color: #ffffff;

  font-size: 42px;

  font-weight: 700;

  line-height: 1;
}


.stay-stat__number span {
  color: #cb9a51;

  font-size: 26px;
}


/* ==========================================
   TITLE
========================================== */

.stay-stat h3 {
  margin: 12px 0 8px;

  color: #e4e4df;

  font-size: 15px;

  font-weight: 600;
}


/* ==========================================
   DESCRIPTION
========================================== */

.stay-stat p {
  margin: 0;

  color: #858981;

  font-size: 12px;

  line-height: 1.7;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

  .stay-stats__grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .stay-stats {
    padding: 65px 15px;
  }


  .stay-stats__heading {
    margin-bottom: 35px;
  }


  .stay-stats__heading h2 {
    font-size: 30px;
  }


  .stay-stats__grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .stay-stat {
    padding: 28px 20px;
  }


  .stay-stat__number {
    font-size: 38px;
  }

}










/* ==========================================
   LOCATION SECTION
   TANISHKA HOME STAY
========================================== */

.location-section {
  padding: 90px 20px;
  background: #f7f5f0;
}


.location-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 55px;

  align-items: center;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.location-info {
  padding: 10px 0;
}


.location-label {
  display: inline-block;

  margin-bottom: 14px;

  color: #b68135;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 3px;
}


.location-info h2 {
  margin: 0;

  color: #20231e;

  font-size: clamp(32px, 4vw, 50px);

  line-height: 1.12;
}


.location-info h2 span {
  color: #b68135;
}


.location-description {
  max-width: 500px;

  margin: 22px 0 30px;

  color: #666961;

  font-size: 15px;

  line-height: 1.8;
}


/* ==========================================
   CONTACT DETAILS
========================================== */

.location-detail {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 17px;

  color: inherit;

  text-decoration: none;
}


.location-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #ffffff;

  color: #b68135;

  border-radius: 50%;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.07);

  transition: 0.3s ease;
}


.location-icon i {
  font-size: 20px;
}


.location-detail:hover .location-icon {
  background: #b68135;

  color: #ffffff;

  transform: translateY(-3px);
}


.location-detail small {
  display: block;

  margin-bottom: 5px;

  color: #969890;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.location-detail strong {
  display: block;

  color: #30332d;

  font-size: 14px;

  line-height: 1.6;

  font-weight: 600;
}


/* ==========================================
   DIRECTIONS BUTTON
========================================== */

.location-button {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 15px;

  padding: 14px 22px;

  background: #20231e;

  color: #ffffff;

  text-decoration: none;

  border-radius: 5px;

  font-size: 13px;

  font-weight: 600;

  transition: 0.3s ease;
}


.location-button > i:first-child {
  color: #d3a15a;
}


.location-button > i:last-child {
  transition: 0.3s ease;
}


.location-button:hover {
  background: #b68135;

  transform: translateY(-3px);
}


.location-button:hover > i:first-child {
  color: #ffffff;
}


.location-button:hover > i:last-child {
  transform: translateX(4px);
}


/* ==========================================
   MAP
========================================== */

.location-map {
  position: relative;

  background: #ffffff;

  padding: 10px;

  border-radius: 14px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12);
}


/* MAP HEADER */

.map-header {
  min-height: 50px;

  padding: 0 14px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;
}


.map-header > span:first-child {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #252821;

  font-size: 13px;

  font-weight: 700;
}


.map-header > span:first-child i {
  color: #b68135;

  font-size: 18px;
}


.map-status {
  display: flex;

  align-items: center;

  gap: 5px;

  color: #6d746b;

  font-size: 11px;
}


.map-status i {
  color: #4d9a61;
}


/* MAP CONTAINER */

.map-container {
  width: 100%;

  height: 430px;

  overflow: hidden;

  border-radius: 9px;
}


.map-container iframe {
  width: 100%;
  height: 100%;

  border: 0;

  display: block;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

  .location-container {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .location-info {
    max-width: 650px;
  }

  .location-map {
    width: 100%;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .location-section {
    padding: 65px 15px;
  }

  .location-container {
    gap: 35px;
  }

  .location-info h2 {
    font-size: 34px;
  }

  .location-description {
    font-size: 14px;
  }

  .map-header {
    min-height: 55px;
    padding: 0 8px;
  }

  .map-status {
    display: none;
  }

  .map-container {
    height: 350px;
  }

  .location-button {
    width: 100%;

    justify-content: center;

    box-sizing: border-box;
  }

}

/* =========================================
   CONTACT SECTION - NEW DESIGN
========================================= */

.footer-contact-column {
  position: relative;
}

.footer-contact-intro {
  color: #777a73;
  font-size: 13px;
  line-height: 1.7;
  margin: -10px 0 22px;
  max-width: 280px;
}


/* Contact list */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* Contact item */

.contact-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}


/* Hover */

.contact-item:hover {
  background: rgba(203, 154, 81, 0.07);
  border-color: rgba(203, 154, 81, 0.15);
  transform: translateX(4px);
}


/* Icon */

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(203, 154, 81, 0.1);
  color: #cb9a51;

  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 18px;
}


/* Icon hover */

.contact-item:hover .contact-icon {
  background: #cb9a51;
  color: #111;
}


/* Text */

.contact-content {
  min-width: 0;
  flex: 1;
}

.contact-content small {
  display: block;
  margin-bottom: 3px;

  color: #777a73;

  font-size: 10px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.contact-content strong {
  display: block;

  color: #d7d7d2;

  font-size: 12px;
  font-weight: 500;

  line-height: 1.5;

  word-break: break-word;
}


/* Arrow */

.contact-arrow {
  color: #555850;
  font-size: 15px;

  transition: all 0.3s ease;
}

.contact-item:hover .contact-arrow {
  color: #cb9a51;
  transform: translate(2px, -2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .footer-contact-intro {
    max-width: 100%;
  }

  .contact-item {
    padding: 13px 10px;
  }

}





    /* =========================================
   PREMIUM TANISHKA HOME STAY FOOTER
========================================= */

.luxury-footer {
  position: relative;
  background: #10130f;
  color: #ffffff;
  margin-top: 80px;
  overflow: hidden;
}


/* Decorative background */

.luxury-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(203, 154, 81, 0.12);
  top: -220px;
  right: -120px;
}

.luxury-footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(203, 154, 81, 0.08);
  bottom: -180px;
  left: -120px;
}


/* Container */

.luxury-footer__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px 0;
}


/* Main footer */

.luxury-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr 1.2fr;
  gap: 55px;
  padding-bottom: 55px;
}


/* Brand */

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ffffff;
}

.footer-logo span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 6px;
  color: #cb9a51;
}


.luxury-footer__brand p {
  max-width: 360px;
  margin: 25px 0;
  color: #a9aaa5;
  line-height: 1.8;
  font-size: 14px;
}


/* Booking button */

.footer-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: #cb9a51;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.3s ease;
}

.footer-book-btn i {
  font-size: 20px;
}

.footer-book-btn:hover {
  transform: translateY(-3px);
  background: #e0b36b;
}


/* Headings */

.luxury-footer__column h4 {
  position: relative;
  margin: 0 0 25px;
  font-size: 17px;
  color: #ffffff;
}

.luxury-footer__column h4::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background: #cb9a51;
  margin-top: 10px;
}


/* Quick links */

.luxury-footer__column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.luxury-footer__column ul li {
  margin-bottom: 13px;
}

.luxury-footer__column ul a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a9aaa5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.luxury-footer__column ul a i {
  color: #cb9a51;
  transition: 0.3s ease;
}

.luxury-footer__column ul a:hover {
  color: #ffffff;
  transform: translateX(5px);
}


/* Contact */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  text-decoration: none;
  color: #ffffff;
}

.footer-contact a > span {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(203, 154, 81, 0.1);
  color: #cb9a51;
  border-radius: 50%;
}

.footer-contact a > span i {
  font-size: 18px;
}

.footer-contact small {
  display: block;
  margin-bottom: 4px;
  color: #777a73;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact strong {
  color: #d5d5d0;
  font-size: 13px;
  line-height: 1.5;
}


/* Features */

.footer-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b5b6b1;
  font-size: 13px;
}

.footer-features i {
  color: #cb9a51;
  font-size: 20px;
}


/* Bottom */

.luxury-footer__bottom {
  min-height: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.luxury-footer__bottom p {
  margin: 0;
  color: #777a73;
  font-size: 12px;
}

.luxury-footer__bottom strong {
  color: #cb9a51;
}


/* Social */

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(203, 154, 81, 0.3);
  color: #cb9a51;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #cb9a51;
  color: #111;
  transform: translateY(-3px);
}


/* Designer */

.designer-link {
  color: #777a73;
  text-decoration: none;
  font-size: 12px;
  transition: 0.3s ease;
}

.designer-link:hover {
  color: #cb9a51;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .luxury-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .luxury-footer__container {
    padding: 55px 20px 0;
  }

  .luxury-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .luxury-footer__brand p {
    max-width: 100%;
  }

  .luxury-footer__bottom {
    padding: 22px 0;
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    order: -1;
  }

}
    