body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
button,
input,
textarea,
select,
li {

    font-family:
        "Palatino Linotype",
        "Book Antiqua",
        Palatino,
        serif;
}
/* =========================================
   YUVATEL HERO BANNER
========================================= */
.yuvatel-navbar{
    background: rgba(15,23,42,.95);
    backdrop-filter: blur(12px);
}

.yuvatel-navbar .navbar-brand{
    color:#d4a65a;
    font-size:30px;
    font-weight:800;
    letter-spacing:2px;
}

.yuvatel-navbar .nav-link{
    color:#fff !important;
    font-weight:500;
}

.yuvatel-navbar .nav-link:hover{
    color:#d4a65a !important;
}
.yuvatel-hero-section{
    position: relative;
    min-height: 100vh;

    background:
    url('../images/yuvatel/Gallery/image-5.jpeg');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Dark Overlay */

.hero-overlay{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.55)
    );
}

/* Content */

.yuvatel-hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-subtitle{
    display: inline-block;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);

    padding: 10px 22px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 25px;
}

.yuvatel-hero-content h1{
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.yuvatel-hero-content p{
    font-size: 26px;
    font-weight: 300;

    max-width: 700px;
    margin: 0 auto 40px;

    color: rgba(255,255,255,0.9);
}

/* Buttons */

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

.hero-btn-primary{
    background: #c49a6c;
    color: #fff !important;

    padding: 16px 38px;
    border-radius: 50px;

    font-size: 16px;
    font-weight: 600;

    transition: .4s;
}

.hero-btn-primary:hover{
    background: #b1875d;
    transform: translateY(-3px);
}

.hero-btn-outline{
    border: 2px solid #fff;
    color: #fff !important;

    padding: 16px 38px;
    border-radius: 50px;

    font-size: 16px;
    font-weight: 600;

    transition: .4s;
}

.hero-btn-outline:hover{
    background: #fff;
    color: #000 !important;
}

/* Scroll Indicator */

.hero-scroll{
    position: absolute;
    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 2;

    color: #fff;
    text-align: center;

    animation: bounce 2s infinite;
}

.hero-scroll span{
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

@keyframes bounce{
    0%,20%,50%,80%,100%{
        transform: translateX(-50%) translateY(0);
    }
    40%{
        transform: translateX(-50%) translateY(-10px);
    }
    60%{
        transform: translateX(-50%) translateY(-5px);
    }
}

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

@media(max-width:991px){

    .yuvatel-hero-content h1{
        font-size: 58px;
    }

    .yuvatel-hero-content p{
        font-size: 22px;
    }
}

@media(max-width:767px){

    .yuvatel-hero-section{
        min-height: 85vh;
    }

    .yuvatel-hero-content h1{
        font-size: 42px;
    }

    .yuvatel-hero-content p{
        font-size: 18px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-outline{
        width: 250px;
    }
}
/* =========================================
   ABOUT YUVATEL
========================================= */

.yuvatel-about-section{
    padding: 60px 0;
    background: #fff;
}

.yuvatel-about-image{
    position: relative;
}

.yuvatel-about-image img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.experience-badge{
    position: absolute;
    right: 25px;
    bottom: 25px;

    background: #c49a6c;
    color: #fff;

    padding: 20px 25px;
    border-radius: 15px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.experience-badge h3{
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.experience-badge span{
    font-size: 14px;
}

.section-tag{
    display: inline-block;
    color: #c49a6c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.yuvatel-about-content h2{
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

.yuvatel-about-content p{
    text-align: justify;
    color: #000;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 16px;
}

.about-highlights{
    margin-top: 20px;
}

.highlight-item{
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 10px;
    padding: 10px 15px;

    background: #f8f7f4;
    border-radius: 12px;

    transition: .3s;
}

.highlight-item:hover{
    transform: translateX(8px);
}

.highlight-item i{
    color: #c49a6c;
    font-size: 16px;
    width: 24px;
}

.highlight-item span{
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

/* Responsive */

@media(max-width:991px){

    .yuvatel-about-content{
        margin-top: 30px;
    }

    .yuvatel-about-content h2{
        font-size: 34px;
    }
}

@media(max-width:767px){

    .yuvatel-about-section{
        padding: 80px 0;
    }

    .yuvatel-about-content h2{
        font-size: 28px;
    }

    .experience-badge{
        position: static;
        margin-top: 20px;
    }
}
/* =========================================
   WHY YUVATEL IS DIFFERENT
========================================= */

.yuvatel-difference-section{
    padding: 110px 0;
    background: #f8f7f4;
}

.difference-card{
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all .4s ease;
}

.difference-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

.difference-icon{
    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: linear-gradient(135deg,#c49a6c,#a67c52);

    display: flex;
    align-items: center;
    justify-content: center;
}

.difference-icon i{
    font-size: 32px;
    color: #fff;
}

.difference-card h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.difference-card p{
    color: #000;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */

@media(max-width:991px){

    .yuvatel-difference-section{
        padding: 80px 0;
    }

    .difference-card{
        padding: 35px 25px;
    }
}
/* =========================================
   ROOMS & ACCOMMODATION
========================================= */

.yuvatel-rooms-section{
    padding: 110px 0;
    background: #ffffff;
}

.room-block,
.suite-room-block{
    margin-top: 60px;
}

.suite-room-block{
    margin-top: 100px;
    padding: 60px;
    background: #f8f7f4;
    border-radius: 25px;
}

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

.room-gallery img{
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    height: 220px;
    transition: .4s;
}

.room-gallery img:first-child{
    grid-column: span 2;
    height: 350px;
}

.room-gallery img:hover{
    transform: scale(1.03);
}

.room-tag{
    display: inline-block;
    background: rgba(196,154,108,0.12);
    color: #c49a6c;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.room-content h3{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.room-content p{
    color: #000;
    line-height: 1.9;
    margin-bottom: 20px;
}

.room-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item{
    background: #fff;
    padding: 15px 18px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    gap: 12px;

    font-weight: 600;
    color: #333;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item i{
    color: #c49a6c;
    font-size: 18px;
}

.suite-room-block .feature-item{
    background: #ffffff;
}

/* Responsive */

@media(max-width:991px){

    .room-content{
        margin-top: 20px;
    }

    .room-content h3{
        font-size: 34px;
    }

    .suite-room-block{
        padding: 35px;
    }
}

@media(max-width:767px){

    .yuvatel-rooms-section{
        padding: 80px 0;
    }

    .room-gallery{
        grid-template-columns: 1fr;
    }

    .room-gallery img:first-child{
        grid-column: auto;
        height: 250px;
    }

    .room-features{
        grid-template-columns: 1fr;
    }

    .room-content h3{
        font-size: 28px;
    }

    .suite-room-block{
        padding: 25px;
        margin-top: 60px;
    }
}
/* =========================================
   DINING EXPERIENCE PREMIUM
========================================= */

.yuvatel-dining-premium{
    position: relative;

    padding: 140px 0;

    background:
    linear-gradient(
    rgba(0,0,0,0.70),
    rgba(0,0,0,0.70)),
    url('../images/yuvatel/Gallery/kitchen-training.jpeg');

    background-size: cover;
    background-position: center;

}

.dining-info-box{

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.12);

    padding: 50px;

    border-radius: 25px;

    color: #fff;
}

.dining-info-box h2{
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
}

.dining-info-box p{
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    margin-bottom: 20px;
}

.dining-btn{
    display: inline-block;

    background: #c49a6c;
    color: #fff;

    padding: 14px 35px;
    border-radius: 50px;

    text-decoration: none;
    margin-top: 10px;

    font-weight: 600;
}

.dining-feature-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    padding-left: 40px;
}

.feature-card{

    background: #fff;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    transition: .4s;
}

.feature-card:hover{
    transform: translateY(-8px);
}

.feature-card i{
    font-size: 40px;
    color: #c49a6c;
    margin-bottom: 20px;
}

.feature-card h5{
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

/* make last card centered */

.feature-card:last-child{
    grid-column: span 2;
    max-width: 350px;
    margin: auto;
}

/* Responsive */

@media(max-width:991px){

    .dining-feature-grid{
        padding-left: 0;
        margin-top: 40px;
    }

    .dining-info-box h2{
        font-size: 40px;
    }
}

@media(max-width:767px){

    .dining-feature-grid{
        grid-template-columns: 1fr;
    }

    .feature-card:last-child{
        grid-column: auto;
        max-width: 100%;
    }

    .dining-info-box{
        padding: 30px;
    }

    .dining-info-box h2{
        font-size: 30px;
    }
}
/* =========================================
   WELLNESS & AYURVEDIC CENTRE
========================================= */

.yuvatel-wellness-section{
    padding: 70px 0;
    background: #ffffff;
}

.wellness-image{
    position: relative;
}

.wellness-image img{
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    height:450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.wellness-badge{
    position: absolute;
    bottom: 25px;
    left: 25px;

    background: rgba(255,255,255,0.95);

    padding: 15px 25px;
    border-radius: 50px;

    display: flex;
    align-items: center;
    gap: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.wellness-badge i{
    color: #c49a6c;
    font-size: 20px;
}

.wellness-badge span{
    font-weight: 600;
    color: #222;
}
.wellness-content{

    max-width:650px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    padding:30px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.15);
}
.wellness-content h2{
    color:#fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
     line-height:1.2;
}
.section-tag{
    color:#d4a65a;
}
.wellness-content p{
    color: #fff;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size:15px;
    text-align:justify;
}

.wellness-features{
    margin-top: 20px;
}

.wellness-feature{
    display: flex;
    gap: 15px;

    padding: 12px 15px;
    margin-bottom: 10px;

    background: #f8f7f4;
    border-radius: 16px;

    transition: .3s;
}

.wellness-feature:hover{
    transform: translateX(8px);
}

.wellness-feature i{
    width: 40px;
    height: 40px;

    background: #c49a6c;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;

    flex-shrink: 0;
}

.wellness-feature h5{
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
}

.wellness-feature p{
    margin: 0;
    color: #666;
    line-height: 1.7;
}
.wellness-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45));
}
/* Responsive */

@media(max-width:991px){

    .wellness-content{
        margin-top: 20px;
    }

    .wellness-content h2{
        font-size: 36px;
    }
}

@media(max-width:767px){

    .yuvatel-wellness-section{
        padding: 80px 0;
    }

    .wellness-content h2{
        font-size: 30px;
    }

    .wellness-feature{
        flex-direction: column;
        text-align: center;
    }

    .wellness-badge{
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}
.wellness-premium{

    background:
    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url('../images/yuvatel/wellness.jpg');

    background-size:cover;
    background-position:center;

    padding:120px 0;
}

.wellness-box{

    max-width:650px;

    background:rgba(255,255,255,.1);

    backdrop-filter:blur(15px);

    padding:50px;

    border-radius:25px;

    color:#fff;
}

/* =========================================
   AMENITIES
========================================= */

.yuvatel-amenities-section{
    padding: 110px 0;
    background: #f8f7f4;
}

.amenity-card{
    position: relative;

    height: 320px;

    border-radius: 24px;
    overflow: hidden;

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;

    padding: 30px;

    transition: all .5s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.amenity-card::before{
    content: '';
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.10) 100%
    );

    z-index: 1;
}

.amenity-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.amenity-card i,
.amenity-card h5{
    position: relative;
    z-index: 2;
}

.amenity-card i{
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d4a65a;
    color: #fff;

    border-radius: 50%;

    font-size: 22px;

    margin-bottom: 18px;

    box-shadow: 0 10px 25px rgba(212,166,90,.35);
}

.amenity-card h5{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.amenity-card h5::after{
    content: '';

    display: block;

    width: 55px;
    height: 3px;

    background: #d4a65a;

    margin-top: 12px;
    border-radius: 10px;
}

/* Content Wrapper */

.amenity-content{
    position: relative;
    z-index: 2;
}

/* =========================================
   BACKGROUND IMAGES
========================================= */

.amenity-frontdesk{
    background-image:url('../images/yuvatel/Gallery/gal-5.jpeg');
}

.amenity-wifi{
    background-image:url('../images/yuvatel/Gallery/yuvatel-1.jpeg');
}

.amenity-dining{
    background-image:url('../images/yuvatel/Gallery/img-5.jpeg');
}

.amenity-conference{
    background-image:url('../images/yuvatel/Gallery/gal-8.jpeg');
}

.amenity-auditorium{
    background-image:url('../images/yuvatel/Gallery/gal-7.jpeg');
}

.amenity-ayurveda{
    background-image:url('../images/yuvatel/Gallery/wellness2.jpg');
}

.amenity-parking{
    background-image:url('../images/yuvatel/Gallery/image-5.jpeg');
}

.amenity-housekeeping{
    background-image:url('../images/yuvatel/Gallery/housekeeping.jpg');
}

.amenity-support{
    background-image:url('../images/yuvatel/Gallery/dining.jpeg');
}

.amenity-booking{
    background-image:url('../images/yuvatel/Gallery/yuvatel-2.jpeg');
}

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

@media(max-width:991px){

    .amenity-card{
        height: 280px;
    }

    .amenity-card h5{
        font-size: 22px;
    }
}

@media(max-width:767px){

    .yuvatel-amenities-section{
        padding: 80px 0;
    }

    .amenity-card{
        height: 240px;
        padding: 25px;
    }

    .amenity-card h5{
        font-size: 20px;
    }
}
/* =========================================
   WHY CHOOSE YUVATEL
========================================= */

.yuvatel-why-section{
    padding: 70px 0;
    background: #fff;
}

.why-image{
    position: relative;
}

.why-image img{
    width: 100%;
    border-radius: 20px;
    height: 500px;
    object-fit: cover;

    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.why-badge{
    position: absolute;
    bottom: 20px;
    left: 20px;

    background: rgba(255,255,255,.95);

    padding: 10px 18px;
    font-size: 14px;
    border-radius: 50px;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(0,0,0,.10);
}

.why-content h2{
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 15px;
}

.why-content p{
    text-align: justify;
    color: #000;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.why-timeline{
    position: relative;
    padding-left: 28px;
}

.why-timeline::before{
    content: '';

    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;

    width: 2px;
    background: #d4a65a;
}

.why-item{
    position: relative;

    display: flex;
    align-items: center;

    margin-bottom: 12px;

    font-size: 15px;
    font-weight: 500;

    color: #333;
}

.why-item i{
    position: absolute;
    left: -35px;

    background: #fff;
    color: #d4a65a;

    font-size: 22px;
}

.why-item:last-child{
    margin-bottom: 0;
}

/* Responsive */

@media(max-width:991px){

    .why-image img{
        height: 450px;
    }

    .why-content h2{
        font-size: 36px;
    }
}

@media(max-width:767px){

    .yuvatel-why-section{
        padding: 80px 0;
    }

    .why-content h2{
        font-size: 30px;
    }

    .why-item{
        font-size: 16px;
    }
}
/* =========================================
   YUVATEL GALLERY
========================================= */

.yuvatel-gallery-section{
    padding: 120px 0;
    background: #f8f7f4;
}

.gallery-masonry{

    display: grid;

    grid-template-columns:
    repeat(4,1fr);

    grid-auto-rows: 250px;

    gap: 20px;
}

.gallery-item{
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    cursor: pointer;
}

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

    transition: .6s;
}

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

.gallery-overlay{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );

    display: flex;
    align-items: flex-end;

    padding: 25px;
}

.gallery-overlay h4{
    color: #fff;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

/* Masonry Sizes */

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

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

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

/* Hover Effect */

.gallery-item::after{
    content:'';

    position:absolute;
    inset:0;

    border:2px solid transparent;

    transition:.4s;
}

.gallery-item:hover::after{
    border-color:#d4a65a;
}

/* Responsive */

@media(max-width:991px){

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

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

@media(max-width:767px){

    .yuvatel-gallery-section{
        padding: 80px 0;
    }

    .gallery-masonry{
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large,
    .gallery-item.tall,
    .gallery-item.wide{
        grid-column: auto;
        grid-row: auto;
    }
}
/* =========================================
   TESTIMONIALS
========================================= */

.yuvatel-testimonial-section{

    padding: 120px 0;

    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.75)),
    url('../images/yuvatel/Gallery/image-2.jpeg');

    background-size: cover;
    background-position: center;

}

.yuvatel-testimonial-section .section-tag{
    color: #d4a65a;
}

.yuvatel-testimonial-section h2{
    color: #fff;
}

.yuvatel-testimonial-section p{
    color: rgba(255,255,255,.8);
}

.testimonial-card{

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 24px;

    padding: 40px;

    height: 100%;

    transition: .4s;
}

.testimonial-card:hover{
    transform: translateY(-8px);
}

.quote-icon{
    margin-bottom: 25px;
}

.quote-icon i{
    font-size: 42px;
    color: #d4a65a;
}

.testimonial-card p{
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.testimonial-footer{
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar{

    width: 60px;
    height: 60px;

    background: #d4a65a;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i{
    color: #fff;
    font-size: 22px;
}

.testimonial-footer h5{
    color: #fff;
    margin: 0;
    font-size: 18px;
}

.testimonial-footer span{
    color: rgba(255,255,255,.7);
    font-size: 14px;
}

/* Responsive */

@media(max-width:767px){

    .yuvatel-testimonial-section{
        padding: 80px 0;
    }

    .testimonial-card{
        padding: 30px;
    }
}
/* =========================================
   YUVATEL HIGHLIGHTS
========================================= */
.yuvatel-highlight-strip{
    padding:100px 0;
    background:#f8f7f4;
}

.highlight-strip-box{

    background:#fff;

    padding:40px 25px;

    border-radius:20px;

    text-align:center;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.4s;
}

.highlight-strip-box:hover{
    transform:translateY(-8px);
}

.highlight-strip-box i{
    font-size:42px;
    color:#d4a65a;
    margin-bottom:20px;
}

.highlight-strip-box h5{
    font-size:20px;
    font-weight:600;
    line-height:1.6;
    margin:0;
}
/* =========================================
   CONTACT SECTION
========================================= */

.yuvatel-contact-section{
    padding: 120px 0;
    background: #ffffff;
}

.contact-content h2{
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-content p{
    color: #000;
    line-height: 1.9;
    margin-bottom: 35px;
}

.contact-info{
    margin-bottom: 40px;
}

.contact-item{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i{

    width: 60px;
    height: 60px;

    background: #d4a65a;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    flex-shrink: 0;
}

.contact-item h5{
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
}

.contact-item p{
    margin: 0;
    color: #000;
    line-height: 1.8;
}

.contact-item a{
    color: #000;
    text-decoration: none;
}

.contact-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn{

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 15px 30px;

    border-radius: 50px;

    font-weight: 600;

    text-decoration: none;

    transition: .4s;
}

.call-btn{
    background: #d4a65a;
    color: #fff;
}

.call-btn:hover{
    background: #c09248;
    color: #fff;
}

.map-btn{
    border: 2px solid #d4a65a;
    color: #d4a65a;
}

.map-btn:hover{
    background: #d4a65a;
    color: #fff;
}

.contact-image img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

/* Responsive */

@media(max-width:991px){

    .contact-content h2{
        font-size: 40px;
    }

    .contact-image img{
        height: 450px;
    }
}

@media(max-width:767px){

    .yuvatel-contact-section{
        padding: 80px 0;
    }

    .contact-content h2{
        font-size: 32px;
    }

    .contact-buttons{
        flex-direction: column;
    }

    .contact-btn{
        justify-content: center;
    }

    .contact-image img{
        height: 350px;
    }
}
/* ===================================================
   YUVATEL RESPONSIVE IMPROVEMENTS
=================================================== */

/* ================= TABLET ================= */

@media (max-width:991px){

    section{
        padding:70px 0 !important;
    }

    .yuvatel-navbar .navbar-brand{
        font-size:24px;
    }

    .yuvatel-hero-section{
        min-height:70vh;
        padding:80px 20px;
    }

    .yuvatel-hero-content h1{
        font-size:52px;
    }

    .yuvatel-hero-content p{
        font-size:20px;
    }

    .section-title h2,
    .yuvatel-about-content h2,
    .room-content h3,
    .dining-info-box h2,
    .wellness-content h2,
    .why-content h2,
    .contact-content h2{
        font-size:34px;
    }

    .room-gallery img{
        height:180px;
    }

    .room-gallery img:first-child{
        height:280px;
    }

    .experience-badge,
    .wellness-badge,
    .why-badge{
        position:static;
        margin-top:20px;
    }

    .contact-image img{
        height:420px;
    }

}

/* ================= MOBILE ================= */

@media (max-width:767px){

    section{
        padding:60px 0 !important;
    }

    .yuvatel-navbar .navbar-brand{
        font-size:20px;
    }

    .yuvatel-hero-section{
        min-height:60vh;
        padding:70px 15px;
    }

    .hero-subtitle{
        font-size:12px;
        padding:8px 18px;
    }

    .yuvatel-hero-content h1{
        font-size:34px;
        line-height:1.2;
    }

    .yuvatel-hero-content p{
        font-size:16px;
        margin-bottom:25px;
    }

    .hero-buttons{
        gap:12px;
    }

    .hero-btn-primary,
    .hero-btn-outline{
        width:100%;
        max-width:300px;
    }

    .section-title h2,
    .yuvatel-about-content h2,
    .room-content h3,
    .dining-info-box h2,
    .wellness-content h2,
    .why-content h2,
    .contact-content h2{
        font-size:28px;
    }

    .yuvatel-about-content,
    .room-content,
    .contact-content{
        text-align:center;
    }

    .room-gallery{
        grid-template-columns:1fr;
    }

    .room-gallery img,
    .room-gallery img:first-child{
        height:220px;
    }

    .room-features{
        grid-template-columns:1fr;
    }

    .feature-item{
        font-size:15px;
    }

    .dining-feature-grid{
        grid-template-columns:1fr;
    }

    .feature-card:last-child{
        grid-column:auto;
        max-width:100%;
    }

    .wellness-feature{
        flex-direction:column;
        text-align:center;
    }

    .wellness-feature i{
        margin:auto;
    }

    .amenity-card{
        height:220px;
    }

    .gallery-masonry{
        grid-template-columns:1fr;
        grid-auto-rows:220px;
    }

    .gallery-item.large,
    .gallery-item.tall,
    .gallery-item.wide{
        grid-column:auto;
        grid-row:auto;
    }

    .testimonial-card{
        padding:25px;
    }

    .contact-item{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .contact-buttons{
        flex-direction:column;
    }

    .contact-btn{
        width:100%;
        justify-content:center;
    }

    .contact-image img{
        height:300px;
    }

}

/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

    .yuvatel-navbar .navbar-brand{
        font-size:18px;
    }

    .yuvatel-hero-content h1{
        font-size:28px;
    }

    .yuvatel-hero-content p{
        font-size:15px;
    }

    .section-title h2,
    .yuvatel-about-content h2,
    .room-content h3,
    .dining-info-box h2,
    .wellness-content h2,
    .why-content h2,
    .contact-content h2{
        font-size:24px;
    }

    .room-gallery img,
    .room-gallery img:first-child{
        height:180px;
    }

    .amenity-card{
        height:200px;
    }

    .gallery-masonry{
        grid-auto-rows:180px;
    }

    .contact-image img{
        height:250px;
    }

}
