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

body{
  background:#100B0F;
  color:#634832;
  overflow-x:hidden;
}

/* ===== SLIDER ===== */
.carousel{
  width:100%;
  overflow:hidden;
  position:relative;
}

.carousel-track{
  display:flex;
  transition:transform 0.8s ease;
}

/* ===== SLIDE ===== */
.carousel-slide{
  min-width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 60px;
  background-size:cover;
  background-position:center;
}

/* ===== DESKTOP + TABLET IMAGES ===== */
.slide-1{
  background-image:url('../../assets/images/slide_01.webp');
}
.slide-2{
  background-image:url('../../assets/images/slide_02.webp');
}
.slide-3{
  background-image:url('../../assets/images/slide_03.webp');
}

/* ===== CONTENT ===== */
.carousel-content{
  max-width:600px;
  margin-left:14%;
}

.carousel-content h1{
  font-size:3.5rem;
  line-height:1.2;
  margin-bottom:20px;
  font-family:'Federo',sans-serif;
  color:#fff;
}

.carousel-content h1 span{
  color:#c59b73;
}

.carousel-content p{
  color:#DBC1AC;
  margin-bottom:40px;
}

.carousel-content .btn{
  background-color:#6F4E37;
  color:#fff;
  padding:15px 25px;
  border:1px solid #ECE0D1;
  border-radius:25px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.carousel-content .btn:hover{
  background:#c59b73;
}

/* ===== TABLET ===== */
@media(max-width:992px){
  .carousel-slide{
    flex-direction:column;
    text-align:center;
    padding:40px 20px;
  }
  .carousel-content{
    margin-left:0;
  }
  .carousel-content h1{
    font-size:2.2rem;
  }
}

/* ===== MOBILE ONLY (CHANGE IMAGES HERE ONLY) ===== */
@media(max-width:768px){

  .slide-1{
    background-image:url('../../assets/images/mobile_slider1.webp');
  }

  .slide-2{
    background-image:url('../../assets/images/mobile_slider2.webp');
  }

  .slide-3{
    background-image:url('../../assets/images/mobile_slider3.webp');
  }

  .carousel-slide{
    min-height:90vh;
    background-position:center;
  }
}
/* ===== MOBILE IMAGE ONLY (HIDE TEXT) ===== */
@media(max-width:768px){

  .carousel-content{
    display:none;
  }

  .carousel-slide{
    justify-content:center;
    align-items:center;
  }

}











  /* Safety: prevents width overflow everywhere */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #ECE0D1;
  color: #3a2f2f;
}

/* Container */
.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;

  width: min(1200px, 90%);
  margin: 40px auto;
  padding: 20px;
}

/* Image */
.image-box {
  flex: 1 1 45%;
  min-width: 280px;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Content */
.content-box {
  flex: 1 1 45%;
  min-width: 280px;
  padding-bottom: 30px;
  border-bottom: 1.5px solid rgba(158, 127, 97, 0.6);
}

.content-box h2 {
  margin-bottom: 20px;
  color: #38220F;
  font-weight: normal;
/*  font-weight: 600; */
}

.content-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #634832;
}

.content-box button {
  background-color: #967259;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}

.content-box button:hover {
  background-color: #7a5d44;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .content-box {
    border-bottom: none;
    padding-bottom: 0;
  }
}







/* =========================
   WHY CHOOSE SECTION ONLY
   ========================= */

.section {
    position: relative;
    padding: 70px 60px;
    overflow: hidden;
    background: #F7F7F7;
}

/* LEFT CUP */
.section::before {
    content: "";
    position: absolute;
    left: -10%;
    bottom: 0;
    width: 430px;
    height: 630px;
    background: url('../../assets/images/cup_bg.webp') no-repeat left bottom;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
}

/* RIGHT BEANS */
.section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 485px;
    height: 630px;
    background: url('../../assets/images/coffee_beans.webp') no-repeat right bottom;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
}

/* CONTENT WRAPPER */
.section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
        margin-top: -70px;
}

/* TITLE */
.section .title {
    margin-bottom: 55px;
}

.section .title h2 {
    font-family: 'Federo', sans-serif;
    font-weight: 400;
    color: #38220F;
}

.section .title p {
    margin-top: 16px;
    font-size: 1rem;
    color: #634832;
    max-width: 620px;
    line-height: 1.6;
}

/* GRID */
.section .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 70px;
}

/* ITEM */
.section .item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.section .icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #2f2320;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section .icon-circle img {
    width: 100px;
    height: auto;
}

.section .item h4 {
    font-family: 'Montserrat',sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #634832;
    margin-bottom: 6px;
}

.section .item p {
    font-size: 0.875rem;
    color: #634832;
    line-height: 1.6;
}

.section::before,
.section::after {
    opacity: 5.0;   /* visible but subtle */
}


/* =========================
   RESPONSIVE
   ========================= */

/* TABLET */
@media (max-width: 1024px) {
    .section {
        padding: 60px 30px;
    }

    .section::before,
    .section::after {
        display: none;
    }

    .section .grid {
        gap: 40px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .section {
        padding: 45px 20px;
    }

    .section .grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section .item {
        gap: 15px;
        text-align: left;
    }

    .section .icon-circle {
        width: 85px;
        height: 85px;
    }

    .section .icon-circle img {
        width: 90px;
    }
}






/* ===== ONLY THIS SECTION ===== */
.food-items-section{
  padding:60px 20px;
  background-image:url("../../assets/images/delicious_food_bg.webp"); /* pattern image */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.food-items-section .food-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.food-items-section .food-title{
  color:#f5f5f5;
  /*font-size:32px; */ /* designStudio */
  margin-bottom:40px;
  font-weight:400;
  font-family: 'Federo', sans-serif;
}

.food-items-section .food-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.food-items-section .food-card{
  background:#f7f7f7;
  border-radius:12px;
  padding:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  transition:transform 0.3s ease;
}

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

.food-items-section .food-card img{
  width:100%;
  /*height:160px; */
  object-fit:contain;
}

.food-items-section .view-more{
  margin-top:40px;
}

.food-items-section .view-more button{
  background:#967259;
  color:#fff;
  border:none;
  padding:12px 28px;
  border-radius:25px;
  cursor:pointer;
  font-size:14px;
  letter-spacing:1px;
  
}

.food-items-section .view-more button:hover{
  background:#5f3521;
}

/* Tablet */
@media (max-width:1024px){
  .food-items-section .food-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media (max-width:600px){
  .food-items-section .food-title{
    font-size:24px;
  }

  .food-items-section .food-grid{
    grid-template-columns:1fr;
     display:flex;
    overflow-x:auto;
    gap:20px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:10px;
  }

  .food-items-section .food-card img{
    height:140px;
  }
}

/* ===== MOBILE CAROUSEL ONLY ===== */
@media (max-width:600px){
  .food-items-section .food-grid::-webkit-scrollbar{
    display:none;
  }

  .food-items-section .food-card{
    min-width:85%;
    flex-shrink:0;
    scroll-snap-align:center;
  }
}

/* ===== END SECTION ===== */






body {
    margin: 0;
    font-family:'Federo', sans-serif;
}

/* Container */
.info-bar {
    background: #f4e7d9;
    padding: 25px 15px;
}

/* Flex layout */
.info-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Single item */
.info-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

/* Vertical divider */
.info-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #c8b3a3;
}

/* Title */
.info-item h4 {
    margin: 0 0 6px;
    font-family:'Montserrat',sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #100B0F;
}

/* Text */
.info-item p {
    margin: 0;
    font-size: 1rem;
    color: #38220F;
    line-height: 1.4;
}

/* Responsive – Tablet */
@media (max-width: 991px) {
    .info-wrapper {
        flex-wrap: wrap;
    }

    .info-item {
        flex: 50%;
        margin-bottom: 20px;
    }

    .info-item:nth-child(2)::after {
        display: none;
    }
}

/* Responsive – Mobile */
@media (max-width: 575px) {
    .info-item {
        flex: 100%;
        padding: 15px 0;
    }

    .info-item::after {
        display: none;
    }

    .info-item:not(:last-child) {
        border-bottom: 1px solid #c8b3a3;
    }
}






/* ================= TESTIMONIAL SECTION ONLY ================= */
.testimonial-section {
    position: relative;
    width: 100%;
    background: url('../../assets/images/testimonial_bg.webp') center/cover no-repeat;
}

.testimonial-overlay {
    background: rgba(0, 0, 0, 0.25);
    padding: 40px 20px;
}

.testimonial-title {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 50px;
}

.testimonial-wrapper {
    
    margin: auto;
    position: relative;
    overflow: hidden;
    max-width: 1200px; /* 3 × 320 + gaps */
    
}

.testimonial-container {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease-in-out;
     width: 320px;
    min-width: 320px;
    
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 25px;
    width: 320px;
    min-width: 320px;
    color: #fff;
    backdrop-filter: blur(6px);
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
}

.testimonial-date {
    font-size: 13px;
    color: #ccc;
}

.testimonial-stars {
    margin: 10px 0;
    color: #ffc107;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #eaeaea;
}

/* Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.7;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    opacity: 1;
    background: rgba(0,0,0,0.7);
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* Dots indicator */
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-dot.active {
    background: #fff;
}

.testimonial-dot:hover {
    background: rgba(255,255,255,0.7);
}

/* Pause button */
.auto-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.auto-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.auto-btn:hover {
    background: rgba(255,255,255,0.2);
}

.auto-btn i {
    margin-right: 5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .testimonial-cards {
        gap: 20px;
    }
    
    .testimonial-card {
        width: 300px;
        min-width: 300px;
    }
}

/* ================= SINGLE COMMON RESPONSIVE ================= */

@media (max-width: 992px) {

    .testimonial-title {
        font-size: 28px;
    }

    .testimonial-container {
        height: auto;
        justify-content: center;
    }

    .testimonial-cards {
        justify-content: center;
        gap: 20px;
    }

    /* Show only ONE card for all small devices */
    .testimonial-card {
        flex: 0 0 320px;
        min-width: 320px;
        padding: 20px;
    }

    .testimonial-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .arrow-left { left: 5px; }
    .arrow-right { right: 5px; }
}










    body {
        margin: 0;
        
        background: #F7F7F7;
    }

    h1 {
        text-align: center;
        font-weight: normal;
        margin: 40px 0;
    }

    /* Page width similar to screenshot */
    .page-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px 40px;
    }

    /* Map box exactly like an image */
    .map-box {
        width: 100%;
        aspect-ratio: 16 / 6; /* matches your screenshot shape */
        background: #eee;
        border-radius: 2px;
        overflow: hidden;
    }

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Mobile adjustment */
    @media (max-width: 768px) {
        .map-box {
            aspect-ratio: 16 / 9;
        }
    }*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Montserrat',sans-serif;
}

body{
  background: #100B0F;
  color:#634832;
  overflow-x:hidden;
}

/* ===== SLIDER ===== */
.carousel{
  width:100%;
  overflow:hidden;
  position:relative;
}

.carousel-track{
  display:flex;
  transition:transform 0.8s ease;
}

/* ===== SLIDE ===== */
.carousel-slide{
  min-width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 60px;
  background-size:cover;
  background-position:center;
}

/* ===== CONTENT ===== */
.carousel-content{
  max-width:120%;
}

.carousel-content h1{
  font-size:3.5rem;
  line-height:1.2;
  margin-bottom:20px;
  font-family: 'Federo', sans-serif;
  color: #fff;
  text-align: left;
}

.carousel-content h1 span{
  color:#c59b73;
}

.carousel-content p{
  color: #DBC1AC;
  margin-bottom:80px;
}

.carousel-content button{
  background-color: #6F4E37;
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-color: #ECE0D1;
    border-width: 1px;
    border-style: solid;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

/* ===== IMAGE ===== */
.carousel-image{
  max-width:45%;
}

.carousel-image img{
  width:100%;
  max-height:120%;
  object-fit:contain;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .carousel-slide{
    flex-direction:column-reverse;
    text-align:center;
    padding:40px 20px;
  }
  .carousel-content,
  .carousel-image{
    max-width:120%;
  }
  .carousel-content h1{
    font-size:2.2rem;
  }
}

/* Move left content slightly to the right */
.carousel-content{
  margin-left: 14%;   /* adjust value as you like */
}
@media(max-width:992px){
  .carousel-content{
    margin-left: 0;
  }
}






  /* Safety: prevents width overflow everywhere */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #ECE0D1;
  color: #3a2f2f;
}

/* Container */
.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;

  width: min(1200px, 100%);
  margin: 40px auto;
  padding: 20px;
}

/* Image */
.image-box {
  flex: 1 1 45%;
  min-width: 280px;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Content */
.content-box {
  flex: 1 1 45%;
  min-width: 280px;
  padding-bottom: 30px;
  border-bottom: 1.5px solid rgba(158, 127, 97, 0.6);
}

.content-box h2 {
  margin-bottom: 20px;
  color: #38220F;
  font-weight: normal;
/*  font-weight: 600; */
}

.content-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #634832;
}

.content-box button {
  background-color: #967259;
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}

.content-box button:hover {
  background-color: #7a5d44;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .content-box {
    border-bottom: none;
    padding-bottom: 0;
  }
}







/* =========================
   WHY CHOOSE SECTION ONLY
   ========================= */

.section {
    position: relative;
    padding: 70px 60px;
    overflow: hidden;
    background: #F7F7F7;
}

/* LEFT CUP */
.section::before {
    content: "";
    position: absolute;
    left: -10%;
    bottom: 0;
    width: 430px;
    height: 630px;
    background: url('../../assets/images/cup_bg.webp') no-repeat left bottom;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
}

/* RIGHT BEANS */
.section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 485px;
    height: 630px;
    background: url('../../assets/images/coffee_beans.webp') no-repeat right bottom;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
}

/* CONTENT WRAPPER */
.section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
        margin-top: -70px;
}

/* TITLE */
.section .title {
    margin-bottom: 55px;
}

.section .title h2 {
    font-family: 'Federo', sans-serif;
    font-weight: 400;
    color: #38220F;
}

.section .title p {
    margin-top: 16px;
    font-size: 1rem;
    color: #634832;
    max-width: 620px;
    line-height: 1.6;
}

/* GRID */
.section .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 70px;
}

/* ITEM */
.section .item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.section .icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #2f2320;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section .icon-circle img {
    width: 100px;
    height: auto;
}

.section .item h4 {
    font-family: 'Montserrat',sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #634832;
    margin-bottom: 6px;
}

.section .item p {
    font-size: 0.875rem;
    color: #634832;
    line-height: 1.6;
}

.section::before,
.section::after {
    opacity: 5.0;   /* visible but subtle */
}


/* =========================
   RESPONSIVE
   ========================= */

/* TABLET */
@media (max-width: 1024px) {
    .section {
        padding: 60px 30px;
    }

    .section::before,
    .section::after {
        display: none;
    }

    .section .grid {
        gap: 40px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .section {
        padding: 45px 20px;
    }

    .section .grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section .item {
        gap: 30px;
    }

    .section .icon-circle {
        width: 85px;
        height: 85px;
    }

    .section .icon-circle img {
        width: 90px;
    }
}






/* ===== ONLY THIS SECTION ===== */
.food-items-section{
  padding:60px 20px;
  background-image:url("../../assets/images/delicious_food_bg.webp"); /* pattern image */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.food-items-section .food-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.food-items-section .food-title{
  color:#f5f5f5;
  /*font-size:32px; */ /* designStudio */
  margin-bottom:40px;
  font-weight:400;
  font-family: 'Federo', sans-serif;
}

.food-items-section .food-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.food-items-section .food-card{
  background:#f7f7f7;
  border-radius:12px;
  padding:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  transition:transform 0.3s ease;
}

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

.food-items-section .food-card img{
  width:100%;
  /*height:160px; */
  object-fit:contain;
}

.food-items-section .view-more{
  margin-top:40px;
}

.food-items-section .view-more button{
  background:#967259;
  color:#fff;
  border:none;
  padding:12px 28px;
  border-radius:25px;
  cursor:pointer;
  font-size:14px;
  letter-spacing:1px;
  
}

.food-items-section .view-more button:hover{
  background:#5f3521;
}

/* Tablet */
@media (max-width:1024px){
  .food-items-section .food-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media (max-width:600px){
  .food-items-section .food-title{
    font-size:24px;
  }

  .food-items-section .food-grid{
    grid-template-columns:1fr;
     display:flex;
    overflow-x:auto;
    gap:20px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:10px;
  }

  .food-items-section .food-card img{
    height:140px;
  }
}

/* ===== MOBILE CAROUSEL ONLY ===== */
@media (max-width:600px){
  .food-items-section .food-grid::-webkit-scrollbar{
    display:none;
  }

  .food-items-section .food-card{
    min-width:85%;
    flex-shrink:0;
    scroll-snap-align:center;
  }
}

/* ===== END SECTION ===== */






body {
    margin: 0;
    font-family:'Federo', sans-serif;
}

/* Container */
.info-bar {
    background: #f4e7d9;
    padding: 25px 15px;
}

/* Flex layout */
.info-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Single item */
.info-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

/* Vertical divider */
.info-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #c8b3a3;
}

/* Title */
.info-item h4 {
    margin: 0 0 6px;
    font-family:'Montserrat',sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #100B0F;
}

/* Text */
.info-item p {
    margin: 0;
    font-size: 1rem;
    color: #38220F;
    line-height: 1.4;
}

/* Responsive – Tablet */
@media (max-width: 991px) {
    .info-wrapper {
        flex-wrap: wrap;
    }

    .info-item {
        flex: 50%;
        margin-bottom: 20px;
    }

    .info-item:nth-child(2)::after {
        display: none;
    }
}

/* Responsive – Mobile */
@media (max-width: 575px) {
    .info-item {
        flex: 100%;
        padding: 15px 0;
    }

    .info-item::after {
        display: none;
    }

    .info-item:not(:last-child) {
        border-bottom: 1px solid #c8b3a3;
    }
}






/* ================= TESTIMONIAL SECTION ONLY ================= */
.testimonial-section {
    position: relative;
    width: 100%;
    background: url('../../assets/images/testimonial_bg.webp') center/cover no-repeat;
}

.testimonial-overlay {
    background: rgba(0, 0, 0, 0.25);
    padding: 40px 20px;
}

.testimonial-title {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 50px;
}

.testimonial-wrapper {
    
    margin: auto;
    position: relative;
    overflow: hidden;
    max-width: 1200px; /* 3 × 320 + gaps */
    
}

.testimonial-container {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease-in-out;
     width: 320px;
    min-width: 320px;
    
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 25px;
    width: 320px;
    min-width: 320px;
    color: #fff;
    backdrop-filter: blur(6px);
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
}

.testimonial-date {
    font-size: 13px;
    color: #ccc;
}

.testimonial-stars {
    margin: 10px 0;
    color: #ffc107;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #eaeaea;
}

/* Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.7;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    opacity: 1;
    background: rgba(0,0,0,0.7);
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* Dots indicator */
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-dot.active {
    background: #fff;
}

.testimonial-dot:hover {
    background: rgba(255,255,255,0.7);
}

/* Pause button */
.auto-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.auto-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.auto-btn:hover {
    background: rgba(255,255,255,0.2);
}

.auto-btn i {
    margin-right: 5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .testimonial-cards {
        gap: 20px;
    }
    
    .testimonial-card {
        width: 300px;
        min-width: 300px;
    }
}

/* ================= SINGLE COMMON RESPONSIVE ================= */

@media (max-width: 992px) {

    .testimonial-title {
        font-size: 28px;
    }

    .testimonial-container {
        height: auto;
        justify-content: center;
    }

    .testimonial-cards {
        justify-content: center;
        gap: 20px;
    }

    /* Show only ONE card for all small devices */
    .testimonial-card {
        flex: 0 0 320px;
        min-width: 320px;
        padding: 20px;
    }

    .testimonial-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .arrow-left { left: 5px; }
    .arrow-right { right: 5px; }
}










    body {
        margin: 0;
        
        background: #F7F7F7;
    }

    h1 {
        text-align: center;
        font-weight: normal;
        margin: 40px 0;
    }

    /* Page width similar to screenshot */
    .page-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px 40px;
    }

    /* Map box exactly like an image */
    .map-box {
        width: 100%;
        aspect-ratio: 16 / 6; /* matches your screenshot shape */
        background: #eee;
        border-radius: 2px;
        overflow: hidden;
    }

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Mobile adjustment */
    @media (max-width: 768px) {
        .map-box {
            aspect-ratio: 16 / 9;
        }
    }