  /* style.css */
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
 
  overflow-x: hidden;
  scroll-snap-type: y proximity;
  scroll-padding-top: 80px; /* Adjust if you have fixed header */
}

a[href^="#"] {
  transition: all 1s ease;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'Crimson Pro', serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;  
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

@media (max-width: 768px) {
  /* 5. Services Grid Fix - HORIZONTAL SCROLL */
  .service-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 15px !important;
    padding: 20px 15px !important;
    padding-bottom: 30px !important;
    justify-content: flex-start !important;
  }

  .service-card {
    flex: 0 0 85% !important;
    min-width: 280px !important;
    max-width: 320px !important;
    scroll-snap-align: start !important;
    margin: 0 !important;
    padding: 20px !important;
  }

  /* Hide scrollbar but keep functionality */
  .service-container::-webkit-scrollbar {
    display: none;
  }
  
  .service-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

/*advertisement*/
.ads-banner {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-top: 5px;
}

.ads-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ads-slide.active {
  opacity: 1;
  z-index: 1;
}

.ads-overlay {
  padding: 1rem 2rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  max-width: 90%;
}

[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

/*services*/
.services {
  padding: 2rem 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  letter-spacing: 5px;
  font-weight: bold;
  color: #333;
}

.section-divider {
  border: none;
  height: 2px;
  background-color: #3f2800;
  opacity: 30%;
  margin: 0 auto 10px;
  width: 40%;
  border-radius: 5px;
}

.section-subtext {
  font-size: 1rem;
  color: #5e5e5e;
}

.service-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: visible;
}

.service-card {
  background: #ffffff;
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  padding: 1.3rem;
  border-radius: 5px;
  box-shadow: 0 8px 16px rgb(0 0 0 / 25%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

/* Desktop - Force Horizontal Layout */
@media (min-width: 1025px) {
  .service-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 2rem !important;
    overflow-x: visible !important;
    max-width: 1300px;
    margin: 0 auto;
  }

  .service-card {
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    flex: 0 0 280px !important;
  }
}

/* Tablet - 2x2 Grid */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding: 30px 20px !important;
    max-width: 700px;
    margin: 0 auto;
    overflow-x: visible !important;
  }

  .service-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
  }
}

/* Mobile - Horizontal Scroll */
@media (max-width: 768px) {
  .service-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 15px !important;
    padding: 20px 15px !important;
    padding-bottom: 30px !important;
    justify-content: flex-start !important;
  }

  .service-card {
    flex: 0 0 85% !important;
    min-width: 280px !important;
    max-width: 320px !important;
    scroll-snap-align: start !important;
    margin: 0 !important;
    padding: 20px !important;
  }

  /* Hide scrollbar but keep functionality */
  .service-container::-webkit-scrollbar {
    display: none;
  }
  
  .service-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

/* Desktop - Force Horizontal Layout */
@media (min-width: 1200px) {
  .service-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 2rem !important;
    overflow-x: visible !important;
    max-width: 1300px;
    margin: 0 auto;
  }

  .service-card {
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    flex: 0 0 280px !important;
  }
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.video-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1.2rem;
}

.service-card video {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  background-color: #000;
  display: block;
}

.fullscreen-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.fullscreen-btn i {
  font-size: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2F1200;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  font-size: 13px;
  color: #333;
  text-align: justify;
  line-height: 1.5;
}

.view-btn.section-btn {
  font-family: 'Montserrat', sans-serif;
  margin-top: 1rem;
  padding: 12px 40px;
  background-color: #2F1200;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-btn.section-btn:hover {
  background: #130700;
  color: #fff;
  transform: scale(1.05);
}


/* Section Header */
.section-header {
  margin-bottom: 20px;
}

/*furniture package*/
.furniture-offer {
  position: relative;
  height: 600px;
  /* background-image removed - will be set inline via PHP */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.furniture-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for text visibility */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.furniture-content {
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 800px;
}

.furniture-content h2 {
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 5px;
}

.furniture-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  margin-bottom: 2rem;
}

.offer-btn {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  padding: 8px 40px;
  background-color: #ffffff;
  color: #2F1200;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.offer-btn:hover {
  transform: scale(1.05);
  background-color: #2F1200;
  color: #fff;
}

/* ===== FEATURED NEWS SLIDER SECTION ===== */
.featured-news-slider-section {
    padding: 60px 20px;
    background: #ffffff;
}

.featured-slider-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.featured-news-slider-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-news-slider-section .section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    font-weight: bold;
    color: #2F1200;
    margin-bottom: 15px;
}

.featured-news-slider-section .section-divider {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2F1200, transparent);
    opacity: 0.3;
    margin: 0 auto 15px;
    width: 200px;
    border-radius: 5px;
}

.featured-news-slider-section .section-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

/* Carousel Container */
.featured-news-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Carousel Track */
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Individual Slide */
.carousel-slide {
    min-width: 100%;
    position: relative;
}

.featured-slide-card {
    position: relative;
    display: block;
    width: 100%;
    height: 500px;
    text-decoration: none;
    overflow: hidden;
}

/* Background Image */
.featured-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-slide-card:hover img {
    transform: scale(1.05);
}

/* Overlay */
.featured-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(47, 18, 0, 0.6) 50%,
        rgba(47, 18, 0, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    transition: background 0.4s ease;
}

.featured-slide-card:hover .featured-slide-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(47, 18, 0, 0.7) 50%,
        rgba(47, 18, 0, 0.95) 100%
    );
}

/* Category Badge */
.featured-slide-category {
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    color: #2F1200;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.featured-slide-card:hover .featured-slide-category {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Content at Bottom */
.featured-slide-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-slide-content h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.featured-slide-card:hover .featured-slide-content h3 {
    color: #ffd89b;
}

/* Meta Information */
.featured-slide-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.meta-divider {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #2F1200;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Dots Indicator */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
}

/* View All Button */
.view-all-news-wrapper {
    text-align: center;
    margin-top: 30px;
}

.view-all-news-btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background-color: #2F1200;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 18, 0, 0.2);
}

.view-all-news-btn:hover {
    background-color: #1a0d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(47, 18, 0, 0.3);
}

.view-all-news-btn i {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.view-all-news-btn:hover i {
    transform: translateX(5px);
}

/* No News Message */
.no-news-message {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-news-message i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.no-news-message p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
}

/* ===== TABLET RESPONSIVE (768px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .featured-news-slider-section {
        padding: 50px 20px;
    }

    .featured-slide-card {
        height: 450px;
    }

    .featured-slide-overlay {
        padding: 30px;
    }

    .featured-slide-content h3 {
        font-size: 30px;
    }

    .featured-slide-meta {
        font-size: 13px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .carousel-nav.prev {
        left: 15px;
    }

    .carousel-nav.next {
        right: 15px;
    }
}

/* ===== MOBILE RESPONSIVE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .featured-news-slider-section {
        padding: 40px 15px;
    }

    .featured-news-slider-section .section-header {
        margin-bottom: 30px;
    }

    .featured-news-slider-section .section-header h2 {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .featured-news-slider-section .section-divider {
        width: 150px;
        height: 2px;
    }

    .featured-news-slider-section .section-subtext {
        font-size: 13px;
    }

    .featured-news-carousel {
        border-radius: 8px;
        margin-bottom: 30px;
    }

    .featured-slide-card {
        height: 350px;
    }

    .featured-slide-overlay {
        padding: 20px;
    }

    .featured-slide-category {
        padding: 8px 14px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .featured-slide-content {
        gap: 10px;
    }

    .featured-slide-content h3 {
        font-size: 22px;
        line-height: 1.3;
        -webkit-line-clamp: 3;
    }

    .featured-slide-meta {
        font-size: 11px;
        gap: 10px;
    }

    .meta-item i {
        font-size: 13px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 20px;
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    .view-all-news-btn {
        padding: 12px 30px;
        font-size: 12px;
        letter-spacing: 1.5px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .news-card {
    width: 100%;
    margin-bottom: 15px;
  }

  .news-scroll-container {
    flex-direction: column;
    align-items: center;
  }
}

.contact-section {
  padding: 30px 20px;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.contact-range{
  width: 80%;
  max-width: 700px;
  appearance: none; /* For consistent styling across browsers */
  height: 6px;
  border-radius: 5px;
  background: #fff7ec;
  outline: none;
  margin: 0 auto;
  display:block;
  font-family: 'Montserrat', sans-serif;
}

.contact-text {
  padding-top: 100px;
  flex: 1 1 40%;
}

.contact-text h2 {
  font-size: 80px;
  color: #3f2800;
  font-weight: normal; /* Ensures the text is not bold */
}

.contact-text p {
  font-size: 1rem;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
}

.contact-form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto; /* Centering form */
}

/* Styling input and textarea fields */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #241700; /* Highlight focus with color */
  outline: none; /* Remove default outline */
}

/* Button styling */
.contact-form button {
  padding: 12px;
  background-color: #2F1200;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Button hover effect */
.contact-form button:hover {
  background-color: #241700;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .contact-form {
    flex: 1 1 100%;
    padding: 15px; /* Add some padding around the form on smaller screens */
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    font-size: 14px; /* Adjust font size on smaller screens */
  }

  .contact-form button {
    font-size: 14px; /* Adjust button font size on smaller screens */
  }
}

/* ===== ROOMS SECTION STYLING ===== */
.rooms-and-furniture {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 40px 20px;
  background-color: #fafafa;
}

/* Container for the entire content */
.box {
  max-width: 1200px;
  margin: 0 auto;
}

/* "ROOM CATEGORIES" Heading */
.text-wrapper-4 {
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  margin-bottom: 50px;
  color: #333;
  letter-spacing: 3px;
}

/* Carousel Wrapper with Arrows */
.rooms-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

/* Arrow Buttons */
.room-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(59, 31, 15, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.room-arrow:hover {
  background: rgba(59, 31, 15, 1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.room-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.room-arrow-left {
  left: 10px;
}

.room-arrow-right {
  right: 10px;
}

/* Grid Layout for Rooms - Horizontal Scroll */
.group {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 25px;
  padding: 20px 70px; /* Add padding to push content away from edges */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  width: 100%;
  justify-content: flex-start;
}

.group::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Individual Room Item Styling - SMALLER SIZE */
.room-item {
  position: relative;
  min-width: 280px;
  max-width: 280px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-size: cover;
  background-position: center;
  background-color: #3b1f0f;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.room-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  padding: 25px;
}

/* Brown Overlay with Opacity */
.room-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 31, 15, 0.78) 0%, rgba(138, 90, 68, 0.68) 100%);
  transition: all 0.4s ease;
  z-index: 1;
}

/* Hover Effect - Lower Opacity to Show Background */
.room-item:hover .room-bg-overlay {
  background: linear-gradient(135deg, rgba(59, 31, 15, 0.45) 0%, rgba(138, 90, 68, 0.35) 100%);
}

/* Room Icon - SMALLER */
.room-icon {
  position: relative;
  z-index: 2;
  width: 75px;
  height: 75px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.room-icon i {
  font-size: 38px;
  color: white;
  transition: all 0.3s ease;
}

.room-item:hover .room-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Room Title Styling - SMALLER */
.room-item .text-wrapper {
  position: relative;
  z-index: 2;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  margin-bottom: 12px;
  text-decoration: none !important;
}

/* Room Description - SMALLER */
.room-description {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
  max-width: 90%;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* Hover Effect for Text */
.room-item:hover .text-wrapper {
  transform: scale(1.05);
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
  letter-spacing: 2.5px;
}

.room-item:hover .room-description {
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

/* Hover Effect for Card */
.room-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(59, 31, 15, 0.4);
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .room-arrow {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
  
  .room-arrow-left {
    left: 5px;
  }
  
  .room-arrow-right {
    right: 5px;
  }
  
  .group {
    padding: 20px 60px;
  }
  
  .room-item {
    min-width: 260px;
    max-width: 260px;
    height: 300px;
  }
  
  .room-icon {
    width: 65px;
    height: 65px;
  }
  
  .room-icon i {
    font-size: 32px;
  }
  
  .room-item .text-wrapper {
    font-size: 1.2rem;
  }
  
  .room-description {
    font-size: 0.8rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .rooms-and-furniture {
    padding: 30px 0; /* Remove side padding */
  }
  
  .text-wrapper-4 {
    font-size: 24px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .room-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .room-arrow-left {
    left: 5px;
  }
  
  .room-arrow-right {
    right: 5px;
  }
  
  .group {
    gap: 15px;
    padding: 15px 55px; /* Adjust padding for mobile */
  }
  
  .room-item {
    min-width: 240px;
    max-width: 240px;
    height: 280px;
  }
  
  .room-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .room-icon i {
    font-size: 30px;
  }
  
  .room-item .text-wrapper {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }
  
  .room-description {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .room-item:hover .text-wrapper {
    letter-spacing: 2px;
  }
}

.reviews-section {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #fff;
}

.section-title {
  font-size: 40px;
  font-weight: bold;
  color: #4b2e2e; /* dark brown */
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review-card {
  width: 400px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.stars {
  color: #000;
  font-size: 25px;
}

.review-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #555;
  margin-bottom: 5px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.reviewer-name {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}

.review-date {
  font-size: 10px;
  color: #888;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.animate-left,
.animate-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
  position: relative;
}

/* Directional transforms */
.animate-left {
  transform: translateX(-50px);
}

.animate-right {
  transform: translateX(50px);
}

/* Visible state */
.animate-visible {
  opacity: 1;
  transform: translateX(0);
}

/* FOR TOP MODULAR CABINETS ANIMATION -- Initial hidden state */
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* Visible state */
.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

.animate-pop {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* When element is in the viewport */
.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Tablet dropdowns */
@media (min-width: 769px) and (max-width: 1024px) {
  #nav-menu .dropdown > a::after {
    content: ' ▾';
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  #nav-menu .dropdown.open > a::after {
    transform: rotate(180deg);
    display: inline-block;
  }
  
  #nav-menu .dropdown {
    position: relative;
  }
  
  #nav-menu .dropdown-content {
    display: none !important;
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    background: #f9f9f9;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  
  #nav-menu .dropdown.open .dropdown-content {
    display: block !important;
  }
  
  #nav-menu .dropdown-content a {
    padding-left: 40px !important;
    font-size: 0.9rem;
    background-color: #f9f9f9;
    display: block !important;
  }
}

  @media (max-width: 768px) {
  .view-btn.section-btn {
    margin-top: 40px !important; 
    margin-bottom: 30px !important; 
    position: relative !important; 
    z-index: 1 !important;
    display: block !important;
    clear: both !important;
  }
}

    @media (max-width: 768px) {
  /* Fix for news section - Mobile */
  .news-scroll-container {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    padding: 30px 0 !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 15px !important;
    margin: 0 !important;
  }

  .news-card {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    height: auto !important;
    min-height: 450px !important;
    margin: 0 !important;
  }

  .news-card img {
    height: 180px !important;
  }

  .news-card h3 {
    font-size: 1rem !important;
  }

  .news-card p {
    font-size: 11px !important;
  }

  /* Ensure news wrapper is visible */
  .news-wrapper {
    overflow: hidden !important;
    padding: 20px 0 !important;
  }

  .news-wrapper h2 {
    font-size: 2rem !important;
    margin-bottom: 10px !important;
  }
}

/* Tablet Responsiveness for News */
@media (min-width: 769px) and (max-width: 1024px) {
  .news-scroll-container {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    padding: 40px 0 !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    margin: 0 20px !important;
  }

  .news-card {
    flex: 0 0 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    height: auto !important;
    min-height: 480px !important;
    margin: 0 !important;
  }

  .news-card img {
    height: 190px !important;
  }

  .news-wrapper {
    overflow: hidden !important;
    padding: 30px 0 !important;
  }

  .news-wrapper h2 {
    font-size: 2.3rem !important;
  }
}

  /* 6. Contact Form Fix */
  .contact-text {
    padding-top: 30px !important;
    text-align: center;
  }

  .contact-text h2 {
    font-size: 2.5rem !important;
  }

  /* 8. Modal Fix */
  .modal-content {
    width: 90% !important;
    margin: 50% auto !important;
  }


/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Show hamburger menu on tablets */
  .hamburger {
    display: block !important;
  }

  /* Header adjustments */
  header {
    padding: 15px 20px;
  }

  .logo-container img {
    height: 40px !important;
    width: auto !important;
    max-width: 180px !important;
  }

  /* SIDEBAR Tablet Navigation */
  #nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 0 20px 0;
    overflow-y: auto;
    transition: left 0.4s ease;
    box-shadow: 2px 0 15px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  #nav-menu.active {
    left: 0;
  }

  /* Overlay */
  #nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 320px;
    width: calc(100vw - 320px);
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: -1;
  }

  #nav-menu a {
    padding: 15px 25px !important;
    border-bottom: 1px solid #eee;
    color: #333 !important;
    width: 100%;
    text-align: left;
    display: block !important;
    transform: none !important;
    transition: background-color 0.3s ease !important;
  }

  #nav-menu a:active,
  #nav-menu a:focus {
    outline: none !important;
    transform: none !important;
  }

  .quote-button {
    margin: 10px 25px !important;
    width: calc(100% - 50px) !important;
    text-align: center;
    background-color: #f7f7f7 !important;
    color: #2F1200 !important;
  }

  .quote-button:hover {
    background-color: #2F1200 !important;
    color: #f7f7f7 !important;
  }

  /* Dropdown styling - same as mobile */
  .dropdown {
    width: 100%;
  }

  .dropdown > a::after {
    content: ' ▾';
  }

  /* Hero adjustments */

  .hero-text {
    left: 7% !important;
    right: 7% !important;
    width: 86% !important;
  }
  
  .hero-text h1 {
    font-size: 2.5rem !important;
  }

  /* Tablet - 2x2 Grid */
@media (min-width: 769px) and (max-width: 1023px) {
  .service-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding: 30px 20px !important;
    max-width: 700px;
    margin: 0 auto;
  }

  .service-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
  }
}
}