/*====================================
GOOGLE FONT RESET
====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
	
}

html,
body{
    width:100%;
    overflow-x:hidden !important;
	font-family:'Poppins',sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*====================================
TOP BAR
====================================*/

.tphmanali-topbar{
    background:linear-gradient(90deg,#08111f,#102445);
    padding:12px 0;
    color:#fff;
}

.tphmanali-top-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.tphmanali-top-left,
.tphmanali-top-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.tphmanali-top-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
}

.tphmanali-top-item i{
    color:#d4af37;
}

.tphmanali-top-right a{
    color:#fff;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.tphmanali-top-right a:hover{
    color:#d4af37;
}

.tphmanali-social{
    display:flex;
    gap:12px;
}

.tphmanali-social a{
    width:38px;
    height:38px;
    border:1px solid rgba(212,175,55,.3);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4af37;
    transition:.4s;
}

.tphmanali-social a:hover{
    background:#d4af37;
    color:#fff;
}

/*====================================
HEADER
====================================*/

.tphmanali-header{
    position:relative;

    background:url('images/header_bg.jpg') center center/cover no-repeat;
	
}

.tphmanali-header-container{
    max-width:1300px;
    margin:auto;
    padding:25px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.tphmanali-logo img{
    height:95px;
    width:auto;
	content:url('logo1.png');

}

@media(max-width:768px){

.tphmanali-logo img{
    content:url('mobile-logo.png');
    height:95px;
    width:auto;
}

}
.tphmanali-contact-box{
    display:flex;
    gap:40px;
}

.tphmanali-contact-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.tphmanali-contact-icon{
    width:55px;
    height:55px;
    background:#d4af37;
    border-radius:15px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.tphmanali-contact-icon i{
    color:#fff;
    font-size:20px;
}

.tphmanali-contact-item span{
    display:block;
    font-size:15px;
    color:#fff;
}

.tphmanali-contact-item h4{
    font-size:22px;
    color:#fff;
    font-weight:600;
}

/* Desktop Book Button */

.tphmanali-book-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 35px;

    background:#d4af37;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    font-size:16px;

    transition:all .4s ease;

    box-shadow:0 8px 25px rgba(212,175,55,.35);

    animation:tphStayPulse 2.5s infinite;

    position:relative;

    overflow:hidden;
}

/* Hover */

.tphmanali-book-btn:hover{

    background:#c9a227;

    color:#fff;

    transform:translateY(-3px);
}

/* Pulse Animation */

@keyframes tphStayPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(212,175,55,.45);
    }

    50%{
        transform:scale(1.05);
        box-shadow:0 0 0 15px rgba(212,175,55,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(212,175,55,0);
    }
}
.tphmanali-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 25px;
    background:#d4af37;
    color:#fff;
    border-radius:50px;
    font-weight:600;
}

.tphmanali-badge i{
    font-size:16px;
}
/*====================================
NAVIGATION
====================================*/

.tphmanali-navbar{
    background:#020d2d;
    position:relative;
    z-index:999;

}

.tphmanali-nav-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:70px;

}

.tphmanali-menu{
    display:flex;
    align-items:center;
    gap:35px;

}

.tphmanali-menu li a{
 color:#fff;
    font-size:15px;
    font-weight:500;
    letter-spacing:.3px;
    text-transform:capitalize;
    padding:25px 0;
    position:relative;
    transition:.3s ease;

}
/* Active */

/*.tphmanali-menu li a.active{

    color:#d4af37;
}

.tphmanali-menu li a.active::after{

    width:100%;

    bottom:18px;
}*/

.tphmanali-menu li a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:18px;

    width:0;

    height:2px;

    background:#d4af37;

    border-radius:10px;

    transition:.4s ease;
}
.tphmanali-menu li a:hover{
    color:#d4af37;
}

.tphmanali-menu li a:hover::after{
    width:100%;
}

.tphmanali-nav-social{
    display:flex;
    gap:18px;
}

.tphmanali-nav-social{
    display:flex;
    align-items:center;
    gap:18px;
}

.tphmanali-nav-social a{
    color:#d4af37;
    font-size:18px;
    transition:.3s;
}

.tphmanali-nav-social a:hover{
    transform:translateY(-3px);
}

/*====================================
MENU TOGGLE
====================================*/

.tphmanali-menu-toggle{

    width:45px;
    height:45px;

    display:none;

    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    transition:.4s;
}

.tphmanali-menu.active li{

    animation: tphFade .5s ease forwards;
}
@keyframes tphFade{

from{
    opacity:0;
    transform:translateX(-15px);
}

to{
    opacity:1;
    transform:translateX(0);
}

}

.tphmanali-menu-toggle.open{

    transform:rotate(180deg);
}

.tphmanali-menu-toggle.open i:before{
    content:"\f00d";
}

/* Desktop */

@media(min-width:769px){

.tphmanali-menu{
    display:flex !important;
}

}

/* Mobile */

@media(max-width:768px){

.tphmanali-menu-toggle{
    display:flex !important;
    align-items:center;
    justify-content:center;

    width:45px;
    height:45px;

    background:none;
    border:none;

    color:#fff;
    font-size:24px;
    cursor:pointer;
}


.tphmanali-menu{

    position:absolute;
    top:100%;
    left:0;

    width:100%;

    background:#08111f;

    flex-direction:column;

    overflow:hidden;

    max-height:0;

    opacity:0;

    visibility:hidden;

    transform:translateY(-15px);

    transition:
    max-height .5s ease,
    opacity .4s ease,
    transform .4s ease;

    padding:0 25px;

    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.tphmanali-menu.active{

    max-height:500px;

    opacity:1;

    visibility:visible;

    transform:translateY(0);

    padding:15px 25px;
}

.tphmanali-menu li{
    width:100%;
}

.tphmanali-menu li a{

    display:block;

    width:100%;

    padding:15px 0;

    font-size:14px;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.tphmanali-menu li a:hover{
    padding-left:10px;
    color:#d4af37;
}

}
/*====================================
TABLET
====================================*/

@media(max-width:991px){

.tphmanali-top-container{
    flex-direction:column;
    gap:15px;
}

.tphmanali-header-container{
    flex-direction:column;
    gap:25px;
}

.tphmanali-contact-box{
    flex-direction:column;
    gap:20px;
}

.tphmanali-menu{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
}

}



/*====================================
MOBILE BOOK NOW + TOGGLE MENU
====================================*/

.tphmanali-mobile-book{
    display:none;
}

.tphmanali-menu-toggle{
    display:none;
    width:48px;
    height:48px;
    border:none;
    outline:none;
    cursor:pointer;
    border-radius:12px;
    background:#d4af37;
    color:#fff;
    font-size:22px;
    transition:.4s ease;
}

.tphmanali-menu-toggle:hover{
    background:#c59c1c;
}

.tphmanali-menu-toggle.open{
    transform:rotate(180deg);
}

/*====================================
TABLET
====================================*/

@media(max-width:991px){

.tphmanali-nav-social{
    display:none;
}

.tphmanali-menu{
    gap:20px;
}

.tphmanali-menu li a{
    font-size:14px;
}

}

/*====================================
MOBILE HEADER
====================================*/

@media(max-width:768px){

/* Hide Top Bar */

.tphmanali-topbar{
    display:block;
    padding:8px 0;

}


.tphmanali-top-container{
    justify-content:center;
}

.tphmanali-top-left{
    display:none;
}

.tphmanali-top-right{
    gap:15px;
}

.tphmanali-top-right a{
    font-size:12px;
}

.tphmanali-social{
    display:none;
}

/* Hide Contact Area */

.tphmanali-contact-box{
    display:none;
}

/* Hide Desktop Book Button */

.tphmanali-book-btn{
    display:none;
}



/*====================================
LOGO SWITCH
====================================*/

.tphmanali-logo{
    display:flex;
    align-items:center;
}

.tphmanali-logo-desktop{
    display:block;
    height:95px;
    width:auto;
}

.tphmanali-logo-mobile{
    display:none;
    height:55px;
    width:auto;
}

/* Mobile */

@media(max-width:768px){

.tphmanali-logo-desktop{
    display:none !important;
}

.tphmanali-logo-mobile{
    display:block !important;
}

}
@media(max-width:768px){

    .tphmanali-header-container{
        padding:15px;
    }

    .tphmanali-nav-container{
        padding:10px 15px;
    }

    .tphmanali-hero-container{
        padding:40px 15px;
        gap:30px;
    }

    .tphmanali-hero-content{
        width:100%;
        max-width:100%;
    }

    .tphmanali-hero-content h1{
        font-size:42px;
        line-height:1.15;
        word-break:break-word;
    }

    .tphmanali-hero-content p{
        font-size:18px;
        line-height:1.7;
    }

    .tphmanali-booking-card{
        width:100%;
        max-width:100%;
        margin:0 auto;
    }

    .tphmanali-stats{
        justify-content:center;
        flex-wrap:wrap;
    }
}
/* Navbar */

.tphmanali-navbar{
    position:relative;
    z-index:9999;
}

.tphmanali-nav-container{

    position:relative;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:12px 15px;
}

/* Mobile Book Now Button */

.tphmanali-mobile-book{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:160px;

    height:58px;

    padding:0 30px;

    background:#d4af37;

    color:#fff;

    font-size:18px;

    font-weight:600;

    text-decoration:none;

    border-radius:50px;

    box-shadow:0 8px 25px rgba(212,175,55,.35);

    transition:all .4s ease;

    animation:tphBookPulse 2s infinite;
}

/* Hover Effect */

.tphmanali-mobile-book:hover{

    background:#c9a227;

    transform:translateY(-3px) scale(1.05);

    color:#fff;
}
@media(max-width:768px){

    .tphmanali-mobile-book{

        min-width:140px;

        height:54px;

        font-size:16px;

        padding:0 25px;
    }

}

@media(min-width:769px){

    .tphmanali-mobile-book{

        min-width:180px;

        height:60px;

        font-size:18px;
    }

}
/* Pulse Animation */

@keyframes tphBookPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(212,175,55,.5);
    }

    50%{
        transform:scale(1.06);
        box-shadow:0 0 0 15px rgba(212,175,55,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(212,175,55,0);
    }
}

/* Toggle Button */

.tphmanali-menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Hide Social */

.tphmanali-nav-social{
    display:none;
}

/* Mobile Menu */

.tphmanali-menu{

    position:absolute;

    top:100%;
    left:0;

    width:100%;

    background:#08111f;

    flex-direction:column;

    overflow:hidden;

    max-height:0;

    opacity:0;

    visibility:hidden;

    transform:translateY(-15px);

    transition:
    max-height .5s ease,
    opacity .4s ease,
    transform .4s ease;

    padding:0 20px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.20);
}

/* Open Menu */

.tphmanali-menu.active{

    max-height:600px;

    opacity:1;

    visibility:visible;

    transform:translateY(0);

    padding:15px 20px;
}

/* Menu Items */

.tphmanali-menu li{
    width:100%;
}

.tphmanali-menu li a{

    display:block;

    width:100%;

    color:#fff;

    font-size:14px;
    font-weight:500;

    padding:15px 0;

    border-bottom:
    1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.tphmanali-menu li:last-child a{
    border-bottom:none;
}

.tphmanali-menu li a:hover{

    color:#d4af37;

    padding-left:10px;
}

/* Menu Animation */

.tphmanali-menu.active li{

    animation:tphMenuFade .4s ease forwards;
}

@keyframes tphMenuFade{

from{
    opacity:0;
    transform:translateX(-15px);
}

to{
    opacity:1;
    transform:translateX(0);
}

}

}


/*====================================
HERO SECTION
====================================*/

.tphmanali-hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
}

.tphmanali-slider{
    position:absolute;
    inset:0;
}

.tphmanali-slide{
    position:absolute;
    inset:0;

    opacity:0;

    transition:opacity 1.5s ease;
}

.tphmanali-slide.active{
    opacity:1;
    z-index:1;
}

.tphmanali-slide img{
    width:100%;
    height:100%;
    object-fit:cover;

    animation:tphZoom 8s linear infinite;
}

@keyframes tphZoom{

from{
    transform:scale(1);
}

to{
    transform:scale(1.12);
}

}

.tphmanali-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.65),
    rgba(0,0,0,.35)
    );

    z-index:2;
}

.tphmanali-hero-container{

    position:relative;
    z-index:3;

    max-width:1300px;

    width:100%;

    margin:0 auto;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    padding:80px 20px;

    overflow:hidden;
}
.tphmanali-hero-content{
    max-width:750px;
    color:#fff;
}

.tphmanali-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 24px;

    background:#d4af37;

    color:#fff;

    border-radius:50px;

    margin-bottom:25px;
}

.tphmanali-hero-content h1{

    font-family:'Cinzel',serif;

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;
}

.tphmanali-hero-content p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:35px;
}
.tphmanali-hero-btns{
    display:flex;
    gap:20px;
}

.tphmanali-btn-primary{

    background:#d4af37;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;
}

.tphmanali-btn-outline{

    border:2px solid #fff;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;
}

@media(max-width:991px){

.tphmanali-hero-container{

    flex-direction:column;

    justify-content:center;

    text-align:center;

    padding:10px 20px;
}

.tphmanali-hero-content h1{
    font-size:48px;
}

}

@media(max-width:768px){

.tphmanali-hero-content h1{
    font-size:36px;
}

.tphmanali-hero-content p{
    font-size:16px;
}

.tphmanali-hero-btns{
    flex-direction:column;
}

}

@media(max-width:768px){

.tphmanali-hero-container{

    min-height:auto;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    gap:25px;

    padding:40px 15px 60px;

    width:100%;
}

.tphmanali-hero-content{

    width:100%;

    max-width:100%;
}

.tphmanali-hero-content h1{

    font-size:42px;

    line-height:1.15;

    margin-bottom:20px;
}

.tphmanali-booking-card{

    width:100%;

    max-width:100%;

    margin:0 auto;
}

}
/* Stats */

.tphmanali-stats{
    display:flex;
    gap:40px;
}

.tphmanali-stat-box h3{
    font-size:34px;
    color:#d4af37;
}

.tphmanali-stat-box span{
    color:#fff;
}

/*====================================
BOOKING CARD
====================================*/

.tphmanali-booking-card{

    width:420px;

    background:#fff;

    padding:35px;

    border-radius:24px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);

    position:relative;
    z-index:5;
}

.tphmanali-booking-card h3{

    text-align:center;

    margin-bottom:30px;

    font-size:30px;

    color:#08111f;

    font-weight:700;
}

.tphmanali-form-group{
    margin-bottom:18px;
}

.tphmanali-form-group label{

    display:block;

    margin-bottom:8px;

    font-size:15px;

    font-weight:600;

    color:#08111f;
}

.tphmanali-form-group input,
.tphmanali-form-group select{

    width:100%;

    height:58px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 15px;

    font-size:15px;

    outline:none;

    transition:.3s;
}

.tphmanali-form-group input:focus,
.tphmanali-form-group select:focus{

    border-color:#d4af37;
}

.tphmanali-booking-card button{

    width:100%;

    height:58px;

    border:none;

    background:#d4af37;

    color:#fff;

    font-size:16px;

    font-weight:600;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;
}

.tphmanali-booking-card button:hover{

    background:#08111f;
}
/* Responsive */

@media(max-width:991px){

.tphmanali-hero{
    height:auto;
    padding:120px 0;
}

.tphmanali-hero-container{
    flex-direction:column;
    gap:40px;
    text-align:center;
}

.tphmanali-booking-card{
    width:100%;
    max-width:500px;
}

.tphmanali-stats{
    justify-content:center;
}

}

@media(max-width:768px){

.tphmanali-hero-content h1{
    font-size:42px;
}

.tphmanali-hero-buttons{
    flex-direction:column;
}

.tphmanali-stats{
    flex-wrap:wrap;
    gap:20px;
}
.tphmanali-booking-card{

    padding:25px;
    margin-top:30px;
}

.tphmanali-booking-card h3{

    font-size:24px;
}

}

/*====================================
ABOUT SECTION
====================================*/

.tphmanali-about{
    padding:120px 0;
    background:#fff;
}

.tphmanali-about-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* Images */

.tphmanali-about-images{
    position:relative;
}

.tphmanali-about-img-large img{
    width:100%;
    border-radius:25px;
    display:block;
}

.tphmanali-about-img-small{
    position:absolute;
    bottom:-40px;
    right:-40px;
    width:260px;
}

.tphmanali-about-img-small img{
    width:100%;
    border-radius:20px;
    border:8px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.tphmanali-exp-box{
    position:absolute;
    top:40px;
    left:-30px;
    background:#d4af37;
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    width:180px;
    box-shadow:0 15px 35px rgba(212,175,55,.35);
}

.tphmanali-exp-box h3{
    font-size:42px;
    margin-bottom:8px;
}

/* Content */

.tphmanali-section-tag{
    color:#d4af37;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
    display:block;
}

.tphmanali-about-content h2{
    font-size:52px;
    line-height:1.2;
    font-family:'Cinzel',serif;
    margin-bottom:25px;
    color:#08111f;
}

.tphmanali-about-content h2 span{
    display:block;
    color:#d4af37;
}

.tphmanali-about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

/* Features */

.tphmanali-feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:40px;
}

.tphmanali-feature-item{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.tphmanali-feature-item i{
    width:60px;
    height:60px;
    background:#d4af37;
    color:#fff;
    border-radius:15px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
}

.tphmanali-feature-item h4{
    margin-bottom:6px;
    color:#08111f;
}

.tphmanali-feature-item p{
    margin:0;
    font-size:14px;
}

/* Button */

.tphmanali-about-btn{
    display:inline-block;
    padding:18px 38px;
    background:#08111f;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.tphmanali-about-btn:hover{
    background:#d4af37;
}

/* Responsive */

@media(max-width:991px){

.tphmanali-about-container{
    grid-template-columns:1fr;
}

.tphmanali-about-images{
    margin-bottom:50px;
}

}

@media(max-width:768px){

.tphmanali-about{
    padding:80px 0;
}

.tphmanali-about-content h2{
    font-size:36px;
}

.tphmanali-feature-grid{
    grid-template-columns:1fr;
}

.tphmanali-about-img-small{
    width:180px;
    right:0;
    bottom:-20px;
}

.tphmanali-exp-box{
    left:10px;
    width:140px;
}

}
/*====================================
ROOMS SECTION
====================================*/

.tphmanali-rooms{
    padding:120px 0;
    background:#f8fafc;
}

.tphmanali-section-header{
    max-width:800px;
    margin:0 auto 70px;
    text-align:center;
    padding:0 20px;
}

.tphmanali-section-header span{
    color:#d4af37;
    font-weight:600;
    letter-spacing:1px;
}

.tphmanali-section-header h2{
    font-size:52px;
    margin:15px 0;
    color:#08111f;
    font-family:'Cinzel',serif;
}

.tphmanali-section-header p{
    color:#666;
    line-height:1.8;
}

.tphmanali-rooms-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.tphmanali-room-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.tphmanali-room-card:hover{
    transform:translateY(-10px);
}

.tphmanali-room-image{
    position:relative;
    overflow:hidden;
}

.tphmanali-room-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.tphmanali-room-card:hover img{
    transform:scale(1.08);
}

.tphmanali-room-price{
    position:absolute;
    top:20px;
    right:20px;
    background:#d4af37;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
}

.tphmanali-room-content{
    padding:30px;
}

.tphmanali-room-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:#08111f;
}

.tphmanali-room-content ul{
    margin-bottom:20px;
}

.tphmanali-room-content ul li{
    margin-bottom:10px;
    color:#555;
}

.tphmanali-room-content ul li i{
    color:#d4af37;
    margin-right:10px;
}

.tphmanali-room-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.tphmanali-room-btn{
    display:inline-block;
    padding:15px 30px;
    background:#08111f;
    color:#fff;
    border-radius:50px;
    transition:.4s;
}

.tphmanali-room-btn:hover{
    background:#d4af37;
}

/* Responsive */

@media(max-width:991px){

.tphmanali-rooms-container{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.tphmanali-rooms{
    padding:80px 0;
}

.tphmanali-section-header h2{
    font-size:36px;
}

.tphmanali-rooms-container{
    grid-template-columns:1fr;
}

}


/*====================================
AMENITIES SECTION
====================================*/

.tphmanali-amenities{
    padding:120px 0;
    background:#ffffff;
}

.tphmanali-amenities-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.tphmanali-amenity-card{
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid #f1f1f1;
}

.tphmanali-amenity-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.tphmanali-amenity-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;

    background:linear-gradient(
    135deg,
    #d4af37,
    #f5d06f);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;
}

.tphmanali-amenity-icon i{
    color:#fff;
    font-size:34px;
}

.tphmanali-amenity-card h3{
    font-size:18px;
    color:#08111f;
    margin-bottom:15px;
}

.tphmanali-amenity-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* Responsive */

@media(max-width:1200px){

.tphmanali-amenities-container{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:991px){

.tphmanali-amenities-container{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.tphmanali-amenities{
    padding:80px 0;
}

.tphmanali-amenities-container{
    grid-template-columns:1fr;
}

.tphmanali-amenity-card{
    padding:30px 25px;
}

}
/*====================================
GALLERY SECTION
====================================*/

.tphmanali-gallery{
    padding:120px 0;
    background:#f8fafc;
}

.tphmanali-gallery-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:250px;
    gap:20px;
}

.tphmanali-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    display:block;
}

.tphmanali-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.tphmanali-gallery-item:hover img{
    transform:scale(1.1);
}

.tphmanali-large{
    grid-column:span 2;
    grid-row:span 2;
}

.tphmanali-wide{
    grid-column:span 2;
}

.tphmanali-gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(8,17,31,.75);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    transition:.4s;
}

.tphmanali-gallery-item:hover .tphmanali-gallery-overlay{
    opacity:1;
}

.tphmanali-gallery-overlay i{
    width:70px;
    height:70px;
    background:#d4af37;
    color:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}

/* Responsive */

@media(max-width:991px){

.tphmanali-gallery-container{
    grid-template-columns:repeat(2,1fr);
}

.tphmanali-large{
    grid-column:span 2;
}

.tphmanali-wide{
    grid-column:span 2;
}

}

@media(max-width:768px){

.tphmanali-gallery{
    padding:80px 0;
}

.tphmanali-gallery-container{
    grid-template-columns:1fr;
    grid-auto-rows:280px;
}

.tphmanali-large,
.tphmanali-wide{
    grid-column:auto;
    grid-row:auto;
}

}

/*====================================
TESTIMONIALS SECTION
====================================*/

.tphmanali-testimonials{
    padding:120px 0;
    background:#ffffff;
}

.tphmanali-testimonial-slider{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    overflow:hidden;
}

.tphmanali-testimonial-track{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.tphmanali-testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid #f3f3f3;
}

.tphmanali-testimonial-card:hover{
    transform:translateY(-10px);
}

.tphmanali-review-stars{
    color:#d4af37;
    font-size:22px;
    margin-bottom:20px;
}

.tphmanali-testimonial-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.tphmanali-review-author{
    display:flex;
    align-items:center;
    gap:15px;
}

.tphmanali-review-author img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.tphmanali-review-author h4{
    color:#08111f;
    margin-bottom:5px;
}

.tphmanali-review-author span{
    color:#777;
    font-size:14px;
}

.tphmanali-google-rating{
    text-align:center;
    margin-bottom:50px;
}

.tphmanali-google-rating h3{
    font-size:48px;
    color:#d4af37;
}

.tphmanali-google-rating p{
    color:#666;
    margin-top:10px;
}

/* Responsive */

@media(max-width:991px){

.tphmanali-testimonial-track{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.tphmanali-testimonials{
    padding:80px 0;
}

.tphmanali-testimonial-track{
    grid-template-columns:1fr;
}

.tphmanali-testimonial-card{
    padding:30px;
}

}

/*====================================
SPECIAL OFFER SECTION
====================================*/

.tphmanali-offer{
    position:relative;
    padding:140px 20px;
    background:url('images/offer-bg.jpg') center center/cover;
    text-align:center;
    overflow:hidden;
}

.tphmanali-offer-overlay{
    position:absolute;
    inset:0;
    background:rgba(8,17,31,.80);
}

.tphmanali-offer-container{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    color:#fff;
}

.tphmanali-offer-tag{
    display:inline-block;
    background:#d4af37;
    padding:12px 25px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
}

.tphmanali-offer h2{
    font-size:60px;
    font-family:'Cinzel',serif;
    margin-bottom:25px;
}

.tphmanali-offer h2 span{
    display:block;
    color:#d4af37;
}

.tphmanali-offer p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
}

.tphmanali-offer-features{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin-bottom:40px;
}

.tphmanali-offer-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;
}

.tphmanali-offer-item i{
    color:#d4af37;
}

.tphmanali-offer-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.tphmanali-offer-btn{
    background:#d4af37;
    color:#fff;
    padding:18px 40px;
    border-radius:50px;
    font-weight:600;
}

.tphmanali-offer-btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:18px 40px;
    border-radius:50px;
}

/*====================================
BOOKING CTA SECTION
====================================*/

.tphmanali-booking-cta{
    background:#08111f;
    padding:80px 0;
}

.tphmanali-booking-cta-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.tphmanali-booking-content span{
    color:#d4af37;
    font-weight:600;
}

.tphmanali-booking-content h2{
    font-size:48px;
    color:#fff;
    margin:15px 0;
    font-family:'Cinzel',serif;
}

.tphmanali-booking-content p{
    color:#cbd5e1;
    line-height:1.8;
}

.tphmanali-booking-btn{
display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:240px;

    height:60px;

    padding:0 35px;

    background:#d4af37;

    color:#fff;

    font-size:18px;

    font-weight:600;

    text-decoration:none;

    border-radius:50px;

    white-space:nowrap;

    transition:.4s ease;
}
.tphmanali-booking-btn:hover{

    background:#006666;

    transform:translateY(-3px);
}


/* Responsive */

@media(max-width:991px){

.tphmanali-offer h2{
    font-size:45px;
}

.tphmanali-booking-cta-container{
    flex-direction:column;
    text-align:center;
}

}

@media(max-width:768px){

.tphmanali-offer{
    padding:90px 20px;
}

.tphmanali-offer h2{
    font-size:34px;
}

.tphmanali-booking-content h2{
    font-size:32px;
}
.tphmanali-booking-btn{

    min-width:220px;

    font-size:16px;

    height:55px;
}
}


/*====================================
CONTACT SECTION
====================================*/

.phmanali-contact{
    padding:120px 0;
    background:#f8fafc;
}

.phmanali-contact-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
}

.phmanali-contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.phmanali-contact-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
}

.phmanali-contact-card:hover{
    transform:translateY(-5px);
}

.phmanali-contact-icon{
    width:65px;
    height:65px;
    min-width:65px;
    background:linear-gradient(135deg,#d4af37,#f5d06f);
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.phmanali-contact-icon i{
    color:#fff;
    font-size:24px;
}

.phmanali-contact-card h4{
    color:#08111f;
    margin-bottom:6px;
    font-size:20px;
}

.phmanali-contact-card p{
    color:#666;
    line-height:1.7;
}

/*====================================
CONTACT FORM
====================================*/

.phmanali-contact-form{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.phmanali-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.phmanali-contact-form input,
.phmanali-contact-form textarea{
    width:100%;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:16px 18px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.phmanali-contact-form input:focus,
.phmanali-contact-form textarea:focus{
    border-color:#d4af37;
}

.phmanali-contact-form textarea{
    height:180px;
    resize:none;
}

.phmanali-contact-form button{
    border:none;
    background:#d4af37;
    color:#fff;
    padding:18px 40px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    margin-top:20px;
    transition:.4s;
}

.phmanali-contact-form button:hover{
    background:#08111f;
}

/*====================================
GOOGLE MAP
====================================*/

.phmanali-map{
    line-height:0;
}

.phmanali-map iframe{
    width:100%;
    height:500px;
    border:none;
}

/*====================================
FOOTER
====================================*/

.phmanali-footer{
    background:#08111f;
    color:#fff;
}

.phmanali-footer-container{
    max-width:1300px;
    margin:auto;
    padding:100px 20px 70px;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
}

.phmanali-footer-about img{
    max-width:220px;
    margin-bottom:25px;
}

.phmanali-footer-about p{
    color:#cbd5e1;
    line-height:1.9;
}

.phmanali-footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.phmanali-footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#d4af37;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.4s;
}

.phmanali-footer-social a:hover{
    transform:translateY(-4px);
}

.phmanali-footer h4{
    margin-bottom:25px;
    font-size:22px;
}

.phmanali-footer-links ul{
    list-style:none;
}

.phmanali-footer-links li{
    margin-bottom:15px;
}

.phmanali-footer-links a{
    color:#cbd5e1;
    transition:.3s;
}

.phmanali-footer-links a:hover{
    color:#d4af37;
    padding-left:6px;
}

.phmanali-footer-contact p{
    margin-bottom:18px;
    color:#cbd5e1;
    line-height:1.8;
}

.phmanali-footer-contact i{
    color:#d4af37;
    margin-right:10px;
}

.phmanali-footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:25px;
}

.phmanali-footer-bottom p{
    color:#cbd5e1;
}

/*====================================
WHATSAPP BUTTON
====================================*/

.phmanali-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    z-index:9999;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:.4s;
}

.phmanali-whatsapp:hover{
    transform:scale(1.1);
}

/*====================================
TABLET
====================================*/

@media(max-width:991px){

.phmanali-contact-container{
    grid-template-columns:1fr;
}

.phmanali-footer-container{
    grid-template-columns:1fr 1fr;
}

}

/*====================================
MOBILE
====================================*/

@media(max-width:768px){

.phmanali-contact{
    padding:80px 0;
}

.phmanali-form-row{
    grid-template-columns:1fr;
}

.phmanali-contact-form{
    padding:25px;
}

.phmanali-footer-container{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.phmanali-footer-social{
    justify-content:center;
}

.phmanali-whatsapp{
    width:55px;
    height:55px;
    font-size:28px;
    right:15px;
    bottom:15px;
}

}


/*====================================
TPH GALLERY
====================================*/

.tphgallery-section{
    padding:100px 0;
    background:#fff;
}

.tphgallery-heading{
    text-align:center;
    margin-bottom:40px;
}

.tphgallery-heading span{
    color:#d4af37;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.tphgallery-heading h2{
    font-size:48px;
    color:#08111f;
    margin-top:10px;
}

.tphgallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:40px;
}

.tphgallery-filter button{
    border:none;
    background:#f4f4f4;
    padding:12px 30px;
    border-radius:50px;
    cursor:pointer;
    transition:.4s;
    font-weight:500;
}

.tphgallery-filter button.active,
.tphgallery-filter button:hover{
    background:#d4af37;
    color:#fff;
}

.tphgallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.tphgallery-item{
    overflow:hidden;
    border-radius:12px;
    position:relative;
}

.tphgallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.7s;
    display:block;
}

.tphgallery-item:hover img{
    transform:scale(1.08);
}

.tphgallery-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
    opacity:0;
    transition:.4s;
}

.tphgallery-item:hover::before{
    opacity:1;
}

@media(max-width:991px){

.tphgallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.tphgallery-section{
    padding:70px 0;
}

.tphgallery-heading h2{
    font-size:32px;
}

.tphgallery-grid{
    grid-template-columns:1fr;
}

.tphgallery-item img{
    height:240px;
}

.tphgallery-filter{
    gap:10px;
}

.tphgallery-filter button{
    padding:10px 20px;
    font-size:14px;
}

}
/*====================================
GLOBAL CONTAINER
====================================*/

.tph-container{
    width:100%;
    max-width:1300px;
    margin:0 auto;
    padding-left:15px;
    padding-right:15px;
}

/* Large Desktop */
@media (max-width:1400px){
    .tph-container{
        max-width:1200px;
    }
}

/* Laptop */
@media (max-width:1200px){
    .tph-container{
        max-width:1140px;
    }
}

/* Tablet */
@media (max-width:992px){
    .tph-container{
        max-width:960px;
        padding-left:20px;
        padding-right:20px;
    }
}

/* Mobile */
@media (max-width:768px){
    .tph-container{
        max-width:100%;
        padding-left:15px;
        padding-right:15px;
    }
}

/* =========================
SPECIAL OFFER
========================= */

.tphoffer-section{
    padding:120px 0;
    background:#f8f8f8;
}

.tphoffer-heading{
    text-align:center;
    margin-bottom:60px;
}

.tphoffer-heading span{
    display:inline-block;
    color:#c6783f;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;

}

.tphoffer-heading h2{
    font-size:58px;
    font-weight:700;
    line-height:1.2;
    color:#08111f;
    margin:0;
    font-family:'Cinzel',serif;
}

.tphoffer-card{

  background:#f3f3f3;

    padding:35px;

    border-radius:4px;

    height:280px; /* fixed card height */

    display:flex;
    flex-direction:column;

    transition:.4s;

}

.tphoffer-card:hover{

    background:#fff;

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.tphoffer-card h3{

    font-size:20px;

    line-height:1.35;

    font-weight:600;

    color:#222;

    height:60px; /* fixed heading area */

    overflow:hidden;

    margin-bottom:20px;

}

.tphoffer-card p{

    font-size:18px;

    line-height:1.7;

    color:#666;

    margin-bottom:6px;
}

.tphoffer-content{

    height:90px;

    overflow:hidden;
}

.tphoffer-card a{

    margin-top:auto;

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-size:18px;

    font-weight:500;

    color:#111;

    text-decoration:none;
}

.tphoffer-card a:hover{
    color:#c6783f;
}

.tphoffer-slider{

    padding-bottom:60px;
}

.tphoffer-btn-wrap{
    text-align:center;
    margin-top:50px;
}



.tphoffer-btn{

    display:inline-block;

    padding:18px 55px;

    background:#08111f;

    color:#fff;

    font-size:18px;

    font-weight:600;

    text-decoration:none;

    border-radius:4px;

    transition:.4s;
}

.tphoffer-btn:hover{

    background:#c6783f;
    color:#fff;
}
@media(max-width:768px){

.tphoffer-section{
    padding:70px 0;
}

.tphoffer-heading h2{
    font-size:32px;
}

.tphoffer-card{
    padding:25px;
}

.tphoffer-card h3{
    font-size:22px;
}

}

/* =========================
SWIPER BULLETS
========================= */

.tphoffer-slider .swiper-pagination{

    position:relative;

    margin-top:40px;

    bottom:0 !important;
}

.tphoffer-slider .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#d8d8d8;

    opacity:1;

    margin:0 6px !important;

    transition:.4s;
}

.tphoffer-slider .swiper-pagination-bullet-active{

    background:#c6783f;

    transform:scale(1.2);
}
/* ===================================
MOBILE FIXED ACTION BAR
=================================== */

.tphmobile-fixed-bar{

    display:none;

    position:fixed;

    bottom:0;
    left:0;

    width:100%;

    z-index:99999;

    background:#3b2b18;

    box-shadow:0 -5px 20px rgba(0,0,0,.15);
}

.tphmobile-item{

    flex:1;

    text-align:center;

    padding:12px 5px;

    color:#fff;

    text-decoration:none;

    border-right:1px solid rgba(255,255,255,.15);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:5px;

    transition:.3s;
}

.tphmobile-item:last-child{
    border-right:none;
}

.tphmobile-item i{

    font-size:20px;

    color:#d4af37;
}

.tphmobile-item span{

    font-size:13px;

    font-weight:600;
}

.tphmobile-item:hover{

    background:#d4af37;
    color:#fff;
}

.tphmobile-item:hover i{
    color:#fff;
}

@media(max-width:768px){

.tphmobile-fixed-bar{

    display:flex;

    height:65px;

    background:#4b3723;
}

.tphmobile-item{

    color:#fff;

    font-size:13px;
}

.tphmobile-item i{

    font-size:18px;

    color:#fff;
}

}

/* ===================================
TESTIMONIAL SECTION
=================================== */

.tphtestimonial-section{

    padding:120px 0;

    background:#f8f8f8;
}

.tphtestimonial-heading{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;
}

.tphtestimonial-heading span{

    color:#d4af37;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;
}

.tphtestimonial-heading h2{

    font-size:58px;

    color:#08111f;

    margin-top:15px;

    font-family:'Cinzel',serif;
}

.tphtestimonial-heading p{

    color:#666;

    margin-top:15px;

    line-height:1.8;
}

.tphtestimonial-card{

    background:#fff;

    padding:40px;

    border-radius:15px;

    height:100%;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.tphtestimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.tphtestimonial-stars{

    color:#d4af37;

    font-size:22px;

    margin-bottom:20px;
}

.tphtestimonial-card p{

    font-size:17px;

    line-height:1.9;

    color:#555;

    margin-bottom:30px;
}

.tphtestimonial-user{

    display:flex;

    align-items:center;

    gap:15px;
}

.tphtestimonial-user img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;
}

.tphtestimonial-user h4{

    font-size:20px;

    margin-bottom:5px;

    color:#08111f;
}

.tphtestimonial-user span{

    color:#777;
}

.tphtestimonial-pagination{

    position:absolute !important;
    bottom:0 !important;
    left:0;
    width:100%;

}

.tphtestimonial-pagination .swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:#d4af37;

    opacity:.4;

    margin:0 6px !important;

    transition:.4s;

}

.tphtestimonial-pagination .swiper-pagination-bullet-active{

    opacity:1;

    transform:scale(1.3);

}

@media(max-width:768px){

.tphtestimonial-section{

    padding:80px 0;
}

.tphtestimonial-heading h2{

    font-size:34px;
}

.tphtestimonial-card{
margin-bottom:20px;

    padding:25px;
}

.tphtestimonial-card p{

    font-size:15px;
}

.tphtestimonial-user img{

    width:60px;
    height:60px;
}

}

.tphtestimonial-slider{
padding-bottom:0;

}

.tphtestimonial-slider .swiper-wrapper{
    align-items:stretch;
}

.tphtestimonial-slider .swiper-slide{
    height:auto;
}

.tphtestimonial-section .swiper{
    overflow:hidden;
}

.tphtestimonial-pagination{
position:relative !important;

    bottom:auto !important;

    margin-top:40px;

    text-align:center;
}

/*====================================
WHY CHOOSE US
=====================================*/

.tphwhy-section{

    padding:120px 0;

    background:#ffffff;
}

.tphwhy-heading{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;
}

.tphwhy-heading span{

    color:#d4af37;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;
}

.tphwhy-heading h2{

    font-size:56px;

    color:#08111f;

    margin:15px 0;

    font-family:'Cinzel', serif;
}

.tphwhy-heading p{

    font-size:18px;

    color:#666;

    line-height:1.8;
}

.tphwhy-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.tphwhy-card{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:15px;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.tphwhy-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.tphwhy-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#d4af37;

    display:flex;

    align-items:center;

    justify-content:center;
}

.tphwhy-icon i{

    font-size:35px;

    color:#fff;
}

.tphwhy-card h3{

    font-size:24px;

    color:#08111f;

    margin-bottom:15px;
}

.tphwhy-card p{

    color:#666;

    line-height:1.8;
}

@media(max-width:991px){

.tphwhy-grid{

    grid-template-columns:repeat(2,1fr);
}

.tphwhy-heading h2{

    font-size:42px;
}

}

@media(max-width:768px){

.tphwhy-section{

    padding:80px 0;
}

.tphwhy-grid{

    grid-template-columns:1fr;
}

.tphwhy-heading h2{

    font-size:32px;
}

.tphwhy-card{

    padding:30px 25px;
}

}

/* Gallery Button */

.tphgallery-btn-wrap{

    text-align:center;

    margin-top:60px;
}

.tphgallery-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 40px;

    background:#d4af37;

    color:#fff;

    font-size:17px;

    font-weight:600;

    text-decoration:none;

    border-radius:50px;

    transition:.4s ease;
}

.tphgallery-btn i{

    transition:.4s ease;
}

.tphgallery-btn:hover{

    background:#08111f;

    transform:translateY(-3px);
}

.tphgallery-btn:hover i{

    transform:translateX(5px);
}

@media(max-width:768px){

.tphgallery-btn{

    padding:15px 30px;

    font-size:15px;
}

}
/*====================================
BOOKING OFFER CTA
=====================================*/

.tphoffercta-section{

    position:relative;

    padding:140px 0;

    background:url('images/hero-2.jpg') center center/cover no-repeat;

    overflow:hidden;
}

.tphoffercta-overlay{

    position:absolute;

    inset:0;

    background:rgba(8,17,31,.80);
}

.tphoffercta-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:900px;

    margin:auto;

    color:#fff;
}

/* Hanging Offer Badge */

.tphoffercta-badge{

    position:absolute;

    top:-60px;

    right:120px;

    z-index:5;
}

.tphoffercta-badge span{

    display:inline-block;

    background:#e63946;

    color:#fff;

    padding:14px 22px;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    letter-spacing:1px;

    box-shadow:0 10px 30px rgba(230,57,70,.4);

    animation:tphSwing 3s ease-in-out infinite;
}

.tphoffercta-badge span::before{

    content:"";

    position:absolute;

    width:2px;

    height:80px;

    background:#fff;

    top:-80px;

    left:50%;
}

/* Subtitle */

.tphoffercta-subtitle{

    display:inline-block;

    color:#d4af37;

    font-size:15px;

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:20px;
}

/* Heading */

.tphoffercta-content h2{

    font-size:68px;

    line-height:1.15;

    margin-bottom:25px;

    font-family:'Cinzel',serif;
}

.tphoffercta-content h2 span{

    display:block;

    color:#d4af37;
}

/* Text */

.tphoffercta-content p{

    font-size:20px;

    line-height:1.9;

    max-width:800px;

    margin:0 auto 35px;
}

/* Features */

.tphoffercta-features{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    margin-bottom:40px;
}

.tphoffercta-item{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:16px;
}

.tphoffercta-item i{

    color:#d4af37;
}

/* Buttons */

.tphoffercta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.tphoffercta-btn{

    background:#d4af37;

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;
}

.tphoffercta-btn:hover{

    background:#fff;

    color:#08111f;
}

.tphoffercta-btn-outline{

    border:2px solid #fff;

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;
}

.tphoffercta-btn-outline:hover{

    background:#fff;

    color:#08111f;
}

/* Swing Animation */

@keyframes tphSwing{

    0%{
        transform:rotate(-8deg);
    }

    50%{
        transform:rotate(8deg);
    }

    100%{
        transform:rotate(-8deg);
    }
}

/* Tablet */

@media(max-width:991px){

.tphoffercta-content h2{
    font-size:48px;
}

.tphoffercta-badge{
    right:40px;
}

}

/* Mobile */

@media(max-width:768px){

.tphoffercta-section{
    padding:90px 0;
}

.tphoffercta-content h2{
    font-size:34px;
}

.tphoffercta-content p{
    font-size:16px;
}

.tphoffercta-badge{

    position:relative;

    top:auto;

    right:auto;

    margin-bottom:25px;
}

.tphoffercta-features{
    gap:15px;
}

.tphoffercta-buttons{
    flex-direction:column;
}

.tphoffercta-btn,
.tphoffercta-btn-outline{
    width:100%;
}
}



/*====================================
BREADCRUMB SECTION
=====================================*/

.tphbreadcrumb-section{

    position:relative;

    padding:93px 0 100px;

    background:url('images/breadcreamb.png') center center/cover no-repeat;

    overflow:hidden;
}

.tphbreadcrumb-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,8,25,.75),
        rgba(0,8,25,.75)
    );
}

.tphbreadcrumb-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;
}

.tphbreadcrumb-subtitle{

    display:inline-block;

    color:#d4af37;

    font-size:15px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;
}

.tphbreadcrumb-content h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:20px;

    color:#fff;

    font-family:'Cinzel', serif;

    font-weight:700;
}

.tphbreadcrumb-nav{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;
}

.tphbreadcrumb-nav a{

    color:#ffffff;

    text-decoration:none;

    font-size:17px;

    transition:.3s;
}

.tphbreadcrumb-nav a:hover{

    color:#d4af37;
}

.tphbreadcrumb-nav i{

    color:#d4af37;
}

.tphbreadcrumb-active{

    color:#d4af37;

    font-weight:600;
}

@media(max-width:991px){

.tphbreadcrumb-section{

    padding:150px 0 100px;
}

.tphbreadcrumb-content h1{

    font-size:54px;
}

}

@media(max-width:768px){

.tphbreadcrumb-section{

    padding:70px 0 80px;
}

.tphbreadcrumb-content h1{

    font-size:38px;
}

.tphbreadcrumb-subtitle{

    font-size:13px;

    letter-spacing:2px;
}

.tphbreadcrumb-nav{

    gap:8px;
}

.tphbreadcrumb-nav a,
.tphbreadcrumb-active{

    font-size:15px;
}

}

/*====================================
ABOUT PAGE
=====================================*/

.tphabout-page{

    padding:120px 0;

    background:#fff;
}

.tphabout-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.tphabout-images{

    position:relative;
}

.tphabout-main-image img{

    width:100%;

    border-radius:20px;

    display:block;
}

.tphabout-small-image{

    position:absolute;

    bottom:-40px;

    right:-40px;

    width:260px;
}

.tphabout-small-image img{

    width:100%;

    border-radius:20px;

    border:8px solid #fff;

    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.tphabout-subtitle{

    color:#d4af37;

    font-weight:600;

    letter-spacing:3px;

    font-size:14px;
}

.tphabout-content h2{

    font-size:48px;

    line-height:1.2;

    margin:20px 0;

    color:#08111f;

    font-family:'Cinzel',serif;
}

.tphabout-content p{

    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:20px;
}

.tphabout-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-top:30px;
}

.tphabout-feature{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:500;
}

.tphabout-feature i{

    color:#d4af37;
}

/* Stats */

.tphabout-stats{

    background:#08111f;

    padding:100px 0;
}

.tphstats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.tphstat-box{

    text-align:center;

    color:#fff;
}

.tphstat-box h3{

    font-size:60px;

    color:#d4af37;

    margin-bottom:10px;
}

.tphstat-box p{

    font-size:18px;
}

@media(max-width:991px){

.tphabout-row{

    grid-template-columns:1fr;

    gap:60px;
}

.tphabout-content h2{

    font-size:42px;
}

.tphstats-grid{

    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.tphabout-page{

    padding:80px 0;
}

.tphabout-content h2{

    font-size:32px;
}

.tphabout-small-image{

    position:relative;

    bottom:auto;

    right:auto;

    width:100%;

    margin-top:20px;
}

.tphabout-features{

    grid-template-columns:1fr;
}

.tphstats-grid{

    grid-template-columns:1fr;
}

.tphstat-box h3{

    font-size:42px;
}

}

/*====================================
BOOKING CTA SECTION
=====================================*/

.tphbookingcta-section{

    padding:80px 0;

    background:#f8f8f8;
}

.tphbookingcta-box{

    background:#08111f;

    border-radius:24px;

    padding:50px 60px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    position:relative;

    overflow:hidden;
}

.tphbookingcta-box::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;

    height:100%;

    background:#d4af37;
}

.tphbookingcta-content{

    flex:1;
}

.tphbookingcta-subtitle{

    display:inline-block;

    color:#d4af37;

    font-size:13px;

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:12px;
}

.tphbookingcta-content h2{

    color:#fff;

    font-size:42px;

    line-height:1.25;

    margin-bottom:15px;

    font-family:'Cinzel',serif;
}

.tphbookingcta-content p{

    color:rgba(255,255,255,.85);

    line-height:1.8;

    font-size:16px;
}

.tphbookingcta-action{

    flex-shrink:0;
}

.tphbookingcta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    height:58px;

    padding:0 30px;

    background:#d4af37;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.4s ease;
}

.tphbookingcta-btn:hover{

    background:#fff;

    color:#08111f;

    transform:translateY(-3px);
}

@media(max-width:991px){

.tphbookingcta-box{

    padding:40px;

    flex-direction:column;

    text-align:center;
}

.tphbookingcta-content h2{

    font-size:34px;
}

}

@media(max-width:768px){

.tphbookingcta-section{

    padding:60px 0;
}

.tphbookingcta-box{

    padding:30px 20px;

    border-radius:18px;

    gap:25px;

    text-align:center;

    flex-direction:column;
}

.tphbookingcta-content{

    width:100%;
}

.tphbookingcta-content h2{

    font-size:28px;

    line-height:1.3;
}

.tphbookingcta-content p{

    font-size:15px;
}

.tphbookingcta-btn{

    width:100%;

    min-width:100%;

    height:54px;
}

}
/*====================================
ROOMS SECTION
=====================================*/

.tphrooms-section{
    padding:120px 0;
    background:#f8f8f8;
}

.tphrooms-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.tphrooms-heading span{
    color:#d4af37;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
}

.tphrooms-heading h2{
    font-size:58px;
    margin:15px 0;
    color:#08111f;
    font-family:'Cinzel',serif;
}

.tphrooms-heading p{
    color:#666;
    line-height:1.8;
}

.tphrooms-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.tphroom-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.tphroom-card:hover{
    transform:translateY(-10px);
}

.tphroom-image-slider{
    position:relative;
}

.tphroom-image-slider img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.tphroom-price{
    position:absolute;
    top:20px;
    right:20px;
    background:#d4af37;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    z-index:10;
}

.tphroom-content{
    padding:30px;
}

.tphroom-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:#08111f;
}

.tphroom-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.tphroom-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.tphroom-features span{
    font-size:14px;
    color:#555;
}

.tphroom-features i{
    color:#d4af37;
}

.tphroom-btn{
    display:inline-block;
    padding:14px 30px;
    background:#08111f;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.tphroom-btn:hover{
    background:#d4af37;
}

@media(max-width:991px){

.tphrooms-grid{
    grid-template-columns:repeat(2,1fr);
}

.tphrooms-heading h2{
    font-size:42px;
}

}

@media(max-width:768px){

.tphrooms-section{
    padding:80px 0;
}

.tphrooms-grid{
    grid-template-columns:1fr;
}

.tphrooms-heading h2{
    font-size:32px;
}

.tphroom-content{
    padding:25px;
}

}

/*====================================
AMENITIES PAGE
=====================================*/

.tphamenities-page{

    padding:120px 0;

    background:#f8f8f8;
}

.tphamenities-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;
}

.tphamenities-heading span{

    color:#d4af37;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;
}

.tphamenities-heading h2{

    font-size:58px;

    color:#08111f;

    margin:15px 0 20px;

    font-family:'Cinzel',serif;
}

.tphamenities-heading p{

    color:#666;

    line-height:1.9;

    font-size:17px;
}

.tphamenities-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;
}

.tphamenities-card{

    background:#ffffff;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    min-height:280px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    transition:.4s ease;

    border:1px solid #ececec;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    position:relative;

    overflow:hidden;
}

.tphamenities-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.tphamenities-icon{

    width:65px;

    height:65px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#d4af37;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.4s ease;
}

.tphamenities-icon i{

    color:#fff;

    font-size:24px;
}
.tphamenities-card:hover .tphamenities-icon{

    transform:rotateY(180deg);
}
.tphamenities-card h3{

    font-size:20px;

    font-weight:600;

    color:#08111f;

    margin-bottom:12px;

    line-height:1.3;
}

.tphamenities-card p{

    color:#666;

    font-size:15px;

    line-height:1.8;

    margin:0;
}
@media(max-width:991px){

.tphamenities-grid{

    grid-template-columns:repeat(2,1fr);
}

.tphamenities-heading h2{

    font-size:35px;
}

}

@media(max-width:768px){

.tphamenities-grid{

    grid-template-columns:1fr;
}

.tphamenities-card{

    min-height:auto;

    padding:30px 20px;
}

.tphamenities-icon{

    width:60px;
    height:60px;
}

.tphamenities-icon i{

    font-size:22px;
}

}


/*====================================
DINING PAGE
=====================================*/

.tphdining-about{

    padding:120px 0;
}

.tphdining-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.tphdining-image img{

    width:100%;

    border-radius:20px;

    display:block;
}

.tphdining-subtitle{

    color:#d4af37;

    font-size:14px;

    letter-spacing:3px;

    font-weight:600;
}

.tphdining-content h2{

    font-size:56px;

    margin:20px 0;

    color:#08111f;

    font-family:'Cinzel',serif;
}

.tphdining-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;
}

.tphdining-btn{

    display:inline-block;

    padding:15px 35px;

    background:#d4af37;

    color:#fff;

    border-radius:50px;

    text-decoration:none;
}

/* Features */

.tphdining-features{

    padding:120px 0;

    background:#f8f8f8;
}

.tphdining-heading{

    text-align:center;

    margin-bottom:60px;
}

.tphdining-heading h2{

    font-size:52px;

    font-family:'Cinzel',serif;
}

.tphdining-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.tphdining-card{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.tphdining-card i{

    font-size:30px;

    color:#d4af37;

    margin-bottom:20px;
}

/* Timings */

.tphdining-timing{

    padding:120px 0;
}

.tphdining-timing-box{

    background:#08111f;

    padding:60px;

    border-radius:25px;

    text-align:center;

    color:#fff;
}

.tphdining-timing-box h2{

    font-size:48px;

    margin-bottom:40px;

    font-family:'Cinzel',serif;
}

.tphdining-hours{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.tphdining-hours h4{

    color:#d4af37;

    margin-bottom:10px;
}

@media(max-width:991px){

.tphdining-row{

    grid-template-columns:1fr;
}

.tphdining-grid{

    grid-template-columns:repeat(2,1fr);
}

.tphdining-hours{

    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.tphdining-about,
.tphdining-features,
.tphdining-timing{

    padding:80px 0;
}

.tphdining-content h2{

    font-size:32px;
}

.tphdining-heading h2{

    font-size:34px;
}

.tphdining-grid{

    grid-template-columns:1fr;
}

.tphdining-timing-box{

    padding:35px 20px;
}

.tphdining-timing-box h2{

    font-size:32px;
}

}

/*====================================
CONTACT PAGE
=====================================*/

.tphcontact-section{

    padding:120px 0;

    background:#f8f8f8;
}

.tphcontact-heading{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;
}

.tphcontact-heading span{

    color:#d4af37;

    font-size:14px;

    letter-spacing:3px;

    font-weight:600;
}

.tphcontact-heading h2{

    font-size:58px;

    color:#08111f;

    margin:15px 0;

    font-family:'Cinzel',serif;
}

.tphcontact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.tphcontact-card{

    background:#fff;

    padding:40px 25px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.tphcontact-card:hover{

    transform:translateY(-8px);
}

.tphcontact-icon{

    width:70px;

    height:70px;

    background:#d4af37;

    border-radius:50%;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;
}

.tphcontact-icon i{

    color:#fff;

    font-size:24px;
}

.tphcontact-card h3{

    margin-bottom:10px;

    color:#08111f;
}

.tphcontact-card p{

    color:#666;

    line-height:1.8;
}

/* FORM */

.tphcontact-form-section{

    padding:60px 0;
}

.tphcontact-form-wrapper{

    background:#fff;

    border-radius:25px;

    padding:60px;

    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.tphcontact-form-content{

    text-align:center;

    margin-bottom:40px;
}

.tphcontact-form-content span{

    color:#d4af37;

    letter-spacing:3px;
}

.tphcontact-form-content h2{

    font-size:52px;

    margin:15px 0;

    font-family:'Cinzel',serif;
}

.tphcontact-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;
}

.tphcontact-form input,
.tphcontact-form textarea{

    width:100%;

    padding:16px 20px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:15px;
}

.tphcontact-form textarea{

    height:180px;

    resize:none;

    margin-bottom:20px;
}

.tphcontact-form button{

    background:#d4af37;

    color:#fff;

    border:none;

    padding:16px 40px;

    border-radius:50px;

    cursor:pointer;

    font-weight:600;
}

@media(max-width:991px){

.tphcontact-grid{

    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.tphcontact-section,
.tphcontact-form-section{

    padding:80px 0;
}

.tphcontact-heading h2{

    font-size:34px;
}

.tphcontact-grid{

    grid-template-columns:1fr;
}

.tphcontact-form-wrapper{

    padding:30px 20px;
}

.tphcontact-form-content h2{

    font-size:32px;
}

.tphcontact-row{

    grid-template-columns:1fr;
}

}

/*====================================
CONTACT PAGE DETAILS SECTION
=====================================*/

.contactpagedetails-section{

    padding:70px 0;

    background:#f8f8f8;

    position:relative;
}

.contactpagedetails-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    align-items:start;
}

/* Left Side */

.contactpagedetails-info{

    background:#ffffff;

    padding:50px;

    border-radius:25px;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    border:1px solid rgba(0,0,0,.05);
}

.contactpagedetails-subtitle{

    display:inline-block;

    color:#d4af37;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;
}

.contactpagedetails-info h2{

    font-size:52px;

    line-height:1.2;

    color:#08111f;

    margin-bottom:20px;

    font-family:'Cinzel',serif;
}

.contactpagedetails-info > p{

    color:#666;

    line-height:1.9;

    margin-bottom:40px;

    font-size:16px;
}

/* Contact List */

.contactpagedetails-list{

    display:flex;

    flex-direction:column;

    gap:25px;
}

.contactpagedetails-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:20px;

    border-radius:15px;

    transition:.4s ease;

    border:1px solid transparent;
}

.contactpagedetails-item:hover{

    background:#fafafa;

    border-color:#ececec;
}

/* Icon */

.contactpagedetails-icon{

    width:65px;

    height:65px;

    min-width:65px;

    border-radius:50%;

    background:#d4af37;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.4s ease;
}

.contactpagedetails-icon i{

    color:#ffffff;

    font-size:22px;
}

.contactpagedetails-item:hover .contactpagedetails-icon{

    transform:translateY(-5px);
}

/* Text */

.contactpagedetails-text h4{

    color:#08111f;

    font-size:20px;

    font-weight:600;

    margin-bottom:8px;
}

.contactpagedetails-text p{

    color:#666;

    line-height:1.8;

    margin:0;
}

.contactpagedetails-text a{

    color:#666;

    text-decoration:none;

    transition:.3s;
}

.contactpagedetails-text a:hover{

    color:#d4af37;
}

/* Right Side Box */

.contactpagedetails-sidebox{

    background:#08111f;

    padding:45px;

    border-radius:25px;

    color:#ffffff;

    position:sticky;

    top:120px;

    overflow:hidden;
}

.contactpagedetails-sidebox::before{

    content:'';

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#d4af37;
}

.contactpagedetails-sidebox h3{

    font-size:34px;

    margin-bottom:15px;

    color:#ffffff;

    font-family:'Cinzel',serif;
}

.contactpagedetails-sidebox p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:25px;
}

.contactpagedetails-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:58px;

    background:#d4af37;

    color:#ffffff;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.4s ease;
}

.contactpagedetails-btn:hover{

    background:#ffffff;

    color:#08111f;

    transform:translateY(-3px);
}

/*====================================
TABLET
=====================================*/

@media(max-width:991px){

.contactpagedetails-section{

    padding:90px 0;
}

.contactpagedetails-wrapper{

    grid-template-columns:1fr;

    gap:30px;
}

.contactpagedetails-info{

    padding:40px;
}

.contactpagedetails-info h2{

    font-size:42px;
}

.contactpagedetails-sidebox{

    position:relative;

    top:auto;
}

}

/*====================================
MOBILE
=====================================*/

@media(max-width:768px){

.contactpagedetails-section{

    padding:70px 0;
}

.contactpagedetails-info{

    padding:30px 20px;
}

.contactpagedetails-info h2{

    font-size:30px;

    line-height:1.3;
}

.contactpagedetails-info > p{

    font-size:15px;
}

.contactpagedetails-item{

    padding:15px;

    gap:15px;
}

.contactpagedetails-icon{

    width:55px;

    height:55px;

    min-width:55px;
}

.contactpagedetails-icon i{

    font-size:18px;
}

.contactpagedetails-text h4{

    font-size:18px;
}

.contactpagedetails-text p{

    font-size:14px;
}

.contactpagedetails-sidebox{

    padding:30px 20px;
}

.contactpagedetails-sidebox h3{

    font-size:28px;
}

.contactpagedetails-btn{

    height:54px;
}

}

.contactpagedetails-image{

    margin-top:30px;

    padding:8px;

    background:rgba(255,255,255,.08);

    border-radius:20px;

    backdrop-filter:blur(10px);
}

.contactpagedetails-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:15px;

    display:block;
}

@media(max-width:768px){

.contactpagedetails-image img{

    height:auto;

    max-height:250px;
}

}

/*====================================
BOOKING PAGE
=====================================*/

.tphbookingpage-section{

    padding:120px 0;

    background:#f8f8f8;
}

.tphbookingpage-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

/* Content */

.tphbookingpage-content img{

    width:100%;

    border-radius:20px;

    margin-top:30px;
}

.tphbookingpage-subtitle{

    color:#d4af37;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;
}

.tphbookingpage-content h2{

    font-size:56px;

    margin:20px 0;

    color:#08111f;

    font-family:'Cinzel',serif;
}

.tphbookingpage-content p{

    color:#666;

    line-height:1.9;
}

/* Form Box */

.tphbookingpage-formbox{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.tphbookingpage-formbox h3{

    margin-bottom:25px;

    color:#08111f;

    font-size:30px;
}

.tphbookingpage-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    margin-bottom:15px;
}

.tphbookingpage-formbox input,
.tphbookingpage-formbox select,
.tphbookingpage-formbox textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    font-size:15px;
}

.tphbookingpage-formbox textarea{

    height:140px;

    resize:none;

    margin-bottom:20px;
}

.tphbookingpage-formbox button{

    width:100%;

    height:55px;

    border:none;

    background:#d4af37;

    color:#fff;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.4s;
}

.tphbookingpage-formbox button:hover{

    background:#08111f;
}

@media(max-width:991px){

.tphbookingpage-wrapper{

    grid-template-columns:1fr;
}

.tphbookingpage-content h2{

    font-size:42px;
}

}

@media(max-width:768px){

.tphbookingpage-section{

    padding:80px 0;
}

.tphbookingpage-content h2{

    font-size:32px;
}

.tphbookingpage-formbox{

    padding:25px;
}

.tphbookingpage-row{

    grid-template-columns:1fr;
}

}