.contect4-section-area .contact4-header span {
  color: #be7f0f;
  background: rgb(247, 244, 234);
}
.contect4-section-area .contact4-from-area p {
  color: #222;
  text-align: justify;
}
.contect4-section-area .contact4-header p {
  color: #222;
  text-align: justify;
}
.contect4-section-area .contact4-header .contact-calls-area {
  background: rgb(230, 226, 216);
}
.contect4-section-area
  .contact4-header
  .contact-calls-area
  .contact-call-content
  a {
  font-size: 20px;
  color: #222;
}
.contect4-section-area .contact4-from-area .contact4-input-area button {
  background: #c2820e;
}
/* Gallery Homestay - Simple Boxes (No Tabs) */
.gallery-homestay-section {
  padding: 60px 0 10px;
  background: linear-gradient(
    135deg,
    rgba(245, 245, 220, 0.3),
    rgba(230, 184, 82, 0.1)
  );
  position: relative;
}
.contect4-section-area .contact4-header .contact-calls-area .contact-calls-img {
  background: #c2820e;
}
.contect4-section-area .contact4-from-area .contact4-input-area button:hover {
  background: #c2820e;
}
/* Header */
.gallery-homestay-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-homestay-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.gallery-homestay-header p {
  font-size: 17px;
  color: #8b5a3c;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.gallery-homestay-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #c8860d, #e6b852, #c8860d);
  margin: 0 auto;
  border-radius: 2px;
}

/* Gallery Grid - Simple Masonry Layout */
.gallery-homestay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
  gap: 20px;
  margin-bottom: 60px;
}

.gallery-homestay-item {
  position: relative;
  border-radius: 15px;
  height: 300px !important;

  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(153, 101, 21, 0.1);
  border: 2px solid rgba(200, 134, 13, 0.2);
}

.gallery-homestay-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(153, 101, 21, 0.2);
  border-color: #c8860d;
}

.gallery-homestay-image {
  position: relative;
  width: 100%;
  height: 300px !important;

  overflow: hidden;
}

.gallery-homestay-image img {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-homestay-item:hover .gallery-homestay-image img {
  transform: scale(1.1);
}

/* Dynamic Heights for Masonry */
.gallery-homestay-item:nth-child(1) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(2) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(3) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(4) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(5) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(6) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(7) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(8) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(9) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(10) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(11) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(12) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(13) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(14) {
  grid-row-end: auto;
}
.gallery-homestay-item:nth-child(15) {
  grid-row-end: auto;
}

/* Overlay */
.gallery-homestay-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-homestay-item:hover .gallery-homestay-overlay {
  opacity: 1;
}

.gallery-homestay-overlay-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.gallery-homestay-overlay-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.gallery-homestay-overlay-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

/* Load More Button */
.gallery-homestay-load-more {
  text-align: center;
}

.gallery-homestay-load-btn {
  background: linear-gradient(135deg, #c8860d, #996515);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
}

.gallery-homestay-load-btn:hover {
  background: linear-gradient(135deg, #996515, #e6b852);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 134, 13, 0.4);
}

.gallery-homestay-load-more p {
  color: #8b5a3c;
  font-size: 0.9rem;
  margin: 15px 0 0;
  font-style: italic;
}

/* Lightbox Modal (Same as before) */
.gallery-homestay-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-homestay-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-homestay-lightbox-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-homestay-lightbox-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.gallery-homestay-lightbox-content {
  position: relative;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-homestay-lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.gallery-homestay-lightbox-info {
  padding: 20px;
  background: white;
  text-align: center;
}

.gallery-homestay-lightbox-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #996515;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.gallery-homestay-lightbox-info p {
  color: #8b5a3c;
  margin-bottom: 15px;
}

.gallery-homestay-lightbox-counter {
  display: inline-block;
  background: rgba(200, 134, 13, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  color: #996515;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Lightbox Navigation */
.gallery-homestay-lightbox-close,
.gallery-homestay-lightbox-prev,
.gallery-homestay-lightbox-next {
  position: absolute;
  background: rgba(200, 134, 13, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.gallery-homestay-lightbox-close {
  top: 20px;
  right: 20px;
}

.gallery-homestay-lightbox-prev {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.gallery-homestay-lightbox-next {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.gallery-homestay-lightbox-close:hover,
.gallery-homestay-lightbox-prev:hover,
.gallery-homestay-lightbox-next:hover {
  background: rgba(200, 134, 13, 1);
  transform: scale(1.1);
}

.gallery-homestay-lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.gallery-homestay-lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Room Hero Section */
.room-hero-section {
  padding: 50px 0;
  background: linear-gradient(
    135deg,
    rgba(245, 245, 220, 0.9),
    rgba(230, 184, 82, 0.2)
  );
  position: relative;
}

.room-hero-content {
  text-align: center;
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  border: 2px solid rgba(200, 134, 13, 0.3);
}

.room-hero-badge {
  position: absolute;
  top: 10px;
  right: 17px;
  background: linear-gradient(135deg, #c8860d, #996515);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}

.room-hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.room-hero-subtitle {
  font-size: 17px;
  color: #8b5a3c;
  font-style: italic;
  margin-bottom: 25px;
  font-family: "Dancing Script", cursive;
}

.room-hero-description {
  max-width: 800px;
  margin: 0 auto 30px;
}

.room-hero-description p {
  font-size: 17px;
  line-height: 1.7;
  color: #222;
  text-align: justify;
}

.room-hero-quick-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.room-hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 134, 13, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(200, 134, 13, 0.3);
}

.room-hero-info-item i {
  color: #c8860d;
  font-size: 1rem;
}

.room-hero-info-item span {
  color: #222;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Room Amenities Section */
.room-amenities-section {
  padding: 30px 0;
  background: #ffffff;
}

.room-amenities-header {
  text-align: center;
  margin-bottom: 60px;
}

.room-amenities-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.room-amenities-header p {
  font-size: 17px;
  color: #8b5a3c;
  font-style: italic;
}

.room-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.room-amenities-category {
  background: linear-gradient(
    135deg,
    rgba(245, 245, 220, 0.6),
    rgba(230, 184, 82, 0.1)
  );
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(200, 134, 13, 0.2);
}

.room-amenities-category h3 {
  font-size: 1.4rem;
  margin-top: -26px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid rgba(200, 134, 13, 0.3);
  padding-bottom: 10px;
}

.room-amenities-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.room-amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.room-amenity-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}

.room-amenity-item i {
  color: #c8860d;
  font-size: 1rem;
  width: 20px;
}

.room-amenity-item span {
  color: #222;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Room Policies Section */
.room-policies-section {
  padding: 30px 0;
  background: linear-gradient(
    135deg,
    rgba(245, 245, 220, 0.3),
    rgba(230, 184, 82, 0.05)
  );
}

.room-policy-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(200, 134, 13, 0.2);
  box-shadow: 0 10px 30px rgba(153, 101, 21, 0.1);
  height: 100%;
}

.room-policy-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid rgba(200, 134, 13, 0.3);
  padding-bottom: 10px;
}

.room-policy-card h3 i {
  color: #c8860d;
  font-size: 1.1rem;
}

.room-policy-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-policy-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  background: rgba(245, 245, 220, 0.3);
  border-radius: 8px;
}

.room-policy-item i {
  color: #c8860d;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.room-policy-item span {
  color: #222;
  text-align: justify;
  font-size: 0.9rem;
  line-height: 1.5;
}

.room-checkin-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 30px;
  background: rgba(200, 134, 13, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(200, 134, 13, 0.3);
}

.room-checkin-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 15px;
  border-radius: 10px;
}

.room-checkin-item i {
  color: #c8860d;
  font-size: 1.2rem;
}

.room-checkin-item strong {
  display: block;
  color: #996515;
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.room-checkin-item span {
  color: #654321;
  font-size: 0.85rem;
}

/* Room Booking Section */
.room-booking-section {
  padding: 30px 0;
  background: #ffffff;
}

.room-booking-card {
  background: linear-gradient(
    135deg,
    rgba(245, 245, 220, 0.8),
    rgba(230, 184, 82, 0.1)
  );
  padding: 28px;
  border-radius: 20px;
  border: 2px solid rgba(200, 134, 13, 0.3);
  text-align: center;
  box-shadow: 0 15px 35px rgba(153, 101, 21, 0.1);
}

.room-booking-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.room-booking-header p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 30px;
}

.room-booking-pricing {
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
}

.room-price-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: #c8860d;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.room-price-main small {
  font-size: 1rem;
  color: #222;
  font-weight: 400;
}

.room-price-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.room-price-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #222;
  font-size: 0.9rem;
}

.room-price-features i {
  color: #28a745;
  font-size: 0.8rem;
}

.room-booking-buttons {
  display: flex;
  flex-direction: row;
  gap: 42px;
  margin-bottom: 20px;
}
.room-booking-actions {
  margin-left: 32px;
}
.room-booking-primary-btn,
.room-booking-secondary-btn,
.room-booking-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.room-booking-primary-btn {
  background: linear-gradient(135deg, #c8860d, #996515);
  color: white;
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
}

.room-booking-primary-btn:hover {
  background: linear-gradient(135deg, #996515, #e6b852);
  transform: translateY(-2px);
  color: white;
}

.room-booking-secondary-btn {
  background: transparent;
  color: #996515;
  border: 2px solid #c8860d;
}

.room-booking-secondary-btn:hover {
  background: #c8860d;
  color: white;
  transform: translateY(-2px);
}

.room-booking-whatsapp-btn {
  background: #25d366;
  color: white;
  border: 2px solid #25d366;
}

.room-booking-whatsapp-btn:hover {
  transform: translateY(-2px);
  color: white;
}

.room-booking-note {
  background: rgba(230, 184, 82, 0.2);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #c8860d;
}

.room-booking-note p {
  margin: 0;
  color: #654321;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-booking-note i {
  color: #c8860d;
}

.header-area .main-menu-ex.homepage4 ul li ul li a:hover {
  color: #ab7212;
}
.header-area .main-menu-ex.homepage4 ul li ul li a:hover::after {
  background: #ab7212;
}
.products-details-custom-section {
  padding: 50px 0 50px;
  background: #ffffff;
  position: relative;
}

/* Hero Section */
.products-details-custom-hero {
  background: linear-gradient(
    135deg,
    rgba(245, 245, 220, 0.9),
    rgba(230, 184, 82, 0.2)
  );
  padding: 60px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  position: relative;
  border: 2px solid rgba(200, 134, 13, 0.3);
}

.products-details-custom-badge {
  position: absolute;
  top: 30px;
  right: 40px;
  background: linear-gradient(135deg, #c8860d, #996515);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(200, 134, 13, 0.3);
}

.products-details-custom-title {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

.products-details-custom-subtitle {
  font-size: 17px;
  color: #8b5a3c;
  font-style: italic;
  margin-bottom: 35px;
  font-family: "Dancing Script", cursive;
  font-weight: 600;
}

/* Tour Summary */
.products-details-custom-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 35px;
}

.products-details-custom-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(200, 134, 13, 0.3);
  transition: all 0.3s ease;
}

.products-details-custom-summary-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.15);
}

.products-details-custom-summary-item i {
  color: #c8860d !important;
  font-size: 1.2rem !important;
  margin-top: 3px;
  flex-shrink: 0;
}

.products-details-custom-summary-item strong {
  display: block;
  color: #996515;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.products-details-custom-summary-item span {
  color: #222;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Customizable Notice */
.products-details-custom-notice {
  display: flex;
  gap: 15px;
  background: rgba(230, 184, 82, 0.15);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #c8860d;
}

.products-details-custom-notice i {
  color: #c8860d !important;
  font-size: 1.3rem !important;
  margin-top: 3px;
  flex-shrink: 0;
}

.products-details-custom-notice strong {
  color: #222;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.products-details-custom-notice p {
  color: #222;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Content Sections */
.products-details-custom-content-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(230, 184, 82, 0.3);
}

.products-details-custom-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Playfair Display", serif;
}

.products-details-custom-section-title i {
  color: #c8860d !important;
  font-size: 1.5rem !important;
}

/* Tour Plan */
.products-details-custom-tour-plan {
  position: relative;
}

.products-details-custom-tour-stop {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
}

.products-details-custom-tour-stop:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 70px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, #c8860d, #e6b852);
}

.products-details-custom-tour-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #c8860d, #996515);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(200, 134, 13, 0.3);
}

.products-details-custom-tour-content {
  flex: 1;
  background: rgba(245, 245, 220, 0.4);
  padding: 25px;
  border-radius: 15px;
  border-left: 3px solid #e6b852;
}

.products-details-custom-tour-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.products-details-custom-tour-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  flex: 1;
}

.products-details-custom-tour-time {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 134, 13, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  flex-shrink: 0;
}

.products-details-custom-tour-time i {
  color: #c8860d !important;
  font-size: 0.9rem !important;
}

.products-details-custom-tour-time span {
  color: #996515;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Activities - FIXED ICONS */
.products-details-custom-activity {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  border: 1px solid rgba(200, 134, 13, 0.2);
}

.products-details-custom-activity h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* HIGH SPECIFICITY FOR ACTIVITY ICONS */
.products-details-custom-section .products-details-custom-activity h4 i,
.products-details-custom-section .products-details-custom-activity h4 i.fas,
.products-details-custom-section .products-details-custom-activity h4 i.far,
.products-details-custom-section .products-details-custom-activity h4 i.fab,
.products-details-custom-section
  .products-details-custom-activity
  h4
  i[class*="fa-"] {
  color: #c8860d !important;
  font-size: 1rem !important;
  margin-right: 0 !important;
  width: auto !important;
  flex-shrink: 0 !important;
}

.products-details-custom-activity p {
  color: #222;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* What to Do & Recommendations */
.products-details-custom-what-to-do,
.products-details-custom-recommendation {
  margin-top: 15px;
  padding: 15px;
  border-radius: 8px;
}

.products-details-custom-what-to-do {
  background: rgba(144, 238, 144, 0.1);
  border-left: 3px solid #28a745;
}

.products-details-custom-recommendation {
  background: rgba(255, 193, 7, 0.1);
  border-left: 3px solid #ffc107;
}

.products-details-custom-what-to-do strong,
.products-details-custom-recommendation strong {
  color: #222;
  font-weight: 600;
}

.products-details-custom-what-to-do p,
.products-details-custom-recommendation p {
  color: #222;
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Gallery */
.products-details-custom-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.products-details-custom-gallery-item {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(200, 134, 13, 0.3);
}

.products-details-custom-gallery-item:hover {
  transform: scale(1.03);
  border-color: #c8860d;
}

.products-details-custom-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.products-details-custom-gallery-item:hover img {
  transform: scale(1.1);
}

.products-details-custom-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(200, 134, 13, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.products-details-custom-gallery-item:hover
  .products-details-custom-gallery-overlay {
  opacity: 1;
}

.products-details-custom-gallery-overlay i {
  color: white !important;
  font-size: 2rem !important;
}

/* Tips */
.products-details-custom-tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.products-details-custom-tip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245, 245, 220, 0.5);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #c8860d;
}

.products-details-custom-tip-item i {
  color: #c8860d !important;
  font-size: 0.9rem !important;
  margin-top: 3px;
  flex-shrink: 0;
}

.products-details-custom-tip-item span {
  color: #654321;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Sidebar */
.products-details-custom-sidebar {
  position: sticky;
  top: 100px;
}

/* Info Card */
.products-details-custom-info-card {
  background: linear-gradient(
    135deg,
    rgba(245, 245, 220, 0.8),
    rgba(230, 184, 82, 0.1)
  );
  border: 2px solid rgba(200, 134, 13, 0.3);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 25px;
}

.products-details-custom-info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #996515;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.products-details-custom-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

.products-details-custom-info-item i {
  color: #c8860d !important;
  font-size: 1rem !important;
  width: 20px;
}

.products-details-custom-info-item strong {
  display: block;
  color: #222;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.products-details-custom-info-item span {
  color: #222;
  font-size: 0.85rem;
}

/* Booking Card */
.products-details-custom-booking-card {
  background: white;
  border: 2px solid rgba(200, 134, 13, 0.3);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(153, 101, 21, 0.1);
}

.products-details-custom-price-section {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(230, 184, 82, 0.3);
}

.products-details-custom-price {
  font-size: 2rem;
  font-weight: 800;
  color: #996515 !important;
  font-family: "Playfair Display", serif;
  margin-bottom: 5px;
}

.products-details-custom-price-note {
  font-size: 0.85rem;
  color: #222;

  margin: 0;
  line-height: 1.4;
}

.products-details-custom-booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.products-details-custom-book-btn,
.products-details-custom-call-btn,
.products-details-custom-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-align: center;
}

.products-details-custom-book-btn {
  background: linear-gradient(135deg, #c8860d, #996515);
  color: white;
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
}

.products-details-custom-book-btn:hover {
  background: linear-gradient(135deg, #996515, #e6b852);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 134, 13, 0.4);
  color: white;
}

.products-details-custom-call-btn {
  background: transparent;
  color: #996515;
  border: 2px solid #c8860d;
}

.products-details-custom-call-btn:hover {
  background: #c8860d;
  color: white;
  transform: translateY(-2px);
}

.products-details-custom-whatsapp-btn {
  background: #25d366;
  color: white;
  border: 2px solid #25d366;
}

.products-details-custom-whatsapp-btn:hover {
  transform: translateY(-2px);
  color: white;
}

/* Contact Card */
.products-details-custom-contact-card {
  background: linear-gradient(
    135deg,
    rgba(245, 245, 220, 0.6),
    rgba(230, 184, 82, 0.1)
  );
  border: 2px solid rgba(200, 134, 13, 0.2);
  border-radius: 15px;
  padding: 20px;
}

.products-details-custom-contact-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #996515;
  margin-bottom: 12px;
  text-align: center;
}

.products-details-custom-contact-card p {
  color: #222;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.4;
}

.products-details-custom-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.products-details-custom-contact-item i {
  color: #c8860d !important;
  font-size: 1rem !important;
  margin-top: 2px;
  width: 16px;
}

.products-details-custom-contact-item strong {
  display: block;
  color: #222;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.products-details-custom-contact-item a {
  color: #222;
  text-decoration: none;
  font-size: 0.85rem;
}

.products-details-custom-contact-item a:hover {
  color: #c8860d;
}

/* Force Color Override for All Icons */
.products-details-custom-section i[class*="fa"] {
  color: #c8860d !important;
}

/* Additional Specificity for Stubborn Icons */
.products-details-custom-section .fas,
.products-details-custom-section .far,
.products-details-custom-section .fab {
  color: #c8860d !important;
}

.our-products-homestay-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fefefe 0%, #f8f6f0 100%);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.our-products-homestay-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 15% 15%,
      rgba(200, 134, 13, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 85%,
      rgba(230, 184, 82, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Header Section */
.our-products-homestay-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.our-products-homestay-title {
  font-size: 48px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  letter-spacing: -1px;
  line-height: 1.2;
}

.our-products-homestay-subtitle {
  font-size: 1.4rem;
  color: #8b5a3c;
  font-style: italic;
  margin-bottom: 30px;
  font-family: "Dancing Script", cursive;
  font-weight: 600;
}

.our-products-homestay-divider {
  width: 150px;
  height: 4px;
  background: linear-gradient(
    90deg,
    #c8860d,
    #e6b852,
    #f4c430,
    #e6b852,
    #c8860d
  );
  margin: 0 auto 40px;
  border-radius: 2px;
  position: relative;
}

.our-products-homestay-divider::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: #c8860d;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(200, 134, 13, 0.4);
}

.our-products-homestay-description {
  max-width: 800px;
  margin: 0 auto;
}

.our-products-homestay-description p {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
  text-align: justify;
  font-style: italic;
  padding: 25px;
  background: rgba(245, 245, 220, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(200, 134, 13, 0.2);
}

/* Tours Grid */
.our-products-homestay-tours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.our-products-homestay-tour-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(153, 101, 21, 0.12);
  transition: all 0.4s ease;
  border: 2px solid rgba(230, 184, 82, 0.2);
  position: relative;
}

.our-products-homestay-tour-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(153, 101, 21, 0.2);
  border-color: #c8860d;
}

/* Card Image */
.our-products-homestay-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.our-products-homestay-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.our-products-homestay-tour-card:hover .our-products-homestay-card-image img {
  transform: scale(1.1);
}

/* Card Overlay */
.our-products-homestay-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 134, 13, 0.8),
    rgba(153, 101, 21, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.our-products-homestay-tour-card:hover .our-products-homestay-card-overlay {
  opacity: 1;
}

.our-products-homestay-card-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.our-products-homestay-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(244, 196, 48, 0.9);
  color: #996515;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Card Content */
.our-products-homestay-card-content {
  padding: 30px;
}

.our-products-homestay-card-header {
  margin-bottom: 20px;
}

.our-products-homestay-card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.our-products-homestay-card-subtitle {
  font-size: 0.95rem;
  color: #c8860d;
  font-style: italic;
  margin-bottom: 0;
  font-weight: 500;
}

.our-products-homestay-card-description {
  font-size: 16px;
  color: #222;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

/* Highlights */
.our-products-homestay-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.our-products-homestay-highlight-tag {
  background: rgba(230, 184, 82, 0.2);
  color: #222;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(200, 134, 13, 0.3);
}

/* Card Footer */
.our-products-homestay-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(230, 184, 82, 0.3);
  padding-top: 20px;
}

.our-products-homestay-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  font-family: "Playfair Display", serif;
}

.our-products-homestay-book-btn {
  background: linear-gradient(135deg, #c8860d, #996515);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(200, 134, 13, 0.3);
}

.our-products-homestay-book-btn:hover {
  background: linear-gradient(135deg, #996515, #e6b852);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 134, 13, 0.4);
  color: white;
}

/* Exclusive Services */
.our-products-homestay-services {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.our-products-homestay-services-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
  font-family: "Playfair Display", serif;
}

.our-products-homestay-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.our-products-homestay-service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(245, 245, 220, 0.6);
  border-radius: 15px;
  border-left: 4px solid #c8860d;
  transition: all 0.3s ease;
}

.our-products-homestay-service-item:hover {
  transform: translateX(10px);
  background: rgba(245, 245, 220, 0.8);
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.15);
}

.our-products-homestay-service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c8860d, #996515);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.our-products-homestay-service-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.our-products-homestay-service-content p {
  font-size: 16px;
  color: #222;
  line-height: 1.5;
  margin: 0;
}

/* CTA Section */
.our-products-homestay-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(
    135deg,
    rgba(245, 245, 220, 0.8),
    rgba(230, 184, 82, 0.1)
  );
  border-radius: 20px;
  border: 2px solid rgba(200, 134, 13, 0.3);
  position: relative;
  z-index: 2;
}

.our-products-homestay-cta h3 {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.our-products-homestay-cta p {
  font-size: 17px;
  color: #222;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.our-products-homestay-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.our-products-homestay-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.our-products-homestay-cta-btn-primary {
  background: linear-gradient(135deg, #c8860d, #996515);
  color: white;
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
}

.our-products-homestay-cta-btn-primary:hover {
  background: linear-gradient(135deg, #996515, #e6b852);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 134, 13, 0.4);
  color: white;
}

.our-products-homestay-cta-btn-secondary {
  background: transparent;
  color: #996515;
  border: 2px solid #c8860d;
}

.our-products-homestay-cta-btn-secondary:hover {
  background: #c8860d;
  color: white;
  transform: translateY(-3px);
}

.uncover-treasures-custom-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.uncover-treasures-custom-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 80% 20%,
      rgba(200, 134, 13, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(230, 184, 82, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Header Section */
.uncover-treasures-custom-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.uncover-treasures-custom-title {
  font-size: 48px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  letter-spacing: -1px;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(153, 101, 21, 0.1);
}

.uncover-treasures-custom-subtitle {
  font-size: 1.3rem;
  color: #8b5a3c;
  font-style: italic;
  margin-bottom: 30px;
  font-family: "Dancing Script", cursive;
  font-weight: 600;
}

.uncover-treasures-custom-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #c8860d, #e6b852, #c8860d);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 8px rgba(200, 134, 13, 0.2);
}

.uncover-treasures-custom-divider::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #c8860d;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(200, 134, 13, 0.4);
}

/* Description Section */
.uncover-treasures-custom-description {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.uncover-treasures-custom-description p {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
  text-align: justify;
  margin: 0;
  padding: 30px;
  background: rgba(245, 245, 220, 0.5);
  border-radius: 15px;
  border-left: 4px solid #c8860d;
  box-shadow: 0 5px 15px rgba(200, 134, 13, 0.1);
}

/* Experiences Grid */
.uncover-treasures-custom-experiences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.uncover-treasures-custom-experience-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(153, 101, 21, 0.15);
  transition: all 0.4s ease;
  border: 2px solid rgba(230, 184, 82, 0.2);
  position: relative;
}

.uncover-treasures-custom-experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(153, 101, 21, 0.2);
  border-color: #c8860d;
}

/* Card Image */
.uncover-treasures-custom-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5deb3, #deb887);
}

.uncover-treasures-custom-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.uncover-treasures-custom-experience-card:hover
  .uncover-treasures-custom-card-image
  img {
  transform: scale(1.1);
}

/* Card Overlay */
.uncover-treasures-custom-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(200, 134, 13, 0.8),
    rgba(153, 101, 21, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.uncover-treasures-custom-experience-card:hover
  .uncover-treasures-custom-card-overlay {
  opacity: 1;
}

.uncover-treasures-custom-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Card Content */
.uncover-treasures-custom-card-content {
  padding: 25px;
}

.uncover-treasures-custom-card-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.uncover-treasures-custom-card-content p {
  font-size: 16px;
  color: #222;
  line-height: 1.6;
  margin: 0;
}

/* CTA Buttons */
.uncover-treasures-custom-actions {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.uncover-treasures-custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
}

.uncover-treasures-custom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.uncover-treasures-custom-btn:hover::before {
  left: 100%;
}

.uncover-treasures-custom-btn-primary {
  background: linear-gradient(135deg, #c8860d, #996515);
  color: white;
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
}

.uncover-treasures-custom-btn-primary:hover {
  background: linear-gradient(135deg, #996515, #e6b852);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 134, 13, 0.4);
  color: white;
  border-color: #f4c430;
}

.uncover-treasures-custom-btn-secondary {
  background: transparent;
  color: #996515;
  border: 2px solid #c8860d;
}

.uncover-treasures-custom-btn-secondary:hover {
  background: #c8860d;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
}

.uncover-treasures-custom-btn i {
  transition: transform 0.3s ease;
}

.uncover-treasures-custom-btn:hover i {
  transform: translateX(5px);
}

/* Homestay Breadcrumb - Ambassador Theme */
.homestay-breadcrumb-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 60px;
  position: relative;
  color: white;
  margin-top: 80px;
  min-height: 300px;
}

/* Fallback background if no image provided */
.homestay-breadcrumb-section:not([style*="background"]) {
  background: linear-gradient(
    135deg,
    rgba(200, 134, 13, 0.9),
    rgba(153, 101, 21, 0.8)
  );
}

/* Container */
.homestay-breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Content Wrapper */
.homestay-breadcrumb-content {
  position: relative;
}

/* Page Title */
.homestay-breadcrumb-title {
  margin-bottom: 30px;
}

.homestay-breadcrumb-title h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #e6b852, #f4c430);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.homestay-breadcrumb-title p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-weight: 400;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb Navigation */
.homestay-breadcrumb-nav {
  margin-top: 20px;
}

.homestay-breadcrumb-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 12px 25px;
  margin: 0;
  gap: 8px;
  background: rgba(200, 134, 13, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 184, 82, 0.3);
  display: inline-flex;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.homestay-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Breadcrumb Links */
.homestay-breadcrumb-item a {
  color: #e6b852;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 5px 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.homestay-breadcrumb-item a:hover {
  color: #f4c430;
  background: rgba(230, 184, 82, 0.2);
}

/* Active Breadcrumb Item */
.homestay-breadcrumb-item.active span {
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 8px;
  background: rgba(200, 134, 13, 0.5);
  border-radius: 5px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb Separator */
.homestay-breadcrumb-separator {
  color: rgba(230, 184, 82, 0.7);
  font-size: 10px;
  margin: 0 5px;
}

.sp5 {
  padding: 40px 0 40px;
}
.made-by {
  font-weight: 700 !important;
}
.footer4-section-area .social-list-area ul li a:hover {
  background: #fff;
  color: #cda252;
}
.about-us-homestay-footer {
  position: relative;
  left: -66px;
}
.footer-contact-icon {
  font-size: 1.2rem;
  color: #fff;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

/* Icon Colors Only */
.footer-contact-icon {
  color: #fff;
}
.footer4-section-area .about-links-area ul li a:hover {
  color: #fff;
}
.footer4-section-area .copyright-pera a {
  color: #fff;
}
.footer4-section-area .copyright-pera p {
  color: #fff;
}
.footer4-section-area .footer-text-area p {
  color: #fff;
  text-align: justify;
}
.footer4-section-area .about-links-area h3 {
  color: #fff;
}
.footer4-section-area .about-links-area ul li a {
  color: #fff;
}
.footer4-section-area .get-links-area h3 {
  color: #fff;
}
.footer4-section-area .get-links-area ul li a {
  color: #fff;
}
.testimonial6-section-area .testimonial6-header span {
  color: #cda252;
}
.testimonial6-section-area .testimonial6-header h2 {
  color: #222;
}
.homestay-testimonial-quote {
  font-size: 2.5rem;
  color: #c8860d;
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* Hover Effect for Quote Icon */
.testimonial6-box:hover .homestay-testimonial-quote {
  color: #996515;
  opacity: 1;
  transform: scale(1.1);
}

/* Position the Quote Icon */
.testimonial6-auito-flex .homestay-testimonial-quote {
  align-self: flex-end;
  margin-left: auto;
}
.testimonial6-section-area
  .testimonial6-boxarea.owl-carousel.owl-loaded.owl-drag
  .owl-nav
  button {
  background: #cda252;
  color: #fff;
}
.testimonial6-section-area
  .testimonial6-boxarea.owl-carousel.owl-loaded.owl-drag
  .owl-nav
  button:hover {
  background-color: #c8860d;
}

.testimonial6-section-area .testimonial6-boxarea .owl-dots button.active {
  background: #c8860d;
}
.testimonial6-section-area .testimonial6-boxarea .owl-dots button::after {
  background: #c8860d;
}
.footer4-section-area {
  background: #cda252;
}

.homestay-relax-custom-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    #f5f5dc 0%,
    #e6b852 25%,
    #c8860d 75%,
    #996515 100%
  );
  position: relative;
  overflow: hidden;
}

/* Header Styling */
.homestay-relax-custom-header {
  margin-bottom: 30px;
  padding: 0 20px;
}

.homestay-relax-custom-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.homestay-relax-custom-subtitle {
  font-size: 17px;
  color: #fff;
  font-style: italic;
  margin-bottom: 30px;

  font-weight: 600;
}

.homestay-relax-custom-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #c8860d, #e6b852, #c8860d);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.homestay-relax-custom-divider::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #c8860d;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(200, 134, 13, 0.5);
}

/* Main Content */
.homestay-relax-custom-main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.homestay-relax-custom-image-primary {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 15px 35px rgba(153, 101, 21, 0.2);
  border: 3px solid #e6b852;
}

.homestay-relax-custom-image-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.homestay-relax-custom-image-primary:hover img {
  transform: scale(1.1);
}

.homestay-relax-custom-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(153, 101, 21, 0.9));
  color: #f5f5dc;
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.homestay-relax-custom-image-primary:hover
  .homestay-relax-custom-image-overlay {
  transform: translateY(0);
}

/* Content Box */
.homestay-relax-custom-content-box {
  background: #fefefe;
  padding: 40px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 15px 35px rgba(153, 101, 21, 0.15);
  flex-grow: 1;
  border: 3px solid #e6b852;
  border-top: none;
}

.homestay-relax-custom-content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #c8860d, #e6b852, #f4c242, #c8860d);
  border-radius: 20px 20px 0 0;
}

.homestay-relax-custom-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 30px;
  text-align: justify;
}

/* CTA Button */
.homestay-relax-custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #c8860d, #996515);
  color: #fefefe;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
}

.homestay-relax-custom-btn:hover {
  background: linear-gradient(135deg, #996515, #e6b852);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 134, 13, 0.4);
  color: #fefefe;
  border-color: #f4c242;
}

.homestay-relax-custom-btn i {
  transition: transform 0.3s ease;
}

.homestay-relax-custom-btn:hover i {
  transform: translateX(5px);
}

/* Secondary Image */
.homestay-relax-custom-image-secondary {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(153, 101, 21, 0.15);
  border: 2px solid #e6b852;
}

.homestay-relax-custom-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homestay-relax-custom-image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #c8860d, #996515);
  color: #fefefe;
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(200, 134, 13, 0.4);
  border: 1px solid #e6b852;
}

/* Features Grid */
.homestay-relax-custom-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex-grow: 1;
}

.homestay-relax-custom-feature-card {
  background: #fefefe;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(153, 101, 21, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #e8e6e3;
}

.homestay-relax-custom-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c8860d, #e6b852, #c8860d);
}

.homestay-relax-custom-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(153, 101, 21, 0.2);
  border-color: #c8860d;
}

.homestay-relax-custom-feature-image {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.homestay-relax-custom-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.homestay-relax-custom-feature-card:hover
  .homestay-relax-custom-feature-image
  img {
  transform: scale(1.1);
}

.homestay-relax-custom-feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c8860d, #996515);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefefe;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #e6b852;
}

.homestay-relax-custom-feature-info {
  padding: 20px;
}

.homestay-relax-custom-feature-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.homestay-relax-custom-feature-info p {
  font-size: 0.9rem;
  color: #222;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Gallery */
.homestay-relax-custom-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 20px;
}

.homestay-relax-custom-gallery-item {
  position: relative;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(153, 101, 21, 0.15);
  border: 2px solid #e6b852;
}

.homestay-relax-custom-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.homestay-relax-custom-gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(200, 134, 13, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.homestay-relax-custom-gallery-hover i {
  font-size: 2rem;
  color: #fefefe;
}

.homestay-relax-custom-gallery-item:hover .homestay-relax-custom-gallery-hover {
  opacity: 1;
}

.homestay-relax-custom-gallery-item:hover img {
  transform: scale(1.1);
}

/* Decorative Elements */
.homestay-relax-custom-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.homestay-relax-custom-leaf {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(230, 184, 82, 0.3);
  border-radius: 0 100% 0 100%;
  animation: float 6s ease-in-out infinite;
}

.homestay-relax-custom-leaf-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.homestay-relax-custom-leaf-2 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
  transform: rotate(180deg);
}

.why-icons-homestay {
  font-size: 2rem;
  color: #cda252;
  transition: all 0.3s ease;
}
.service2-boxarea:hover .why-icons-homestay {
  transform: scale(1.1);
  color: #fff;
}
.services1-scetion-area .service2-boxarea p {
  text-align: justify;
}
.services1-scetion-area .service2-boxarea:hover {
  background: #cda252;
}
.services1-scetion-area .service2-boxarea:hover .services-icon {
  background: #fff;
}
.service2-boxarea:hover .why-icons-homestay {
  color: #cda252;
}
.services1-scetion-area .service2-boxarea:hover .service-check-icon span {
  background: #cda252;
}
.services1-scetion-area .services1-header span {
  color: #cda252;
}
.services1-scetion-area .services1-header h2 {
  color: #222;
  font-weight: 700;
}
.accommodations-homestay-load-more {
  margin-bottom: -71px;
}
.sp1 {
  padding: 50px 0 20px;
}
.casebtn1 {
  background: linear-gradient(135deg, #c8860d, #996515);
}
.casebtn1:hover {
  transform: translateY(-5px);
  color: #ffffff !important;
}
.casebtn1::after {
  background: #c8860d !important;
}
.header-area .main-menu-ex.homepage4 ul li:hover > a {
  color: #ac7312;
}
.header-area .main-menu-ex.homepage4 ul li {
  padding: 22px;
}
/* ==================== ACCOMMODATIONS HOMESTAY SECTION ==================== */
.accommodations-homestay-section {
  padding: 0 0 43px;
  margin-top: -41px;
  background: #ffffff;
  position: relative;
}

/* Section Header */
.accommodations-homestay-header {
  margin-bottom: 80px;
}

.accommodations-homestay-subtitle {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #d4af37 0%,
    #f4c430 50%,
    #deb887 50%,
    #cd853f 50%
  );

  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.accommodations-homestay-title {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin: 0 0 25px 0;
  line-height: 1.2;
}

.accommodations-homestay-description {
  font-size: 18px;
  color: #222;
  line-height: 1.7;
  margin: 0;
}

/* Rooms Container */
.accommodations-homestay-rooms-container {
  margin-bottom: 100px;
}

/* Room Cards */
.accommodations-homestay-room-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid #f4c430;
}

.accommodations-homestay-room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
}

.accommodations-homestay-room-card.presidential {
  border: 2px solid #f4c430;
  position: relative;
}

.accommodations-homestay-room-card.presidential::before {
  content: "PREMIUM";
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d4af37, #f4c430);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
}

.accommodations-homestay-room-card.honeymoon {
  border: 2px solid #f4c430;
  position: relative;
}

.accommodations-homestay-room-card.honeymoon::before {
  content: "ROMANTIC";
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d4af37, #f4c430);

  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
}

.accommodations-homestay-room-card.suite {
  border: 2px solid #f4c430;
}

.accommodations-homestay-room-card.luxury {
  border: 2px solid #f4c430;
}

/* Room Image */
.accommodations-homestay-room-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.accommodations-homestay-room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.accommodations-homestay-room-card:hover
  .accommodations-homestay-room-image
  img {
  transform: scale(1.1);
}

.accommodations-homestay-room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(139, 69, 19, 0.7),
    rgba(218, 165, 32, 0.5)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accommodations-homestay-room-card:hover .accommodations-homestay-room-overlay {
  opacity: 1;
}

.accommodations-homestay-room-price {
  text-align: center;
  color: white;
}

.accommodations-homestay-room-price .price-from {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.accommodations-homestay-room-price .price-amount {
  display: block;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 5px;
}

.accommodations-homestay-room-price .price-per {
  font-size: 14px;
  opacity: 0.9;
}

/* Room Content */
.accommodations-homestay-room-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.accommodations-homestay-room-info {
  margin-bottom: 20px;
  flex: 1;
}

.accommodations-homestay-room-name {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.accommodations-homestay-room-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #cda252;
  flex-wrap: wrap;
}

.accommodations-homestay-room-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.accommodations-homestay-room-specs i {
  color: #daa520;
}

.accommodations-homestay-room-desc {
  font-size: 15px;
  color: #222;
  text-align: justify;
  line-height: 1.6;
  margin: 0;
}

/* Room Features */
.accommodations-homestay-room-features {
  margin-bottom: 25px;
}

.accommodations-homestay-room-features h4 {
  font-size: 15px;
  font-weight: 600;
  color: #2f1b14;
  margin: 0 0 12px 0;
}

.accommodations-homestay-room-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.accommodations-homestay-room-features li {
  font-size: 13px;
  color: #5d4037;
  display: flex;
  align-items: center;
  gap: 6px;
}

.accommodations-homestay-room-features li i {
  color: #daa520;
  font-size: 11px;
}

/* Room Actions */
.accommodations-homestay-room-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.accommodations-homestay-btn-view,
.accommodations-homestay-btn-book {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.accommodations-homestay-btn-view {
  background: rgb(244, 236, 221);
  color: #bf8f40;
  border: 1px solid rgb(244, 236, 221);
}

.accommodations-homestay-btn-view:hover {
  background: rgb(244, 236, 223);
  transform: translateY(-2px);
  color: #bf8f40;
}

.accommodations-homestay-btn-book {
  background: linear-gradient(135deg, #c8860d, #996515);

  color: white;
}

.accommodations-homestay-btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
  color: white;
}

.accommodations-homestay-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #c8860d, #996515);

  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.accommodations-homestay-load-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.accommodations-homestay-load-btn:hover::before {
  left: 100%;
}

.accommodations-homestay-load-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}

.accommodations-homestay-load-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.accommodations-homestay-load-btn .loading-text {
  display: none;
  align-items: center;
  gap: 8px;
}

.accommodations-homestay-load-btn .loading-text .fa-spinner {
  animation: spin 1s linear infinite;
}

.rooms-counter {
  font-size: 16px;
  color: #5d4037;
  margin: 0;
  font-weight: 500;
}

.rooms-counter span {
  font-weight: 700;
  color: #8b4513;
}

/* Animation for new cards */
.room-card-wrapper[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.room-card-wrapper[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Amenities Section */
.accommodations-homestay-amenities {
  margin-bottom: 80px;
  padding: 60px 0;
  background: rgba(139, 69, 19, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(139, 69, 19, 0.05);
}

.accommodations-homestay-amenities-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin: 0 0 50px 0;
}

.accommodations-homestay-amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(139, 69, 19, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid rgba(139, 69, 19, 0.05);
}

.accommodations-homestay-amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.12);
}

.accommodations-homestay-amenity-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37 100%, #f4c430 50%);

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.accommodations-homestay-amenity-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2f1b14;
  margin: 0 0 8px 0;
}

.accommodations-homestay-amenity-content p {
  font-size: 15px;
  color: #5d4037;
  margin: 0;
  line-height: 1.5;
}

/* CTA Section */
.accommodations-homestay-cta {
  margin-top: -20px;
}

.accommodations-homestay-cta-content {
  padding: 30px 40px;
  background: linear-gradient(135deg, #cd853f);

  border-radius: 25px;
  color: white;
}

.accommodations-homestay-cta h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.accommodations-homestay-cta p {
  font-size: 17px;
  text-align: justify;
  margin: 0 0 30px 0;
  opacity: 0.9;
}

.accommodations-homestay-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: white;
  color: #cd853f;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.accommodations-homestay-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  color: #cd853f;
  text-decoration: none;
}

/* Modal Styles */
.accommodations-homestay-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.accommodations-homestay-modal-content {
  background: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

.accommodations-homestay-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  color: #8b4513;
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.accommodations-homestay-modal-close:hover {
  background: #f8f9fa;
  transform: scale(1.1);
}

.accommodations-homestay-modal-body {
  padding: 40px;
}

/* About Us Homestay Section - Ambassador Logo Theme */
.about-us-homestay-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Container */
.about-us-homestay-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

/* Animated Taglines - Golden Theme */
.about-us-homestay-taglines {
  text-align: center;
  margin-bottom: 80px;
  margin-top: -61px;
}

.about-us-homestay-tagline {
  font-size: 18px;
  color: #c8860d;
  font-weight: 500;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px);
  animation: taglineSlideUp 1s ease-out forwards;
  text-shadow: 1px 1px 2px rgba(200, 134, 13, 0.2);
  font-style: italic;
}

/* Main Content Grid */
.about-us-homestay-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Side - Text Content */
.about-us-homestay-text {
  max-width: 600px;
}

/* Header - Ambassador Theme */
.about-us-homestay-header {
  margin-bottom: 40px;
}

.about-us-homestay-title {
  font-size: 48px;
  font-weight: 800;
  color: #996515;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  letter-spacing: -1px;
  position: relative;
}

.about-us-homestay-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #c8860d, #e6b852);
  border-radius: 2px;
}

.about-us-homestay-subtitle {
  font-size: 20px;
  color: #8b5a3c;
  font-weight: 600;
  margin: 0;
  font-family: "Dancing Script", cursive;
  font-style: italic;
}

/* Description */
.about-us-homestay-description {
  margin-bottom: 40px;
}

.about-us-homestay-description p {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
  margin: 0;
  text-align: justify;
}

/* Action Button - Ambassador Theme */
.about-us-homestay-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #c8860d, #996515);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
  margin-bottom: 50px;
}

.about-us-homestay-btn:hover {
  background: linear-gradient(135deg, #996515, #e6b852);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 134, 13, 0.4);
  color: white;
  border-color: #f4c430;
}

.about-us-homestay-btn i {
  transition: transform 0.3s ease;
}

.about-us-homestay-btn:hover i {
  transform: translateX(5px);
}

/* Features Grid - Logo Inspired */
.about-us-homestay-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.about-us-homestay-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(245, 245, 220, 0.5);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 134, 13, 0.2);
  position: relative;
  overflow: hidden;
}

.about-us-homestay-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #c8860d, #e6b852);
}

.about-us-homestay-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(200, 134, 13, 0.15);
  background: rgba(245, 245, 220, 0.8);
  border-color: #c8860d;
}

.about-us-homestay-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c8860d, #996515);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(200, 134, 13, 0.3);
}

.about-us-homestay-feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #996515;
  margin: 0 0 8px 0;
}

.about-us-homestay-feature-content p {
  font-size: 14px;
  color: #222;
  margin: 0;
  line-height: 1.5;
}

/* Right Side - Visual Elements */
.about-us-homestay-visuals {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Image Gallery - Ambassador Theme */
.about-us-homestay-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 400px;
}

.about-us-homestay-gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(200, 134, 13, 0.15);
  border: 3px solid #e6b852;
  transition: all 0.3s ease;
}

.about-us-homestay-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(200, 134, 13, 0.25);
  border-color: #c8860d;
}

.about-us-homestay-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-us-homestay-gallery-item:hover img {
  transform: scale(1.1);
}

.about-us-homestay-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(200, 134, 13, 0.8),
    rgba(153, 101, 21, 0.6)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-us-homestay-gallery-item:hover .about-us-homestay-image-overlay {
  opacity: 1;
}

/* Gallery Grid Layout */
.gallery-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.gallery-item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.gallery-item-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.gallery-item-4 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* Stats Section - Logo Theme */
.about-us-homestay-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-us-homestay-stat-card {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(
    135deg,
    rgba(245, 245, 220, 0.8),
    rgba(230, 184, 82, 0.1)
  );
  border-radius: 15px;
  border: 2px solid rgba(200, 134, 13, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-us-homestay-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c8860d, #e6b852, #c8860d);
}

.about-us-homestay-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(200, 134, 13, 0.2);
  border-color: #c8860d;
  background: linear-gradient(
    135deg,
    rgba(230, 184, 82, 0.2),
    rgba(245, 245, 220, 0.9)
  );
}

.about-us-homestay-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #c8860d;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.about-us-homestay-stat-label {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.about-us-homestay-stat-desc {
  font-size: 12px;
  color: #222;
  margin: 0;
  line-height: 1.4;
}

/* Decorative Elements - Ambassador Theme */
.about-us-homestay-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.about-us-homestay-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
  animation: decorationFloat 8s ease-in-out infinite;
}

.about-us-homestay-pattern-1 {
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, #c8860d 0%, transparent 70%);
  animation-delay: 0s;
}

.about-us-homestay-pattern-2 {
  bottom: 15%;
  left: 5%;
  background: radial-gradient(circle, #e6b852 0%, transparent 70%);
  animation-delay: 4s;
  width: 150px;
  height: 150px;
}

/* Section Background Pattern */
.about-us-homestay-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 80% 20%,
      rgba(200, 134, 13, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(230, 184, 82, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.site-logo {
  height: 109px;
}
.header-elements {
  padding: 0 !important;
}
.header-area {
  background: #fff;
}
.book-now-btn {
  margin-top: -33px;
}
/* Homestay Hero Section - Ambassador Logo Theme */
.homestay-hero-section {
  position: relative;
  height: 100vh;
  margin-top: 60px;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}

.homestay-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/gallery/37.jpeg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -3;
}

.homestay-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: -2;
}

/* Golden Particles - Logo Inspired */
.homestay-hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.homestay-hero-particles::before,
.homestay-hero-particles::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(230, 184, 82, 0.4);
  border-radius: 50%;
  animation: ambassadorFloat 6s ease-in-out infinite;
}

.homestay-hero-particles::before {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.homestay-hero-particles::after {
  bottom: 20%;
  left: 8%;
  width: 100px;
  height: 100px;
  animation-delay: 3s;
}

/* Container */
.homestay-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  height: 100%;
}

/* Content Section */
.homestay-hero-content {
  max-width: 700px;
  animation: heroSlideUp 1s ease-out;
}

/* Welcome Text */
.homestay-hero-welcome {
  margin-bottom: 20px;
  animation: heroFadeIn 1.2s ease-out 0.3s both;
}

.homestay-hero-welcome-text {
  font-size: 18px;
  font-weight: 400;
  color: #e6b852;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
}

.homestay-hero-welcome-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #e6b852, transparent);
}

/* Title - Ambassador Theme */
.homestay-hero-title-wrapper {
  margin-bottom: 25px;
  animation: heroFadeIn 1.4s ease-out 0.5s both;
}

.homestay-hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  font-family: "Playfair Display", serif;
}

.homestay-hero-title-main {
  display: block;
  background: linear-gradient(135deg, #e6b852, #f4c430);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.homestay-hero-title-sub {
  display: block;
  color: white;
  font-weight: 300;
  font-size: 48px;
  margin-top: 10px;
  font-style: italic;
}

/* Tagline */
.homestay-hero-tagline {
  margin-bottom: 25px;
  animation: heroFadeIn 1.6s ease-out 0.7s both;
}

.homestay-hero-tagline p {
  font-size: 24px;
  font-weight: 500;
  color: #f5deb3;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Description */
.homestay-hero-description {
  margin-bottom: 40px;
  animation: heroFadeIn 1.8s ease-out 0.9s both;
}

.homestay-hero-description p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 600px;
}

/* Buttons - Ambassador Theme */
.homestay-hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  animation: heroFadeIn 2s ease-out 1.1s both;
}

.homestay-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.homestay-hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.homestay-hero-btn:hover::before {
  left: 100%;
}

.homestay-hero-btn-primary {
  background: linear-gradient(135deg, #e6b852, #c8860d);
  color: white;
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
}

.homestay-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(200, 134, 13, 0.4);
  color: white;
}

.homestay-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(230, 184, 82, 0.5);
  backdrop-filter: blur(10px);
}

.homestay-hero-btn-secondary:hover {
  background: rgba(230, 184, 82, 0.2);
  border-color: #e6b852;
  transform: translateY(-3px);
  color: white;
}

/* Stats - Ambassador Theme */
.homestay-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  animation: heroFadeIn 2.2s ease-out 1.3s both;
}

.homestay-hero-stat-item {
  text-align: center;
  padding: 20px 10px;
  background: rgba(230, 184, 82, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 184, 82, 0.3);
  transition: transform 0.3s ease;
}

.homestay-hero-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(230, 184, 82, 0.25);
}

.homestay-hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #e6b852;
  margin-bottom: 8px;
}

.homestay-hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Features Section - Logo Inspired */
.homestay-hero-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: heroSlideRight 1.5s ease-out 0.8s both;
}

.homestay-hero-feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(230, 184, 82, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(230, 184, 82, 0.3);
  transition: all 0.4s ease;
}

.homestay-hero-feature-card:hover {
  transform: translateX(-10px);
  background: rgba(230, 184, 82, 0.25);
}

.homestay-hero-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6b852, #c8860d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.homestay-hero-feature-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0 0 8px 0;
}

.homestay-hero-feature-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
}

.mobile-logo {
  height: 43px;
}
.mobile-header {
  padding: 8px 0;
}
.mobile-sidebar.sidebar4 {
  background: #feffff;
}
.logos {
  height: 93px;
}
.mobile-sidebar.sidebar4 .allmobilesection .welcome-btn4 {
  background: linear-gradient(135deg, #c8860d, #996515);
}
.mobile-sidebar.sidebar4 .allmobilesection .social-links-mobile-menu3 ul li a {
  color: #c8860d;
  border: 1px solid #c8860d;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes taglineSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes decorationFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.2;
  }
}
@keyframes ambassadorFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 1;
  }
}
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .homestay-hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0 30px;
  }

  .homestay-hero-features {
    display: none;
  }

  .homestay-hero-title {
    font-size: 56px;
  }

  .homestay-hero-title {
    font-size: 56px;
  }
  .about-us-homestay-content {
    gap: 60px;
  }

  .about-us-homestay-title {
    font-size: 40px;
  }

  .accommodations-homestay-section {
    padding: 80px 0;
  }

  .accommodations-homestay-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .accommodations-homestay-room-features ul {
    grid-template-columns: 1fr;
  }

  .accommodations-homestay-amenities-title {
    font-size: 28px;
  }

  .about-us-homestay-container {
    padding: 0 30px;
  }

  .about-us-homestay-content {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .about-us-homestay-features {
    grid-template-columns: 1fr;
  }

  .about-us-homestay-gallery {
    height: 300px;
  }

  .about-us-homestay-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .homestay-relax-custom-features-grid {
    grid-template-columns: 1fr;
  }

  .homestay-relax-custom-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-products-homestay-tours {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-products-homestay-services-grid {
    grid-template-columns: 1fr;
  }

  .uncover-treasures-custom-experiences {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .uncover-treasures-custom-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .products-details-custom-hero {
    padding: 40px 25px;
  }

  .products-details-custom-title {
    font-size: 2.2rem;
  }

  .products-details-custom-summary {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .products-details-custom-tour-stop {
    flex-direction: column;
    gap: 15px;
  }

  .products-details-custom-tour-header {
    flex-direction: column;
    gap: 10px;
  }

  .products-details-custom-gallery {
    grid-template-columns: 1fr;
  }

  .products-details-custom-sidebar {
    position: static;
    margin-top: 40px;
  }

  .our-products-homestay-section {
    padding: 80px 0;
  }

  .our-products-homestay-tours {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .our-products-homestay-title {
    font-size: 2.5rem;
  }

  .our-products-homestay-card-content {
    padding: 25px 20px;
  }

  .our-products-homestay-cta {
    padding: 40px 25px;
  }

  .our-products-homestay-cta h3 {
    font-size: 2rem;
  }
  .homestay-relax-custom-title {
    font-size: 2.5rem;
  }

  .homestay-relax-custom-section {
    padding: 80px 0;
  }

  .about-us-homestay-section {
    padding: 80px 0;
  }

  .about-us-homestay-container {
    padding: 0 20px;
  }

  .about-us-homestay-title {
    font-size: 32px;
  }

  .about-us-homestay-subtitle {
    font-size: 20px;
  }

  .about-us-homestay-description p {
    font-size: 16px;
  }

  .about-us-homestay-stats {
    grid-template-columns: 1fr 1fr;
  }

  .homestay-hero-container {
    padding: 0 20px;
  }

  .homestay-hero-title {
    font-size: 42px;
  }

  .homestay-hero-title-sub {
    font-size: 32px;
  }

  .homestay-hero-tagline p {
    font-size: 18px;
  }

  .homestay-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .homestay-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .accommodations-homestay-section {
    padding: 60px 0;
  }

  .accommodations-homestay-title {
    font-size: 32px;
  }

  .accommodations-homestay-description {
    font-size: 16px;
  }

  .accommodations-homestay-room-image {
    height: 200px;
  }

  .accommodations-homestay-load-btn {
    padding: 15px 30px;
    font-size: 14px;
  }

  .rooms-counter {
    font-size: 14px;
  }

  .accommodations-homestay-amenities {
    padding: 40px 0;
  }

  .accommodations-homestay-cta-content {
    padding: 40px 20px;
  }

  .accommodations-homestay-cta h3 {
    font-size: 24px;
  }

  .accommodations-homestay-cta p {
    font-size: 16px;
  }

  .accommodations-homestay-modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .accommodations-homestay-modal-body {
    padding: 20px;
  }

  .uncover-treasures-custom-section {
    padding: 80px 0;
  }

  .uncover-treasures-custom-experiences {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .uncover-treasures-custom-title {
    font-size: 2.2rem;
  }

  .uncover-treasures-custom-description p {
    padding: 25px 20px;
    font-size: 1rem;
  }

  .uncover-treasures-custom-card-content {
    padding: 20px;
  }

  .room-hero-title {
    font-size: 2.2rem;
  }

  .room-hero-quick-info {
    flex-direction: column;
    gap: 15px;
  }

  .room-amenities-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .room-amenities-items {
    grid-template-columns: 1fr;
  }

  .room-checkin-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .room-booking-card {
    padding: 30px 20px;
  }

  .gallery-homestay-header h2 {
    font-size: 2.2rem;
  }

  .gallery-homestay-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    gap: 15px;
  }
  .gallery-homestay-section {
    padding: 30px 0 0px;
  }
  .gallery-homestay-lightbox-container {
    max-width: 95%;
  }

  .gallery-homestay-lightbox-prev,
  .gallery-homestay-lightbox-next {
    width: 40px;
    height: 40px;
  }

  .gallery-homestay-lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .contect4-section-area .contact4-header .contact-calls-area {
    padding: 16px 32px;
  }
  .contect4-section-area
    .contact4-header
    .contact-calls-area
    .contact-call-content
    a {
    font-size: 18px;
  }
  .gallery-homestay-grid {
    grid-template-columns: 1fr;
  }
  .gallery-homestay-header p {
    font-size: 16px;
    text-align: justify;
  }
  .gallery-homestay-header h2 {
    font-size: 32px;
  }

  .gallery-homestay-header {
    text-align: center;
    margin-bottom: 33px;
  }
  .room-hero-section {
    padding: 26px 0 1px;
  }
  .room-hero-badge {
    top: 7px;
    right: 5px;
    padding: 3px 10px;
    font-size: 12px;
  }
  .room-hero-subtitle,
  .room-amenities-header p,
  .room-booking-header p {
    font-size: 16px;
  }
  .room-hero-description p {
    font-size: 16px;
    margin-top: -14px;
  }
  .room-amenities-grid {
    margin-top: -30px;
  }
  .room-policies-section {
    padding: 15px 0;
  }
  .room-booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  .room-booking-primary-btn,
  .room-booking-secondary-btn,
  .room-booking-whatsapp-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
  .room-booking-card {
    padding: 10px 20px;
  }
  .room-price-main {
    font-size: 28px;
  }
  .room-hero-content {
    padding: 19px;
    padding-top: 41px;
  }
  .room-hero-title,
  .room-amenities-header h2,
  .room-booking-header h3 {
    font-size: 32px;
  }
  .room-checkin-info {
    grid-template-columns: 1fr;
  }

  .room-price-features {
    flex-direction: column;
    gap: 10px;
  }

  .products-details-custom-badge {
    top: 3px;
    right: 7px;

    padding: 6px 19px;

    font-size: 12px;
  }
  .products-details-custom-title {
    font-size: 32px;
  }
  .products-details-custom-subtitle {
    font-size: 16px;
    text-align: justify;
  }
  .products-details-custom-summary-item {
    text-align: justify;
  }
  .products-details-custom-notice p,
  .products-details-custom-activity p,
  .products-details-custom-what-to-do p,
  .products-details-custom-recommendation p {
    text-align: justify;
    font-size: 16px;
  }
  .products-details-custom-tour-content {
    margin-bottom: -61px;
  }
  .products-details-custom-info-card {
    margin-top: -68px;
  }
  .products-details-custom-price {
    margin-bottom: 9px;
    font-size: 25px;
  }
  .products-details-custom-book-btn,
  .products-details-custom-call-btn,
  .products-details-custom-whatsapp-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .products-details-custom-section-title {
    font-size: 28px;
  }
  .products-details-custom-content-section {
    margin-top: -32px;
  }
  .products-details-custom-section {
    padding: 30px 0 30px;
  }
  .uncover-treasures-custom-title {
    font-size: 32px;
  }
  .uncover-treasures-custom-actions {
    margin-top: -35px;
    position: relative;
    z-index: 2;
    margin-bottom: -11px;
  }
  .uncover-treasures-custom-section {
    padding: 30px 0;
  }
  .uncover-treasures-custom-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  .uncover-treasures-custom-description p {
    font-size: 16px;
  }
  .uncover-treasures-custom-description {
    margin-bottom: 45px;
  }

  .uncover-treasures-custom-subtitle {
    font-size: 16px;
  }

  .uncover-treasures-custom-btn {
    display: block;
    margin: 10px auto;
    text-align: center;
    max-width: 250px;
  }

  .testimonial6-section-area .testimonial6-box p {
    font-size: 16px;
    color: #222;
    text-align: justify;
  }
  .testimonial6-section-area
    .testimonial6-box
    .testimonial6-auito-flex
    .tesimonial6-man-info
    .testimonial6-text
    a {
    font-size: 18px;
    color: #222;
  }
  .testimonial6-section-area
    .testimonial6-boxarea.owl-carousel.owl-loaded.owl-drag
    .owl-nav
    button {
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 40px;
  }
  .testimonial6-section-area .testimonial6-header {
    margin-bottom: 20px;
  }
  .about-us-homestay-footer {
    position: relative;
    left: 0;
  }
  .footer4-section-area .footer-all-section-area {
    padding: 0px 0 14px;
  }
  .sp1 {
    padding: 30px 0 20px;
  }
  .homestay-relax-custom-image-secondary {
    margin-top: 15px;
  }
  .homestay-relax-custom-features-grid {
    margin-top: 15px;
  }
  .homestay-relax-custom-content-box {
    padding: 19px;
  }
  .homestay-relax-custom-image-badge {
    padding: 6px 14px;
    font-size: 14px;
  }
  .homestay-relax-custom-btn {
    padding: 10px 28px;
    font-size: 14px;
  }
  .homestay-relax-custom-section {
    padding: 36px 0;
  }
  .homestay-relax-custom-description {
    font-size: 16px;
  }
  .accommodations-homestay-amenities-title,
  .homestay-relax-custom-title {
    font-size: 32px;
  }
  .accommodations-homestay-cta {
    margin-top: -56px;
  }
  .accommodations-homestay-cta-btn {
    padding: 14px 30px;
    font-size: 14px;
  }
  .accommodations-homestay-cta-content {
    padding: 27px 25px;
  }
  .accommodations-homestay-amenities {
    padding: 20px 0;
  }
  .homestay-hero-btn {
    padding: 10px 19px;

    font-size: 14px;
  }
  .homestay-hero-description p {
    font-size: 16px;
    text-align: justify;
  }
  .accommodations-homestay-room-image {
    height: 180px;
  }

  .accommodations-homestay-room-name {
    font-size: 18px;
  }

  .accommodations-homestay-room-price .price-amount {
    font-size: 24px;
  }

  .accommodations-homestay-modal-content {
    margin: 5% auto;
    height: 90vh;
  }

  .homestay-hero-title {
    font-size: 32px;
  }

  .homestay-hero-title-sub {
    font-size: 24px;
  }

  .homestay-hero-stat-item {
    padding: 15px;
  }

  .about-us-homestay-taglines {
    margin-bottom: 30px;
    margin-top: -61px;
  }

  .about-us-homestay-tagline {
    font-size: 18px;
    text-align: justify;
  }
  .about-us-homestay-description p {
    font-size: 16px;
    margin-top: -23px;
  }
  .about-us-homestay-title {
    font-size: 32px;
  }
  .about-us-homestay-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  .about-us-homestay-action {
    margin-top: -22px;
    margin-bottom: -20px;
  }
  .accommodations-homestay-section {
    padding: 0;
    margin-top: -42px;
  }
  .accommodations-homestay-description {
    text-align: justify;
  }
  .about-us-homestay-subtitle {
    font-size: 18px;
  }

  .about-us-homestay-gallery {
    height: 250px;
  }

  .about-us-homestay-stats {
    grid-template-columns: 1fr;
  }

  .homestay-hero-title {
    font-size: 32px;
  }

  .homestay-hero-title-sub {
    font-size: 24px;
  }

  .homestay-hero-tagline p {
    font-size: 16px;
  }
  .homestay-hero-buttons {
    flex-direction: row;
    align-items: center;
  }

  .our-products-homestay-title,
  .our-products-homestay-services-title {
    font-size: 32px;
  }
  .our-products-homestay-header {
    margin-bottom: 34px;
  }
  .our-products-homestay-subtitle {
    font-size: 16px;
  }
  .our-products-homestay-service-content p {
    text-align: justify;
  }
  .our-products-homestay-cta h3 {
    font-size: 25px;
  }
  .our-products-homestay-services {
    margin-top: -34px;
  }
  .our-products-homestay-cta {
    padding: 25px 25px;
    margin-top: -33px;
  }
  .our-products-homestay-description p,
  .our-products-homestay-cta p {
    font-size: 16px;
  }
  .our-products-homestay-book-btn {
    font-size: 14px;
    padding: 7px 20px;
  }
  .our-products-homestay-divider {
    margin: -14px auto 27px;
  }
  .our-products-homestay-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .our-products-homestay-section {
    padding: 34px 0;
  }
  .our-products-homestay-cta-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px 35px;

    justify-content: center;
  }

  .homestay-breadcrumb-section {
    padding: 31px 0 40px;
    margin-top: 66px;
    min-height: 220px;
  }

  .homestay-breadcrumb-container {
    padding: 0 20px;
  }

  .homestay-breadcrumb-content {
    position: relative;
  }

  .homestay-breadcrumb-title {
    margin-bottom: 25px;
  }

  .homestay-breadcrumb-title h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .homestay-breadcrumb-title p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.4;
  }

  .homestay-breadcrumb-nav {
    margin-top: 15px;
  }

  .homestay-breadcrumb-list {
    padding: 8px 15px;
    gap: 4px;
    border-radius: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 320px;
    margin: 0 auto;
  }

  .homestay-breadcrumb-item {
    gap: 4px;
  }

  .homestay-breadcrumb-item a,
  .homestay-breadcrumb-item.active span {
    font-size: 12px;
    padding: 3px 5px;
  }

  .homestay-breadcrumb-separator {
    font-size: 8px;
    margin: 0 2px;
  }
}



.whatsaap {
    position: fixed;
    bottom: 30px;
    right: 25px;
    text-align: right;
    z-index: 10;
}

.whatsaap-img {
    width: 28% !important;
}









