@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400&display=swap');

:root{
   --main-color:#2B1103;
   --sub-color:hsl(39, 48%, 74%);
   --white:#fff;
   --border:.1rem solid rgba(220, 198, 156, .3);
}

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

*::selection{
   background-color: var(--sub-color);
   color: var(--main-color);
}

*::-webkit-scrollbar{
   height: .5rem;
   width: 1rem;
}

*::-webkit-scrollbar-track{
   background-color: transparent;
}

*::-webkit-scrollbar-thumb{
   background-color: var(--sub-color);
   border-radius: 5rem;
}

html{
   font-size: 62.5%;
   overflow-x: hidden;
   scroll-behavior: smooth;
   scroll-padding-top: 2rem;
}

body{
   background-color: var(--main-color);
}

section{
   padding: 3rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.btn{
   display: inline-block;
   cursor: pointer;
   padding: 1rem 3rem;
   border: var(--border);
   font-size: 1.8rem;
   color: var(--sub-color);
   text-align: center;
   text-transform: capitalize;
   transition: .2s linear;
   margin-top: 1rem;
   background-color: var(--main-color);
}

.btn:hover{
   border-radius: 5rem;
   background-color: var(--sub-color);
   color: var(--main-color);
}

.header{
   padding-bottom: 0;
}

.header .flex{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1.5rem;
}

.header .flex .logo{
   color: var(--sub-color);
   font-size: 2.5rem;
}

.header .flex .btn{
   margin-top: 0;
}

.header .flex .fa-bars{
   font-size: 3rem;
   cursor: pointer;
   color: var(--sub-color);
   display: none;
}

.header .navbar{
   display: flex;
   align-items: center;
   justify-content: space-evenly;
   gap: 1.5rem;
   margin-top: 2rem;
   background-color: var(--sub-color);
   padding: .5rem;
   border-radius: .5rem;
}

.header .navbar a{
   font-size: 1.8rem;
   color: var(--main-color);
   padding: 1rem 3rem;
   border-radius: .5rem;
}

.header .navbar a:hover{
   background-color: var(--main-color);
   color: var(--sub-color);
}

.home .box img{
   border-radius: .5rem;
   height: 60vh;
   width: 100%;
   object-fit: cover;
}

.home .box .flex{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1.5rem;
   flex-wrap: wrap;
   margin-top: 1.5rem;
}

.home .box .flex h3{
   font-size: 2.5rem;
   color: var(--sub-color);
   text-transform: capitalize;
}

.swiper-button-prev{
   left: 0%;
}

.swiper-button-next{
   right: 0;
}

.swiper-button-next,
.swiper-button-prev{
   padding: 3rem 2rem;
   background-color: var(--white);
   top: 40%;
   opacity: .7;
}

.swiper-button-next::after,
.swiper-button-prev::after{
   color: var(--main-color);
   font-size: 2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
   opacity: 1;
}

.availability form .flex{
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
}

.availability form .flex .box{
   flex: 1 1 20rem;
}

.availability form .flex .box p{
   font-size: 2rem;
   color: var(--sub-color);
}

.availability form .flex .box .input{
   width: 100%;
   padding: 1rem 0;
   font-size: 1.8rem;
   background-color: var(--main-color);
   color: var(--white);
   border-bottom: var(--border);
   margin: 1rem 0;
}

.availability form .flex .box input[type="date"]::-webkit-calendar-picker-indicator{
   filter: invert(1);
}

.about .row{
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
   text-align: center;
   align-items: center;
}

.about .row .image{
   flex: 1 1 40rem;
}

.about .row .image img{
   width: 40rem;
   border-radius: .5rem;
   box-shadow: 0 0 8px rgba(220, 198, 156, 0.4);
   transition: box-shadow 0.3s ease;
}

.about .row .image img:hover {
   box-shadow: 0 0 12px rgba(220, 198, 156, 0.6);
}

.about .row .content{
   flex:1 1 40rem;
}

.about .row .content h3{
   font-size: 3rem;
   color: var(--sub-color);
   text-transform: capitalize;
   margin-bottom: 1rem;
}

.about .row .content p{
   line-height: 2;
   padding: 1rem 0;
   font-size: 1.7rem;
   color: var(--sub-color);
}

.about .row.revers{
   flex-flow: row-reverse;
   margin: 3rem 0;
   flex-wrap: wrap;
}

.services .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
   gap: 1.5rem;
   justify-content: center;
   align-items: flex-start;
}

.services .box-container .box{
   padding: 2rem;
   text-align: center;
}

.services .box-container .box img{
   height: 7rem;
   margin-bottom: 1rem;
}

.services .box-container .box h3{
   font-size: 2rem;
   color: var(--sub-color);
   text-transform: capitalize;
   margin: 1rem 0;
}

.services .box-container .box p{
   line-height: 2;
   font-size: 1.5rem;
   color:var(--sub-color);
}

.reservation form{
   border: var(--border);
   padding: 2rem;
}

.reservation form .flex{
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
}

.reservation form h3{
   background-color: var(--sub-color);
   color: var(--main-color);
   font-size: 2.5rem;
   margin-bottom: 2rem;
   border-radius: .5rem;
   padding: 1.2rem;
   text-align: center;
   text-transform: capitalize;
}

.reservation form .flex .box{
   flex: 1 1 40rem;
}

.reservation form .flex .box p{
   font-size: 1.8rem;
   color: var(--sub-color);
}

.reservation form .flex .box .input{
   padding: 1rem 0;
   margin: 1rem 0;
   border-bottom: var(--border);
   background: var(--main-color);
   color: var(--white);
   font-size: 1.8rem;
   width: 100%;
}

.reservation form .flex .box input[type="date"]::-webkit-calendar-picker-indicator{
   filter: invert(1);
}

.gallery {
    padding: 4rem 1rem;
    background-color: var(--main-color);
}

.gallery .section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--sub-color);
    margin-bottom: 3rem;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.8rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: var(--main-color);
    border: var(--border);
}

.gallery-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 Aspect Ratio */
    overflow: hidden;
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(43, 17, 3, 0.95) 0%,
        rgba(43, 17, 3, 0.8) 50%,
        rgba(43, 17, 3, 0) 100%
    );
    padding: 2rem 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    color: var(--sub-color);
    font-size: 1.4rem;
    opacity: 0.9;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

/* Mobile Styles */
@media (max-width: 480px) {
    .gallery {
        padding: 2rem 0.5rem;
    }

    .gallery .section-title {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .gallery-image {
        padding-bottom: 66.67%; /* 3:2 Aspect Ratio */
    }

    .gallery-overlay {
        padding: 1.5rem 1rem;
    }

    .gallery-overlay h3 {
        font-size: 1.6rem;
    }

    .gallery-overlay p {
        font-size: 1.2rem;
    }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .gallery {
        padding: 5rem 2rem;
    }
}

.swiper-pagination-bullets.swiper-pagination-horizontal{
   bottom: 0;
}

.swiper-pagination-bullet{
   background-color: var(--sub-color);
}

.swiper-pagination-bullet-active{
   background-color: var(--white);
}

.contact .row{
   display: flex;
   align-items: flex-start;
   gap: 3rem;
   flex-wrap: wrap;
}

.contact .row form{
   flex: 1 1 40rem;
   border: var(--border);
   border-radius: .5rem;
   padding: 2rem;
   text-align: center;
}

.contact .row .faq{
   flex: 1 1 40rem;
}

.contact .row form h3{
   margin-bottom: 1rem;
   border-radius: .5rem;
   padding: 1.2rem;
   color: var(--main-color);
   background-color: var(--sub-color);
   font-size: 2.2rem;
   text-transform: capitalize;
}

.contact .row form .box{
   padding: 1rem 0;
   margin: 1rem 0;
   border-bottom: var(--border);
   font-size: 1.8rem;
   color: var(--sub-color);
   background:var(--main-color);
   width: 100%;
}

.contact .row form .box::placeholder{
   color: rgba(220, 198, 156, .6);
}

.contact .row form textarea{
   height: 15rem;
   resize: none;
}

.contact .row .faq .title{
   padding-bottom: .5rem;
   font-size: 2.5rem;
   color: var(--sub-color);
   text-transform: capitalize;
   text-align: center;
}

.contact .row .faq .box{
   border-radius: .5rem;
   border: var(--border);
   margin-top: 2rem;
   background: rgba(220, 198, 156, 0.05);
}

.contact .row .faq .box h3{
   background-color: var(--sub-color);
   color: var(--main-color);
   padding: 1.5rem;
   font-size: 2rem;
   border-radius: .5rem;
   cursor: pointer;
   position: relative;
}

.contact .row .faq .box p{
   padding: 0;
   max-height: 0;
   overflow: hidden;
   font-size: 1.6rem;
   line-height: 2;
   color: var(--sub-color);
   transition: all 0.3s ease-in-out;
}

.contact .row .faq .box.active p{
   padding: 1.5rem 2rem;
   max-height: 500px;
}

.reviews{
   padding-top: 0;
}

.reviews .box{
   text-align: center;
   user-select: none;
   padding: 2rem;
   margin-bottom: 4rem;
}

.reviews .box img{
   height: 7rem;
   width: 7rem;
   border-radius: 50%;
   object-fit: cover;
}

.reviews .box h3{
   margin: 1.5rem 0;
   font-size: 2rem;
   color: var(--sub-color);
}

.reviews .box p{
   line-height: 2;
   font-size: 1.5rem;
   color: var(--sub-color);
}

.footer .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   gap: 1.5rem;
   justify-content: center;
   align-items: flex-start;
   padding-bottom: 3rem;
}

.footer .box-container .box a{
   display: block;
   font-size: 1.8rem;
   color: var(--sub-color);
   padding: 1rem 0;
}

.footer .box-container .box a:hover{
   color: var(--white);
}

.footer .box-container .box:first-child i{
   margin-right: 1.7rem;
}

.footer .box-container .box:nth-child(2){
   text-align: center;
}

.footer .box-container .box:last-child{
   text-align:right;
}

.footer .box-container .box:last-child i{
   margin-left: 1.7rem;
}

.footer .box-container .box:last-child i{
   margin-left: 1.7rem;
}

.footer .box-container .box:last-child i{
   margin-left: 1.7rem;
}

.footer .credit{
   border-radius: .5rem;
   padding: 2rem;
   text-align: center;
   color: var(--main-color);
   background-color: var(--sub-color);
   font-size: 2rem;
   /* margin-bottom: 8rem; */
}

/* Modern Minimal Separator */
.home::after {
   content: '';
   display: block;
   width: 80%;
   height: 1px;
   background: linear-gradient(90deg, 
      transparent 0%, 
      var(--sub-color) 20%, 
      var(--sub-color) 80%, 
      transparent 100%
   );
   margin: 5rem auto 0;
   opacity: 0.6;
}

.home::before {
   display: none;
}

/* Remove all previous decorative elements */
.home::after::before,
.home::after::after {
   display: none;
}

/* Adjust section spacing */
.about {
   padding-top: 5rem;
}

/* media queries  */

@media (max-width:991px){

   html{
      font-size: 55%;
   }

   .header .flex .fa-bars{
      display: inline-block;
   }

   .header .flex .btn{
      display: none;
   }

   .header .navbar{
      flex-flow: column;
      padding: 2rem;
      display: none;
   }

   .header .navbar.active{
      display: flex;
   }

}

@media (max-width:768px){

   .home .box img{
      height: 40vh;
   }

   .swiper-button-next,
   .swiper-button-prev{
      top: 35%;
   }

}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

   .header .flex .logo{
      font-size: 2rem;
   }

   .home .box img{
      height: 25rem;
   }

   .about .row .image img{
      width: 100%;
   }

   .gallery img{
      height: 25rem;
      width: 30rem;
   }

}

/* Rooms Section Styles */
.rooms {
   padding: 5rem 2rem;
   max-width: 1400px;
   margin: 0 auto;
}

.section-title {
   font-size: 3.5rem;
   color: var(--sub-color);
   text-align: center;
   margin-bottom: 4rem;
   text-transform: capitalize;
}

.room-container {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 3rem;
   justify-content: center;
   max-width: 1200px;
   margin: 0 auto;
}

.room-card {
   background: rgba(220, 198, 156, 0.05);
   border: var(--border);
   border-radius: 0.5rem;
   overflow: hidden;
   transition: transform 0.3s ease;
   display: flex;
   flex-direction: column;
   height: 100%;
}

.room-image {
   width: 100%;
   aspect-ratio: 16/10;
   position: relative;
   overflow: hidden;
}

.room-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.3s ease;
   position: absolute;
   top: 0;
   left: 0;
}

.room-card:hover {
   transform: translateY(-5px);
}

.room-card:hover .room-image img {
   transform: scale(1.05);
}

.room-content {
   padding: 2.5rem 2rem;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
   gap: 1.5rem;
}

.room-content h3 {
   font-size: 2.8rem;
   color: var(--sub-color);
}

.room-content .price {
   font-size: 2.5rem;
   color: var(--sub-color);
}

.room-content .price span {
   font-size: 1.5rem;
   color: var(--sub-color);
   opacity: 0.8;
}

.features {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 2rem;
   margin: 1rem 0;
}

.feature {
   color: var(--sub-color);
   font-size: 1.6rem;
   display: flex;
   align-items: center;
   gap: 1.2rem;
}

.feature i {
   font-size: 1.8rem;
   width: 2.5rem;
   color: var(--sub-color);
}

.room-content .btn {
   margin-top: auto;
   align-self: center;
   min-width: 180px;
   font-size: 1.8rem;
   padding: 1.2rem 3rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
   .room-container {
      grid-template-columns: repeat(2, 1fr);
      padding: 0 2rem;
   }
}

@media (max-width: 991px) {
   .room-container {
      grid-template-columns: 1fr;
      max-width: 600px;
      padding: 0 2rem;
   }
}

@media (max-width: 768px) {
   .room-content {
      padding: 2rem 1.5rem;
   }

   .features {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
   }

   .feature {
      font-size: 1.5rem;
   }
}

@media (max-width: 450px) {
   .room-container {
      padding: 0 1rem;
   }

   .room-content {
      padding: 1.5rem 1rem;
   }

   .features {
      grid-template-columns: repeat(2, 1fr);
   }

   .feature {
      font-size: 1.4rem;
      gap: 0.8rem;
   }

   .feature i {
      font-size: 1.6rem;
      width: 2rem;
   }
}

/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--main-color);
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 0.5rem;
    position: relative;
    border: var(--border);
    padding: 2rem;
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2.4rem;
    color: var(--sub-color);
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--white);
}

.modal-room-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.modal-room-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 0.5rem;
}

.modal-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-room-info {
    padding: 1rem;
}

.modal-room-info h3 {
    font-size: 3rem;
    color: var(--sub-color);
    margin-bottom: 1.5rem;
}

.modal-room-info .price {
    font-size: 2.5rem;
    color: var(--sub-color);
    margin-bottom: 2rem;
}

.modal-booking-form {
    padding: 2rem 0;
}

.modal-booking-form h3 {
    font-size: 2.5rem;
    color: var(--sub-color);
    text-align: center;
    margin-bottom: 2rem;
    background-color: rgba(220, 198, 156, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 1.6rem;
    color: var(--sub-color);
}

.form-group label span {
    color: #ff6b6b;
    margin-left: 0.4rem;
}

.form-group .input {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    border: var(--border);
    color: var(--white);
    font-size: 1.6rem;
    border-radius: 0.3rem;
}

.form-group select.input {
    cursor: pointer;
}

.form-group .input:focus {
    border-color: var(--sub-color);
}

.modal-booking-form .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
}

/* Responsive Modal Styles */
@media (max-width: 991px) {
    .modal-room-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 450px) {
    .modal-content {
        padding: 1rem;
    }

    .modal-room-info h3 {
        font-size: 2.4rem;
    }

    .form-group label {
        font-size: 1.4rem;
    }

    .form-group .input {
        padding: 1rem;
        font-size: 1.4rem;
    }
}

/* Menu Modal Styles */
.menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow-y: auto;
}

.menu-content {
    background-color: var(--main-color);
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 1rem;
    position: relative;
    border: var(--border);
    padding: 3rem 2rem;
}

.close-menu {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2.4rem;
    color: var(--sub-color);
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.close-menu:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-nav-btn {
    background: transparent;
    border: var(--border);
    color: var(--sub-color);
    padding: 1rem 2.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 3rem;
}

.menu-nav-btn.active,
.menu-nav-btn:hover {
    background-color: var(--sub-color);
    color: var(--main-color);
}

.menu-items-container {
    padding: 2rem 0;
}

.menu-category {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
}

.menu-category.active {
    display: grid;
}

.menu-item {
    background: rgba(220, 198, 156, 0.05);
    border: var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.item-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.menu-item:hover .item-image img {
    transform: scale(1.1);
}

.item-content {
    padding: 2rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.item-header h3 {
    font-size: 2.2rem;
    color: var(--sub-color);
}

.item-header .price {
    font-size: 2.4rem;
    color: var(--sub-color);
    font-weight: bold;
}

.item-content p {
    font-size: 1.6rem;
    color: var(--sub-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Animation Classes */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s, opacity 0.8s;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Menu Styles */
@media (max-width: 991px) {
    .menu-content {
        margin: 1rem;
    }
    
    .menu-category {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-nav-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .item-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 450px) {
    .menu-content {
        padding: 2rem 1rem;
    }
    
    .item-content {
        padding: 1.5rem;
    }
    
    .item-header h3 {
        font-size: 2rem;
    }
    
    .item-header .price {
        font-size: 2.2rem;
    }
    
    .item-content p {
        font-size: 1.4rem;
    }
}

/* FAQ Animations */
.faq .box {
    margin-bottom: 2rem;
    border: var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(220, 198, 156, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq .box:hover {
    transform: translateX(10px);
}

.faq .box h3 {
    padding: 1.5rem;
    font-size: 1.8rem;
    color: var(--sub-color);
    background: rgba(220, 198, 156, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.faq .box h3::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.faq .box.active h3::after {
    transform: rotate(180deg);
}

.faq .box p {
    padding: 0;
    height: 0;
    font-size: 1.6rem;
    color: var(--sub-color);
    line-height: 2;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.faq .box.active p {
    padding: 1.5rem;
    height: auto;
    opacity: 1;
}

/* Reviews Section */
.reviews {
    padding: 5rem 1rem;
}

.reviews .title {
    text-align: center;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews .box {
    text-align: center;
    padding: 2rem;
    border: var(--border);
    border-radius: 1rem;
    background: rgba(220, 198, 156, 0.05);
    transition: transform 0.3s ease;
}

.reviews .box:hover {
    transform: translateY(-5px);
}

.reviews .box img {
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 0.5rem solid rgba(220, 198, 156, 0.2);
}

.reviews .box h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.reviews .box .stars {
    margin-bottom: 1rem;
    color: var(--sub-color);
}

.reviews .box .stars i {
    font-size: 1.8rem;
}

.reviews .box p {
    line-height: 2;
    font-size: 1.6rem;
    color: var(--sub-color);
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .faq .box h3 {
        font-size: 1.6rem;
        padding: 1.2rem;
    }

    .faq .box p {
        font-size: 1.4rem;
    }

    .reviews .box {
        padding: 1.5rem;
    }

    .reviews .box h3 {
        font-size: 1.8rem;
    }

    .reviews .box p {
        font-size: 1.4rem;
    }
}

@media (max-width: 450px) {
    .faq .box h3 {
        font-size: 1.4rem;
        padding: 1rem;
    }

    .faq .box p {
        font-size: 1.3rem;
    }

    .reviews .box img {
        height: 8rem;
        width: 8rem;
    }

    .reviews .box h3 {
        font-size: 1.6rem;
    }

    .reviews .box p {
        font-size: 1.3rem;
    }
}

.booking-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--main-color);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease-out;
}

.booking-success.show {
    display: flex;
}

.success-content {
    text-align: center;
    max-width: 500px;
}

.success-content i {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out;
}

.success-content h3 {
    font-size: 2.4rem;
    color: var(--sub-color);
    margin-bottom: 1.5rem;
}

.success-content p {
    font-size: 1.6rem;
    color: var(--sub-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-content .btn {
    margin-top: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
}