@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Raleway:wght@500;600;700&display=swap');

:root{
    --main-color : #1F4590;
    --second-color : #FFA451;
    --body-color : #D0FCFF;

    --main-font: 'Open Sans', sans-serif;
    --heading-font : 'Raleway', sans-serif;
}

body{
    background-color: var(--body-color);
    font-family: var(--main-font);
    padding-top: 90px;
    overflow-x: hidden;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

section{
    margin-top: 100px;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}


.navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(208, 252, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar .nav-wrapper{
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}
.nav-wrapper .menu-toggle{
    display: none;
}
.nav-wrapper .logo{
    font-size: 2.2rem;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--main-color);
}
.nav-wrapper .logo span{
    font-size: 1.4rem;
    color: var(--second-color);
}
.nav-wrapper .menu-wrapper{
    display: flex;
    gap: 50px;
}
.nav-wrapper .menu-wrapper .menu{
    display: flex;
    align-items: center;
    gap: 70px;
}
.menu-wrapper .menu .menu-link{
    font-size: 1.25rem;
    color: var(--main-color);
    font-family: var(--heading-font);
    font-weight: 500;
}
.menu-wrapper .menu .menu-link.active{
    font-weight: 700;
    color: var(--second-color);
}
.menu-wrapper .btn-member{
    font-family: var(--heading-font);
    color: #fff;
    font-weight: 600;
    background-color: var(--second-color);
    padding: 25px 30px;
    border-radius: 50px;
}

/* Home Start */
.home{
    margin-top: 50px;
}
.home .home-wrapper{
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
   
}
.home-wrapper .heading{
    font-size: 3.4rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--main-color);
}
.home-wrapper .heading span{
    font-size: 2.9rem;
    color: var(--second-color);
}
.home-wrapper .subheading{
    font-size: 1.125rem;
    color: #4a4a4a;
    max-width: 500px;
    margin: 25px 0;
}
.home-wrapper .box-wrapper{
    display: flex;
    gap: 80px;
}
.home-wrapper .box-wrapper .box{
    display: flex;
    align-items: center;
    gap: 15px;
}
.box-wrapper .box i{
    font-size: 2rem;
    color: var(--main-color);
}
.box-wrapper .box p{
    font-size: 1.125rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--main-color);
}

.content-left .hotel-features{
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.hotel-features .feature-box{
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
    transition: transform 0.3s ease;
}

.hotel-features .feature-box:hover{
    transform: translateY(-5px);
}

.feature-box i{
    font-size: 2.2rem;
    color: var(--second-color);
}

.feature-box .feature-content h4{
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--main-color);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.feature-box .feature-content p{
    color: #666;
    font-size: 0.9rem;
}

.content-left .hotel-motto{
    font-size: 18px;
    margin-top: 30px;
    color: var(--main-color);
    font-style: italic;
    font-family: var(--heading-font);
    text-align: center;
    font-weight: 500;
}

.content-right .img-wrapper{
    max-width: 800px;
}
.content-right .img-wrapper img{
    width: 100%;
}



.home-wrapper .content-left{
    flex: 0 0 50%;
}
.home-wrapper .content-right{
    flex: 0 0 50%;
}

/* HOme End */

/* service start */
.service .service-wrapper{
    margin: auto;
}
.service-wrapper .row1{
    text-align: center;
}
.service-wrapper .label-service{
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--second-color);
}
.service-wrapper .heading-service{
    font-size: 40px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: #4a4a4a;
    margin: 10px 0;
}
.service-wrapper .subheading-service{
    font-size: 20px;
   
}
.service-wrapper .row2{
    margin-top: 50px;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 50px 50px 0 0;
}
.row2 .box-service{
    position: relative;
    max-width: 300px;
    text-align: center;
    padding: 30px;
}
.box-service i{
    font-size: 2.5rem;
}
.box-service h3{
    font-size: 20px;
    margin-top: 10px;
}
.box-service .btn-learn{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgb(255, 166, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px 50px 0 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transition: .4s ease-in-out;
}
.box-service:hover .btn-learn{
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    transition: .4s ease-in-out;
}
.btn-learn a{
    color: #fff;
}

/* service end */

/* produk start */
.produk .produk-wrapper{
    margin: auto;
}
.produk-wrapper .row1{
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.row1 .label-produk{
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--second-color);
}
.row1 .heading-produk{
    font-size: 40px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: #4a4a4a;
    margin-top: 10px;
}
.row1 .toggle-slider i{
    font-size: 2.5rem;
    color: var(--main-color);
    cursor: pointer;
}
.produk-wrapper .row2{
    margin-top: 100px;
    margin-bottom: 50px;
}
.produk-wrapper .card-produk{
    position: relative;
    width: 400px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #f2f4f7;
}
.produk-wrapper .card-produk img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.row2 .detail-produk{
    background-color: rgba(255, 255, 255, 0.637);
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #fff;
    backdrop-filter: blur(3px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.171);
    transition: .5s ease-in-out;
}
.card-produk:hover .detail-produk{
    bottom: 0;
    transition: .5s ease-in-out;
}
.detail-produk .kategori{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.kategori .label-kategori{
    padding: 5px 20px;
    background-color: var(--second-color);
    color: #fff;
    border-radius: 5px;
}
.kategori .price{
    background-color: var(--main-color);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.detail-produk .title-card h1{
    font-size: 30px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: #4a4a4a;
}
.detail-produk .review{
    display: flex;
    gap: 10px;
}
.review i{
    color: rgb(224, 224, 12);
}

.detail-produk .body-card{
    margin: 25px 0;
}
.detail-produk .btn-produk{
    background-color: var(--second-color);
    width: 50%;
    margin: auto;
    text-align: center;
    padding: 10px 0;
    border-radius: 50px;
}
.btn-produk a{
    color: #fff;
}
/* produk end */

/* Banner 1 start*/
.banner1{
    color: #fff;
    margin: 120px auto;
    background-color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 48px;
    border-radius: 12px;
}
.banner1 .heading{
    font-family: var(--heading-font);
    font-size: 40px;

}
.banner1 .content{
    text-align: center;
}
.banner1 h3{
    font-size: 20px;
    padding: 15px 30px;
    background-color: rgb(248, 47, 248);
    border-radius: 15px;
    margin: 20px 0;
}
.banner1 p{
    font-size: 20px;
    font-family: var(--heading-font);
}
.banner1 .btn-book{
    background-color: var(--second-color);
    padding: 20px 40px;
    border-radius: 50px;
}
.banner1 .btn-book a{
    color: white;
}
.statistik-wrapper{
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.statistik-wrapper .content-img{
    flex: 1 1 40%;
    max-width: 520px;
}
.statistik-wrapper .content-statis{
    flex: 1 1 55%;
    max-width: 760px;
}
.content-img img{
    width: 100%;
}
.content-statis .label-statis{
    font-size: 20px;
    font-family: var(--heading-font);
    color: var(--second-color);
}
.content-statis .heading-statis{
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 700;
    width: 100%;
    max-width: 640px;
    margin: 10px 0 16px;
}
.content-statis .subheading-statis{
    font-size: 18px;
    width: 100%;
    max-width: 700px;
}
.content-statis .angka-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 680px;
    margin-top: 20px;
}
.angka-wrapper .box-angka{
    text-align: center;
}
.box-angka h1{
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--second-color);
    font-size: 42px;
}
/* banner 1 end */

/* TESTI START */
.testi-wrapper{
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testi-wrapper .col-heading, .col-slider-testi{
    flex: 1 1 520px;
    max-width: 680px;
}
.testi-wrapper .col-heading .label-testi{
    font-size: 25px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--second-color);
}
.testi-wrapper .col-heading .heading-testi{
    font-size: 36px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: #4a4a4a;
    margin: 25px 0;
}
.col-slider-testi .card-testi{
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.103);
    padding: 30px;
    text-align: center;
}
.card-testi .text-testi{
    padding: 20px;
    position: relative;
    width: 70%;
    margin: auto;
}
.testi .bxs-quote-left{
    position: absolute;
    top: 0;
    left: 0;
}
.testi .bxs-quote-right{
    position: absolute;
    bottom: 0;
    right: 0;
}
.card-testi .status{
    margin-top: 5px;
    color: var(--second-color);
}
/* TESTI END */

/* BANNER2 */
.banner2-wrapper{
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--second-color);
    padding: 5rem 10rem;
    border-radius: 15px;
    flex-wrap: wrap;
}
.content-banner2 .heading{
    font-size: 36px;
    font-family: var(--heading-font);
    font-weight: 700;
}
.content-banner2 .subheading{
    font-size: 20px;
    font-family: var(--heading-font);
    margin-top: 10px;
}
.content-banner2 .disc{
    background-color: #c7772d;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 30px;
    font-weight: 700;
    border-radius: 10px;
    width: 50%;
    text-align: center;
    margin-top: 50px;
    padding: 20px 40px;
}
.btn-banner2 .btn-regis{
    background-color: var(--main-color);
    color: #fff;
    font-family: var(--heading-font);
    font-size: 24px;
    padding: 20px 40px;
    border-radius: 50px;
}

/* Footer */
.footer{
    margin-top: 200px;
}

@media screen and (max-width: 768px) {
    .footer{
        margin-top: 100px;
    }
}

@media screen and (max-width: 450px) {
    .footer{
        margin-top: 80px;
    }
}
.footer-wrapper{
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.col-1-footer .logo-footer{
    font-family: var(--heading-font);
    font-size: 50px;
    color: var(--main-color);
    font-weight: 700;
}
.logo-footer span{
    font-size: 25px;
    color: var(--second-color);
}
.col-1-footer .subheading-footer{
    font-size: 20px;
    margin-top: 20px;
    width: 400px;
}
.sosmed-icon i{
    font-size: 3rem;
    color: var(--main-color);
    margin: 20px 5px;
}
.col-1-footer .copy{
    margin-top: 50px;
}
.col-2-footer h3, .col-3-footer h3, .col-4-footer h3, .col-5-footer h3{
    font-size: 30px;
    font-family: var(--heading-font);
    font-weight: 700;
}
.col-2-footer ul, .col-3-footer ul, .col-4-footer ul{
    margin-top: 20px;
}
.col-2-footer ul li, .col-3-footer ul li, .col-4-footer ul li{
    margin-top: 10px;
}
.col-2-footer li a , .col-3-footer li a, .col-4-footer li a{
    font-size: 18px;
 color: #4a4a4a;
}
.col-5-footer p{
    margin-top: 30px;
    font-size: 18px;
}
.form-input{
    padding: 20px 30px;
    margin-top: 50px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.103);
}
.form-input input{
    border: none;
}
.form-input input:focus{
    outline: none;
}
.form-input .btn-footer{
    background-color: var(--second-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
}






/*  */

@media screen and (max-width: 991px) {
    .navbar .nav-wrapper{
        padding: 0 30px;
        height: 80px;
    }
    
    .nav-wrapper .logo{
        font-size: 1.8rem;
    }
    
    .nav-wrapper .logo span{
        font-size: 1.2rem;
    }
    .nav-wrapper .menu-wrapper .menu{
        gap: 50px;
       
    }
    .menu-wrapper .menu .menu-link{
        font-size: 1rem;
    }
    .menu-wrapper .btn-member{
        padding: 15px 20px;
        font-size: 0.9rem;
        margin-top: 20px;
    }
    .home-wrapper .heading{
        font-size: 2.5rem;
    }
    .home-wrapper .subheading{
        font-size: 1rem;
    }
    .content-left .hotel-features{
        gap: 20px;
    }
    .hotel-features .feature-box{
        padding: 15px 20px;
        gap: 10px;
    }
    .content-right .img-wrapper{
        max-width: 600px;
    }
    
    .produk-wrapper .card-produk {
        max-width: 300px;
        margin: 0 auto;
    }
    .content-left .sugestion{
        font-size: 12px;   
    }
}

@media screen and (max-width: 768px) {
    
    body{
        padding-top: 70px;
        overflow-x: hidden;
    }
    
    .navbar .nav-wrapper{
        height: 70px;
        padding: 0 15px;
    }
    
    .nav-wrapper .logo{
        font-size: 1.6rem;
    }
    
    .nav-wrapper .logo span{
        font-size: 1rem;
    }

    .nav-wrapper .menu-wrapper{
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 300px;

        display: block;
        text-align: center;
        padding-bottom: 2rem;
        border-radius: 15px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: .5s ease-in-out;
        background-color: var(--main-color);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 999;
    }
    .nav-wrapper .menu-wrapper.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transition: .5s ease-in-out;
    }
    .menu-toggle.bx-x{
        transform: rotate(360deg);
        transition: .5s;
    }
    .nav-wrapper .menu-wrapper .menu{
       display: block;
    }
   .menu-wrapper .menu .menu-item{
       margin: 20px 0;
    }
    .menu .menu-item .menu-link{
        color: #fff;
        font-size: 1.1rem;
        padding: 10px 15px;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .menu .menu-item .menu-link:hover,
    .menu .menu-item .menu-link.active {
        background: rgba(255,255,255,0.2);
        color: var(--second-color);
    }
    .nav-wrapper .menu-toggle{
        display: initial;
        font-size: 2.5rem;
        color: var(--main-color);
        transition: .5s;
    }
    .home-wrapper .content-right{
        display: none;
    }
    .home-wrapper .content-left{
        text-align: center;
        flex: 0 0 100%;
        padding: 0 10px;
    }
    .home-wrapper .subheading{
       margin: auto;
       font-size: 1rem;
       line-height: 1.6;
    }
    .home-wrapper .box-wrapper{
        margin-top: 20px;
        justify-content: center;
        margin-bottom: 50px;
    }
    .content-left .hotel-features{
        margin: auto;
        justify-content: center;
    }
    .hotel-features .feature-box{
        width: 100%;
        max-width: 280px;
        margin: 0 auto 15px;
    }
    .statistik-wrapper .content-img{
        margin: auto;
    }
    .statistik-wrapper .content-statis{
        margin: 50px auto;
        text-align: center;
    }
    .content-statis .heading-statis{
        margin: auto;
    }
    .content-statis .subheading-statis{
        margin: 30px auto;
    }
    .content-statis .angka-wrapper{
        margin: auto;
    }
    .testi-wrapper .col-heading{
        text-align: center;
        margin: auto;
    }
    .testi-wrapper .col-slider-testi{
        text-align: center;
        margin: 40px auto;
    }
    .banner2-wrapper{
        padding: 4rem 10rem;
    }
    .btn-banner2{
        margin-top: 100px;
    }
    .btn-banner2 .btn-regis{
        background-color: var(--main-color);
        color: #fff;
        font-family: var(--heading-font);
        font-size: 24px;
        padding: 20px 40px;
        border-radius: 50px;
    }
    .footer{
        padding: 10px 20px;
    }
    .footer .footer-wrapper{
        justify-content: start;
        gap: 10px;
    }
    .footer-wrapper .col-4-footer .col-5-footer{
        margin-top: 20px;
    }
}

@media screen and (max-width: 450px) {
    
    .container {
        padding: 0 10px;
    }
    
    .home-wrapper .heading{
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .home-wrapper .subheading{
        font-size: 0.9rem;
        margin: 20px auto;
        max-width: 100%;
    }
    
    .service-wrapper .heading-service{
        font-size: 1.8rem;
    }
    
    .banner1 .btn-book{
       margin: 30px auto;
    }
   .testi-wrapper .col-slider-testi{
       margin: 30px auto;
       width: 95%;
       max-width: 350px;
   }
   .banner2-wrapper{
    padding: 2rem 1rem;
}
.btn-banner2{
    margin-top: 50px;
}
.footer .footer-wrapper{
    justify-content: start;
    gap: 20px;
    text-align: center;
}
.hotel-features .feature-box{
    flex-direction: column;
    text-align: center;
    padding: 15px;
    margin: 0 auto 15px;
    max-width: 280px;
}
.hotel-features .feature-box i{
    font-size: 2rem;
    margin-bottom: 10px;
}
.content-left .hotel-motto{
    font-size: 14px;
    margin-top: 20px;
    padding: 0 10px;
    line-height: 1.5;
}

}

.box-wrapper {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.home-wrapper .box {
    min-width: 140px;
}

.home-wrapper .box p {
    font-size: 1rem;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    color: white;
    padding: 150px 0 80px;
    margin-top: 90px;
    text-align: center;
    position: relative;
}

.page-header-content h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
}

/* Rooms Page Styles */
.rooms {
    padding: 100px 0;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Desktop için 2-3 sütun */
@media screen and (min-width: 992px) {
    .room-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (min-width: 1200px) {
    .room-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(31, 69, 144, 0.15);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(31, 69, 144, 0.25);
    border-color: var(--second-color);
}

.room-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--second-color), #ff8c42);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 164, 81, 0.4);
    z-index: 2;
}

.room-gallery-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .room-gallery-btn {
    opacity: 1;
}

.room-details {
    padding: 35px;
    background: linear-gradient(to bottom, white 0%, #fafbfc 100%);
}

.room-details h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 15px;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--main-color), #2a5ba0);
    border-radius: 15px;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(31, 69, 144, 0.2);
}

.room-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    font-family: var(--heading-font);
}

.room-price .period {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

.room-size {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 20px;
    font-weight: 600;
    justify-content: center;
    border: 1px solid #e1bee7;
}

.room-size i {
    color: var(--main-color);
    font-size: 1.2rem;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid var(--second-color);
}

.room-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #555;
    padding: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.room-features .feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.room-features .feature i {
    color: var(--second-color);
    font-size: 1.3rem;
    width: 20px;
    text-align: center;
}

.room-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    font-size: 1rem;
    border-left: 3px solid var(--main-color);
}

.room-amenities {
    margin-bottom: 30px;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 15px;
    border: 1px solid #e3f2fd;
}

.room-amenities h4 {
    font-family: var(--heading-font);
    color: var(--main-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-amenities h4::before {
    content: '✨';
    font-size: 1.5rem;
}

.room-amenities ul {
    list-style: none;
    color: #555;
    font-size: 0.95rem;
}

.room-amenities li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.room-amenities li::before {
    content: '•';
    color: var(--second-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.room-actions {
    display: flex;
    gap: 15px;
    padding: 20px 0;
}

.btn-book-room, .btn-details {
    padding: 15px 30px;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-book-room {
    background: linear-gradient(135deg, var(--second-color), #ff8c42);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 164, 81, 0.3);
}

.btn-book-room:hover {
    background: linear-gradient(135deg, #ff8c42, var(--second-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 164, 81, 0.5);
}

.btn-details {
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 3px 10px rgba(31, 69, 144, 0.2);
}

.btn-details:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 69, 144, 0.4);
}

/* Room Comparison Table */
.room-comparison {
    margin-top: 80px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.room-comparison h2 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 30px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--main-font);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--main-color);
    color: white;
    font-family: var(--heading-font);
    font-weight: 600;
}

.comparison-table td {
    color: #666;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

/* Special Packages */
.special-packages {
    margin-top: 80px;
}

.special-packages h2 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 40px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.package-header {
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    color: white;
    padding: 25px;
    position: relative;
}

.package-header h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.package-discount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-content {
    padding: 25px;
}

.package-features {
    list-style: none;
    margin: 20px 0;
}

.package-features li {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.btn-package {
    background: var(--second-color);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: #e6932e;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 100px;
}

.cta-content h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: white;
    color: var(--main-color);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--main-color);
}

/* About Page Styles */
.about-us-main {
    padding: 100px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.label-about {
    font-size: 1.2rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--second-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading-about {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 20px 0;
    line-height: 1.2;
}

.subheading-about {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-story {
    margin-bottom: 40px;
}

.story-section {
    margin-bottom: 30px;
}

.story-section h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--main-color);
    margin-bottom: 15px;
}

.story-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
}

.about-feature i {
    font-size: 2.2rem;
    color: var(--second-color);
}

.feature-text h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    color: var(--main-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
}

.img-wrapper-about {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.img-wrapper-about img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--second-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Company Values */
.values-section, .timeline-section, .team-section, .awards-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.label-section {
    font-size: 1.1rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--second-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 20px 0;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--second-color);
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--second-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2.5rem;
    color: white;
}

.value-card h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--main-color);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--main-color), var(--second-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    text-align: center;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--second-color);
    background: white;
    padding: 15px;
    border-radius: 50%;
    border: 4px solid var(--second-color);
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 0 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 3px solid #f8f9fa;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--second-color);
    transform: scale(1.02);
}

.timeline-content h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--second-color);
}

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

.member-info h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--main-color);
    margin-bottom: 5px;
}

.position {
    color: var(--second-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--main-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--second-color);
}

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.award-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.award-item:hover {
    transform: translateY(-5px);
    border-color: var(--second-color);
}

.award-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon i {
    font-size: 2rem;
    color: white;
}

.award-content h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--main-color);
    margin-bottom: 5px;
}

.award-year {
    color: var(--second-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.award-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Statistics Section */
.about-statistics {
    background: var(--main-color);
    color: white;
    padding: 80px 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--second-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Gallery Page Styles */
.gallery-main {
    padding: 100px 0;
}

.label-gallery {
    font-size: 1.2rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--second-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.heading-gallery {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
    margin: 20px 0;
}

.subheading-gallery {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Gallery Filters */
.gallery-filters {
    margin-bottom: 50px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    padding: 12px 25px;
    border-radius: 25px;
    font-family: var(--heading-font);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--main-color);
    color: white;
    transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    padding: 25px;
    color: white;
    width: 100%;
}

.overlay-content h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.overlay-icons {
    display: flex;
    gap: 15px;
}

.overlay-icons i {
    background: rgba(255,255,255,0.2);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.overlay-icons i:hover {
    background: var(--second-color);
}

/* Load More Button */
.gallery-load-more {
    text-align: center;
}

.btn-load-more {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--second-color);
    transform: translateY(-3px);
}

/* Virtual Tour Section */
.virtual-tour-section, .video-gallery-section, .guest-moments-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.virtual-tour-grid, .video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tour-item, .video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tour-item:hover, .video-item:hover {
    transform: translateY(-5px);
}

.tour-image, .video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
}

.tour-image img, .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-overlay, .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-item:hover .tour-overlay,
.video-item:hover .video-overlay {
    opacity: 1;
}

.play-button, .play-button-large, .play-button-small {
    background: var(--second-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.play-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.play-button-large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.play-button-small {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.tour-item:hover .play-button,
.video-item:hover .play-button-large,
.video-item:hover .play-button-small {
    transform: scale(1.1);
}

.tour-info, .video-info {
    text-align: center;
}

.tour-info h3, .video-info h3, .video-info h4 {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 5px;
}

.video-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.video-item.featured {
    grid-column: span 2;
}

.tour-cta, .moments-cta {
    text-align: center;
}

.btn-virtual-tour, .btn-social {
    background: var(--second-color);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-virtual-tour:hover, .btn-social:hover {
    background: #e6932e;
    transform: translateY(-3px);
}

/* Guest Moments */
.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.moment-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.moment-item:hover {
    transform: scale(1.05);
}

.moment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.moment-item:hover .moment-overlay {
    opacity: 1;
}

.moment-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
}

.moments-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #666;
}

/* Contact Page Styles */
.contact-main {
    padding: 100px 0;
}

.label-contact {
    font-size: 1.2rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--second-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.heading-contact {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
    margin: 20px 0;
}

.subheading-contact {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Quick Contact Options */
.quick-contact-section {
    margin-bottom: 80px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--second-color);
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-icon i {
    font-size: 1.8rem;
    color: white;
}

.quick-info h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--main-color);
    margin-bottom: 5px;
}

.quick-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.quick-info a {
    color: var(--second-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-info a:hover {
    color: var(--main-color);
}

/* Main Contact Grid */
.contact-wrapper .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Information Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--second-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-details h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--main-color);
    margin-bottom: 12px;
}

.contact-details p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-details strong {
    color: var(--main-color);
}

.contact-details span {
    color: var(--second-color);
    font-size: 0.9rem;
    font-style: italic;
}

/* Social Contact Card */
.social-contact-card {
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.social-contact-card h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.social-contact-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.social-links-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 12px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.3rem;
}

/* Contact Form */
.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 3px solid #f8f9fa;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.form-section {
    margin-bottom: 35px;
}

.form-section h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--main-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--main-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--main-font);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--second-color);
    box-shadow: 0 0 0 3px rgba(255, 164, 81, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox and Radio Groups */
.checkbox-group, .radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-label, .radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.checkbox-label:hover, .radio-label:hover {
    background: #f8f9fa;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkmark, .radio-checkmark {
    flex-shrink: 0;
}

/* Form Actions */
.form-actions {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.btn-submit {
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 69, 144, 0.3);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.4;
}

.form-note i {
    color: var(--second-color);
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    margin-bottom: 80px;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.map-info h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 15px;
}

.map-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.highlight-item i {
    color: var(--second-color);
    font-size: 1.2rem;
    width: 20px;
}

.map-placeholder {
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    border: 3px dashed #ddd;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    border-color: var(--second-color);
    background: #f0f0f0;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--second-color);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 25px;
}

.btn-directions {
    background: var(--second-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background: #e6932e;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 80px;
}

.faq-section .section-header {
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    color: var(--main-color);
    margin: 0;
}

.faq-question i {
    color: var(--second-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Emergency Contact Section */
.emergency-contact-section {
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    padding: 60px 0;
}

.emergency-banner {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.emergency-icon i {
    font-size: 2.5rem;
    color: white;
}

.emergency-info {
    flex: 1;
    color: white;
}

.emergency-info h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.emergency-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-emergency {
    background: white;
    color: #ff4757;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive Design Updates */
@media screen and (max-width: 991px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .room-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .room-features {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-wrapper .row2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .virtual-tour-grid,
    .video-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .video-item.featured {
        grid-column: span 1;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row;
        padding-left: 70px;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
        padding: 10px;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    /* Mobil için room-grid tek sütun */
    .room-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .room-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media screen and (max-width: 450px) {
    .page-header {
        padding: 90px 0 40px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .heading-about,
    .heading-gallery,
    .heading-contact {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group,
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .social-links-contact {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}