/* ====================================
   GLOBAL
==================================== */

:root{
    --primary:#0d47a1;
    --secondary:#2986f6;
    --dark:#1a1a1a;
    --light:#ffffff;
    --gray:#f5f5f5;
    --text:#555;
    --transition:.3s ease;
    --tv-green:#1a9e6e;
    --tv-green-dark:#0f6e56;
    --tv-green-light:#e1f5ee;
    --tv-green-mid:#5dcaa5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:var(--text);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

ul{
    list-style:none;
    padding:0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:15px;
}

.section-title p{
    color:#777;
}

/* ====================================
   HEADER
==================================== */

#header{
    position:relative;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:.4s;
}

#header.scrolled{
    position: fixed;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.navbar{
    padding:20px 0;
}

.navbar-brand{
    font-size:28px;
    font-weight:800;
    color:#fff;
    width: 200px;
}

#header.scrolled .navbar-brand{
    color:var(--secondary);
}

.nav-link{
    color:var(--primary);
    font-weight:700;
    margin-left:20px;
}

#header.scrolled .nav-link{
    color:#222;
}

.nav-link:hover{
    color:var(--secondary);
}

/* ====================================
   HERO
==================================== */

#hero{
    height:100vh;
    position:relative;
}

.hero-slide{
    height:100vh;
    position:relative;
    background-size:cover;
    background-position:center;
}
.hero-slide img{width: 100%; height: auto;}
.hero-1{
    background:url('../images/hero/hero1.jpg');
}

.hero-2{
    background:url('../images/hero/hero2.jpg');
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:700px;
    padding-top:260px;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
}

/* ====================================
   SEARCH BOX
==================================== */

.search-box{
    margin-top:-80px;
    position:relative;
    z-index:50;
    display: none;
}

.search-wrapper{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 40px rgba(0,0,0,.1);
}

.search-wrapper input,
.search-wrapper select{
    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 15px;
}

.search-wrapper button{
    height:55px;
    border-radius:12px;
    font-weight:700;
}

/* ====================================
   SERVICES
==================================== */

#services{
    padding:40px 0;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:var(--transition);
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:50px;
    color:var(--primary);
    margin-bottom:20px;
}

.service-card h4{
    color:var(--secondary);
    font-weight:700;
}

/* ====================================
   DESTINATIONS
==================================== */

#destinations{
    padding:40px 0;
    background:#fafafa;
}

.destination-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.destination-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.6s;
}

.destination-card:hover img{
    transform:scale(1.08);
}

.destination-card h4{
    position:absolute;
    left:25px;
    bottom:25px;
    color:#fff;
    font-size:22px;
    font-weight:700;
    z-index: 1;
}

/* ====================================
   WHY US
==================================== */

#why-us{
    padding:40px 0;
}

#why-us h2{
    font-size:46px;
    font-weight:700;
    margin-bottom:30px;
    color:var(--secondary);
}

#why-us ul li{
    margin-bottom:15px;
    font-size:18px;
}

#why-us ul li::before{
    content:"✓";
    color:green;
    margin-right:10px;
}

/* ====================================
   STATS
==================================== */

#stats{
    padding:40px 0;
    background:var(--secondary);
    color:#fff;
}

#stats h2{
    font-size:56px;
    font-weight:800;
}

#stats p{
    margin-top:10px;
}

/* ====================================
   TESTIMONIALS
==================================== */

#testimonials{
    padding:40px 0;
}

.testimonial-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.testimonial-card p{
    font-size:20px;
    margin-bottom:25px;
}

.testimonial-card h5{
    font-weight:700;
}
.testimonial-img{text-align: center;}
.testimonial-img img{width: 120px; height: auto;border-radius: 50%; margin: auto;}
/* ====================================
   NEWS
==================================== */

#news{
    padding:40px 0;
    background:#fafafa;
}

.news-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.news-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.news-card h4{
    padding:25px;
    font-size:22px;
    font-weight:700;
    color:var(--secondary);
}

/* ====================================
   CTA
==================================== */

#cta{
    padding:120px 0;
    background:var(--secondary);
    color:#fff;
}

#cta h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:30px;
}

#cta .btn{
    padding:15px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
}

/* ====================================
   FOOTER
==================================== */

footer{
    background:#111;
    color:#ccc;
    padding:80px 0;
}

footer h4{
    color:#fff;
    margin-bottom:20px;
}

footer a{
    color:#ccc;
}

footer a:hover{
    color:var(--primary);
}

/* ====================================
   BUTTONS
==================================== */

.btn-warning{
    background:var(--primary);
    border:none;
}

.btn-warning:hover{
    background:#d6e725;
}

/* ====================================
   BACK TO TOP
==================================== */

.back-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.back-top.active{
    opacity:1;
    visibility:visible;
}

/* ====================================
   ANIMATIONS
==================================== */

.fade-up{
    transform:translateY(30px);
    opacity:0;
}

.fade-up.show{
    transform:translateY(0);
    opacity:1;
}

/* ====================================
   SPACING HELPERS
==================================== */

.py-120{
    padding:120px 0;
}

.mt-60{
    margin-top:60px;
}

.mb-60{
    margin-bottom:60px;
}
/* ====================================
   PAGE BANNER
==================================== */

.page-banner{

    height:450px;


    position:relative;

    display:flex;

    align-items:center;

}

.page-banner .overlay{

    position:absolute;

    inset:0;
    z-index: 99;
    background:rgba(0,0,0,.55);
    opacity: 1;
}

.banner-content{

    position:relative;

    z-index:100;

    color:#fff;

    text-align:center;

}

.banner-content h1{

    font-size:60px;

    font-weight:800;

}

.banner-content p{

    font-size:20px;

}

/* ====================================
   BREADCRUMB
==================================== */

.breadcrumb-section{

    padding:20px 0;

    background:#fafafa;

}

.breadcrumb-section a{

    color:#023047;

}

/* ====================================
   FILTER
==================================== */

.news-filter{

    padding:50px 0;

}

.filter-wrapper{

    display:flex;

    gap:15px;

    justify-content:center;

    flex-wrap:wrap;

}

.filter-wrapper a{

    border:none;

    padding:12px 25px;

    border-radius:50px;

    background:#eee;
    color: #0D47A1;
    transition:.3s;
    display: inline-block;

}

.filter-wrapper a:hover , .filter-wrapper a.active{

    background:#0D47A1;
    color: #fff;

}

/* ====================================
   NEWS GRID
==================================== */

#news-page{

    padding-bottom:80px;

}

.news-card{

    height:100%;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.news-card:hover{

    transform:translateY(-10px);

}

.news-image{

    position:relative;

}

.news-image img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.news-category{

    position:absolute;

    top:20px;

    left:20px;

    background:#0D47A1;

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.news-content{

    padding:25px;

}

.news-content h3{

    font-size:24px;

    margin:15px 0;

}

.news-content h3 a{

    color:#023047;

}

.news-meta{

    color:#777;

    font-size:14px;

}

.read-more{

    display:inline-block;

    margin-top:15px;

    font-weight:600;

    color:#0D47A1;

}

/* ====================================
   PAGINATION
==================================== */

.pagination-section{

    padding-bottom:100px;

}

.pagination .page-link{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    margin:0 5px;

    border:none;

}

.pagination .active .page-link{

    background:#0D47A1;

    color:#fff;

}
/* ====================================
   POPULAR DESTINATIONS
==================================== */

#popular-destinations{

    padding:40px 0;

    background:#f8fafc;

}
.destination_item{margin-bottom: 20px;}
.destination-card:after{content: ''; position: absolute;background-color: #00000060; position: absolute;top: 0px; bottom: 0px; width: 100%;}
.place-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.place-card:hover{

    transform:translateY(-10px);

}

.place-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.6s;

}

.place-card:hover img{

    transform:scale(1.1);

}

.place-content{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:25px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.2),
        transparent
    );

}

.place-content h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin:0;

}
.btn-booknow, .chutrang{color: #fff;}
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:1000;display:flex;align-items:center;justify-content:center;padding:1rem;opacity:0;pointer-events:none;transition:opacity .25s}
  .overlay.active{opacity:1;pointer-events:all}

  .modal{background:#fff;border-radius:16px;width:100%;max-width:520px;max-height:90vh;overflow-y:auto;transform:translateY(20px) scale(.97);transition:transform .25s;box-shadow:0 8px 40px rgba(0,0,0,.25); position: relative;}
  .overlay.active .modal{transform:translateY(0) scale(1); display: block;}

  .modal-header{background:linear-gradient(135deg,#0D47A1,#2986F6);padding:1.5rem 1.5rem 1rem;border-radius:16px 16px 0 0;position:relative}
  .modal-header h3{color:#fff;font-size:18px;font-weight:500;margin-bottom:4px}
  .modal-header p{color:rgba(255,255,255,.8);font-size:13px}
  .modal-close{position:absolute;top:1rem;right:1rem;background:rgba(255,255,255,.2);border:none;color:#fff;width:28px;height:28px;border-radius:50%;cursor:pointer;font-size:16px;display:flex;align-items:center;justify-content:center;transition:background .2s}
  .modal-close:hover{background:rgba(255,255,255,.35)}

  .modal-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.2);color:#fff;font-size:11px;padding:3px 10px;border-radius:20px;margin-bottom:.75rem}

  .modal-body{padding:1.5rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
  @media(max-width:480px){.form-row{grid-template-columns:1fr}}

  .form-group{margin-bottom:1rem}
  .form-group label{display:block;font-size:13px;color:var(--color-text-secondary);margin-bottom:5px;font-weight:500}
  .form-group label .req{color:#e24b4a;margin-left:2px}

  .form-group input,
  .form-group select,
  .form-group textarea{
    width:100%;border:1px solid var(--color-border-tertiary);border-radius:8px;padding:9px 12px;font-size:14px;background:var(--color-background-primary);color:var(--color-text-primary);transition:border-color .2s,box-shadow .2s;font-family:inherit
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus{outline:none;border-color:var(--tv-green);box-shadow:0 0 0 3px rgba(26,158,110,.15)}
  .form-group textarea{resize:vertical;min-height:80px}

  .type-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
  .type-option{border:1.5px solid var(--color-border-tertiary);border-radius:8px;padding:10px 12px;cursor:pointer;transition:all .2s;display:flex;align-items:center;gap:8px}
  .type-option:hover{border-color:var(--tv-green);background:var(--tv-green-light)}
  .type-option.selected{border-color:var(--tv-green);background:var(--tv-green-light)}
  .type-option input{width:16px;height:16px;accent-color:var(--tv-green);flex-shrink:0}
  .type-option span{font-size:13px;color:var(--color-text-primary)}

  .divider{height:1px;background:var(--color-border-tertiary);margin:1rem 0}

  .agree-row{display:flex;align-items:flex-start;gap:10px;margin-bottom:1.25rem}
  .agree-row input{width:16px;height:16px;margin-top:2px;accent-color:var(--tv-green);flex-shrink:0}
  .agree-row label{font-size:13px;color:var(--color-text-secondary);line-height:1.5}
  .agree-row a{color:var(--tv-green);text-decoration:none}

  .btn-submit{width:100%;background:linear-gradient(135deg,#0D47A1,#2986F6);color:#fff;border:none;padding:12px;border-radius:30px;font-size:15px;font-weight:500;cursor:pointer;transition:all .2s;font-family:inherit}
  .btn-submit:hover{opacity:.9;transform:translateY(-1px)}
  .btn-submit:active{transform:translateY(0)}

  .success-state{text-align:center;padding:2rem 1.5rem}
  .success-icon{width:56px;height:56px;background:var(--tv-green-light);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:26px}
  .success-state h4{color:var(--color-text-primary);font-size:17px;font-weight:500;margin-bottom:.5rem}
  .success-state p{color:var(--color-text-secondary);font-size:13px;line-height:1.6}
  /* ====================================
   ABOUT PAGE BANNER
==================================== */

.about-banner{

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url('../deletes/about-banner2.jpg')
    center center/cover;

}

.banner-content{

    text-align:center;

}

.banner-content h1{

    font-size:72px;

    font-weight:800;

    margin-bottom:20px;

    text-shadow:0 5px 20px rgba(0,0,0,.3);

}

.banner-content p{

    font-size:22px;

    max-width:700px;

    margin:auto;

}
/* ====================================
   ABOUT TRIPVINA
==================================== */

#about-tripvina{

    padding:120px 0;

}

#about-tripvina img{

    border-radius:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.12);

}

#about-tripvina h2{

    font-size:48px;

    font-weight:800;

    color:#023047;

    margin-bottom:25px;

}

#about-tripvina p{

    font-size:18px;

    line-height:1.9;

    color:#555;

}
/* ====================================
   OUR STORY
==================================== */

#our-story{

    padding:120px 0;

    background:#f8fafc;

}

.story-box{

    max-width:900px;

    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    text-align:center;

}

.story-box p{

    font-size:20px;

    line-height:1.9;

}
/* ====================================
   SERVICES
==================================== */

#tripvina-services{

    padding:120px 0;

    background:#f8fafc;

}

.service-box{

    background:#fff;

    border-radius:25px;

    padding:40px;

    text-align:center;

    height:100%;

    transition:.4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

}

.service-box:hover{

    transform:translateY(-12px);

}

.service-box i{

    font-size:58px;

    color:#0D47A1;

    margin-bottom:25px;

}

.service-box h4{

    font-size:24px;

    font-weight:700;

    color:#023047;

    margin-bottom:15px;

}

.service-box p{

    color:#666;

}
/* ====================================
   STATS
==================================== */

#stats{

    background:
    linear-gradient(
        135deg,
        #023047,
        #03506f
    );

}

#stats h2{

    color:#D6E725;

    font-size:64px;

    font-weight:800;

}

#stats p{

    color:#fff;

    font-size:18px;

}
/* ====================================
   GALLERY
==================================== */

#tripvina-gallery{

    padding:120px 0;

}

.gallerySwiper{

    padding-bottom:20px;

}

.gallerySwiper img{

    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:25px;

    transition:.5s;

}

.gallerySwiper img:hover{

    transform:scale(1.05);

}
/* ====================================
   PARTNERS
==================================== */

#partners{

    padding:120px 0;

    background:#f8fafc;

}

.partnerSwiper{

    padding:20px 0;

}

.partnerSwiper img{

    width:100%;

    height:90px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.6;

    transition:.4s;

}

.partnerSwiper img:hover{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}
/* ====================================
   CTA
==================================== */

#cta{

    position:relative;

    overflow:hidden;

}

#cta::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    right:-150px;

    top:-150px;

}
/* ====================================
   EFFECTS
==================================== */

.zoom-hover{

    overflow:hidden;

}

.zoom-hover img{

    transition:.6s;

}

.zoom-hover:hover img{

    transform:scale(1.1);

}

.shadow-hover{

    transition:.4s;

}

.shadow-hover:hover{

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);

}
@media(max-width:768px){

    .banner-content h1{

        font-size:42px;

    }

    #about-tripvina h2{

        font-size:34px;

        margin-top:30px;

    }

    .story-box{

        padding:30px;

    }

    .story-box p{

        font-size:17px;

    }

    .gallerySwiper img{

        height:280px;

    }

    #stats h2{

        font-size:42px;

    }

}

@media(max-width:576px){

    .feature-card,
    .service-box{

        padding:30px 20px;

    }

    .gallerySwiper img{

        height:220px;

    }

}
/* ====================================
   CONTACT PAGE
==================================== */

.contact-banner{

    background:
    linear-gradient(
        rgba(0,0,0,.5),
        rgba(0,0,0,.5)
    ),
    url('../deletes/contact-banner.png')
    center center/cover;

}

#company-info{

    padding:100px 0;

}

.info-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    height:100%;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:.4s;

}

.info-card:hover{

    transform:translateY(-10px);

}

.info-card i{

    font-size:50px;

    color:#0D47A1;

    margin-bottom:20px;

}

.info-card h4{

    color:#023047;

    margin-bottom:15px;

}

#contact-section{

    padding:100px 0;

    background:#f8fafc;

}

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

}

.contact-form h3{

    margin-bottom:30px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    border:1px solid #ddd;

    border-radius:12px;

    padding:15px;

    margin-bottom:15px;

}

.contact-form button{

    width:100%;

    height:55px;

}

.map-wrapper{

    overflow:hidden;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

}

.map-wrapper iframe{

    width:100%;

    height:100%;

    min-height:705px;

    border:0;

}


/* ====================================
   FAQ
==================================== */

#faq{

    padding:120px 0;

}

.faq-item{

    background:#fff;

    border-radius:20px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

}

.faq-question{

    padding:25px 30px;

    cursor:pointer;

    font-size:18px;

    font-weight:700;

    color:#023047;

    position:relative;

}

.faq-question::after{

    content:"+";

    position:absolute;

    right:30px;

    top:50%;

    transform:translateY(-50%);

    font-size:26px;

}

.faq-item.active .faq-question::after{

    content:"−";

}

.faq-answer{

    display:none;

    padding:0 30px 30px;

    color:#666;

    line-height:1.8;

}
/* ====================================
   CONTACT CTA
==================================== */

.contact-cta{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #023047,
        #03506f
    );

    color:#fff;

    text-align:center;

}

.contact-cta h2{

    font-size:52px;

    font-weight:800;

    margin-bottom:20px;

}

.contact-cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:30px;

    opacity:.9;

}

.contact-cta .btn{

    min-width:220px;

    height:60px;

    border-radius:50px;

    font-weight:700;

}
/* ====================================
   CONTACT SOCIAL
==================================== */

.contact-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.contact-social a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f5f5f5;

    border-radius:50%;

    color:#023047;

    transition:.3s;

}

.contact-social a:hover{

    background:#D6E725;

    transform:translateY(-5px);

}
/* ====================================
   FORM EFFECT
==================================== */

.contact-form input,
.contact-form textarea{

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#D6E725;

    box-shadow:
    0 0 0 4px rgba(255,183,3,.15);

    outline:none;

}
/* ====================================
   MAP
==================================== */

.map-wrapper{

    transition:.4s;

}

.map-wrapper:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

}
/* ====================================
   DECORATION
==================================== */

#company-info,
#working-hours{

    position:relative;

}

#company-info::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:
    rgba(255,183,3,.08);

    top:-100px;

    left:-100px;

}
/* ====================================
   ACCOMMODATION PAGE
==================================== */

.accommodation-banner{

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url('../images/accommodation-banner.jpg')
    center center/cover;

}

/* SEARCH */

#accommodation-search{

    margin-top:-70px;

    position:relative;

    z-index:10;

}

.search-box-hotel{

    background:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.1);

}

.search-box-hotel input,
.search-box-hotel select{

    width:100%;

    height:55px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 15px;

}

/* CATEGORY */

#accommodation-categories{

    padding:40px 0;

}

.category-card{

    background:#fff;

    text-align:center;

    padding:40px;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:.4s;

}

.category-card:hover{

    transform:translateY(-10px);

}

.category-card i{

    font-size:56px;

    color:#D6E725;

    margin-bottom:20px;

}

/* HOTEL */

#featured-hotels{

    padding:40px 0;

    background:#f8fafc;

}

.hotel-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.hotel-card:hover{

    transform:translateY(-10px);

}

.hotel-image{

    position:relative;

}

.hotel-image img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.hotel-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:#0D47A1;

    padding:8px 15px;

    border-radius:30px;

    font-weight:700;

}

.hotel-content{

    padding:25px;

}

.hotel-content h4{

    color:#023047;

    font-weight:700;
    height: 58px;
    overflow: hidden;
}
.hotel-content p{line-height: 22px;height: 45px; overflow: hidden;}
.hotel-rating{

    color:#f5b400;

    margin:10px 0;

}

.hotel-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.price{

    color:#e63946;

    font-size:22px;

    font-weight:700;

}

/* RESORT */

#featured-resorts{

    padding:40px 0;

}

.resort-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

}

.resort-card img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.5s;

}

.resort-card:hover img{

    transform:scale(1.08);

}

.resort-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:30px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.8)
    );

}

.resort-overlay h3{

    color:#fff;

    font-size:32px;

    font-weight:700;

}

/* BENEFITS */

#stay-benefits{

    padding:120px 0;

    background:#f8fafc;

}

.benefit-box{

    background:#fff;

    text-align:center;

    padding:40px;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

}

.benefit-box i{

    font-size:50px;

    color:#D6E725;

    margin-bottom:20px;

}
/* ====================================
   NEWS DETAIL
==================================== */

.news-detail-banner{

    background:
    linear-gradient(
        rgba(0,0,0,.5),
        rgba(0,0,0,.5)
    ),
    url('../images/news-detail-banner.jpg')
    center center/cover;

}

#article-detail{

    padding:100px 0;
}

.article-wrapper{

    max-width:900px;

    margin:auto;
}

.article-category{

    display:inline-block;

    background:#D6E725;

    padding:8px 18px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;
}

.article-title{

    font-size:52px;

    font-weight:800;

    color:#023047;

    margin-bottom:20px;

    line-height:1.3;
}

.article-meta{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

    color:#777;

    margin-bottom:30px;
}

.article-share{

    margin-bottom:30px;
}

.article-share a{

    width:42px;

    height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#f5f5f5;

    border-radius:50%;

    margin-right:10px;

    color:#023047;
}

.article-thumbnail{

    position:relative;

    overflow:hidden;

    border-radius:30px;

}

.article-thumbnail img{

    width:100%;

    height:600px;

    object-fit:cover;

}

.article-thumbnail::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.15)
    );

}

.article-content{

    font-size:18px;

    line-height:2;
}

.article-content h2{

    color:#023047;

    margin:40px 0 20px;
}

.article-content blockquote{

    position:relative;

    padding:30px 50px;

    background:#f8fafc;

    border-radius:25px;

    border:none;

}

.article-content blockquote::before{

    content:"❝";

    position:absolute;

    top:-20px;

    left:5px;

    font-size:80px;

    color:#D6E725;

}

/* GALLERY */

#article-gallery{

    padding-bottom:80px;
}

#article-gallery img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:20px;
}

/* TAGS */

#article-tags{

    padding-bottom:80px;
}

.tags-wrapper{

    display:flex;

    flex-wrap:wrap;

    gap:10px;
}

.tags-wrapper a{

    padding:10px 20px;

    background:#f5f5f5;

    border-radius:50px;

    color:#023047;
}

/* AUTHOR */

#author-box{

    padding-bottom:80px;
}

.author-wrapper{

    display:flex;

    align-items:center;

    gap:25px;

    padding:30px;

    background:#f8fafc;

    border-radius:25px;
}

.author-wrapper img{

    width:90px;

    height:90px;

    border-radius:50%;
}

/* RELATED */

#related-posts{

    padding:120px 0;

    background:#f8fafc;
}

.related-card{

    border:none;

    overflow:hidden;

    border-radius:25px;

    background:#fff;

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

}

.related-card img{

    height:260px;

    transition:.6s;

}

.related-card:hover img{

    transform:scale(1.1);

}

.related-content{

    padding:30px;

}

.related-content h4{

    color:#023047;

    margin-bottom:15px;
}
.gallery-masonry{

    columns:3;

    gap:20px;

}

.gallery-masonry img{

    width:100%;

    margin-bottom:20px;

    border-radius:20px;

    transition:.4s;

}

.gallery-masonry img:hover{

    transform:scale(1.03);

}
/* ===========================
   HOTEL DETAIL
=========================== */

#hotel-gallery{

    padding:40px 0;
}

.gallery-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:15px;
}

.gallery-main img{

    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:25px;
    cursor:pointer;
}

.gallery-side{

    display:grid;

    grid-template-columns:1fr 1fr;
    gap:15px;
}

.gallery-side img{

    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
}

.more-images{

    position:relative;
}

.more-images span{

    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(0,0,0,.55);

    color:#fff;

    font-size:26px;
    font-weight:700;

    border-radius:20px;
}

/* HOTEL HEADER */

.hotel-header h1{

    font-size:48px;
    font-weight:800;

    color:#023047;
}

.hotel-meta{

    display:flex;
    gap:25px;

    margin-top:15px;
}

.hotel-type{

    background:#D6E725;

    padding:8px 16px;

    border-radius:30px;

    font-weight:700;
}

/* BOOKING */

.booking-box{

    background:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    position:sticky;

    top:100px;
}

.booking-box .price{

    font-size:30px;

    color:#e63946;

    font-weight:800;
}

/* AMENITIES */

.amenity-card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

.amenity-card i{

    font-size:42px;

    color:#D6E725;

    margin-bottom:15px;
}

/* RELATED */

#related-hotels{

    padding:120px 0;

    background:#f8fafc;
}
/* ====================================
   HOTEL DETAIL TABS
==================================== */

#hotel-tabs{

    padding:60px 0;

}

#hotel-tabs .nav{

    gap:15px;

    margin-bottom:40px;

    flex-wrap:wrap;

}

#hotel-tabs .nav-pills .nav-link{

    border:none;

    padding:14px 30px;

    border-radius:50px;

    background:#f5f5f5;

    color:#023047;

    font-weight:600;

    transition:.3s;

}

#hotel-tabs .nav-pills .nav-link:hover{

    background:#ffb703;

    color:#fff;

}

#hotel-tabs .nav-pills .nav-link.active{

    background:#ffb703;

    color:#fff;

}

.tab-content{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

}

.tab-pane{

    line-height:1.9;

    color:#555;

}
#room-types{

    padding:40px 0;

}

.room-card{

    display:flex;

    gap:30px;

    align-items:center;

    background:#fff;

    padding:25px;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}

.room-image img{

    width:280px;

    height:180px;

    object-fit:cover;

    border-radius:15px;

}

.room-content{

    flex:1;

}

.room-price h4{

    color:#e63946;

    font-size:32px;

    font-weight:700;

}
#hotel-map{

    padding:40px 0;

}

.map-box{

    overflow:hidden;

    border-radius:25px;

}

.map-box iframe{

    width:100%;

    height:500px;

    border:none;

}

.review-card{

    display:flex;

    gap:25px;

    background:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

}

.review-score{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#ffb703;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    font-weight:700;

}
/* ====================================
   FOOTER EXTENDED
==================================== */

.footer-info{

    background:#f5f7fa;

    padding:70px 0 50px;

    border-top:1px solid #e5e7eb;

}

.footer-info h4{

    font-size:22px;

    font-weight:700;

    color:#023047;

    margin-bottom:20px;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#666;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffb703;

    padding-left:5px;

}

.footer-member-logo{

    max-width:180px;

}

.footer-certificates{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.footer-certificates img{

    height:80px;

    object-fit:contain;

}

.footer-awards{

    margin-top:50px;

    padding-top:40px;

    border-top:1px solid #ddd;

    display:flex;

    gap:40px;

    flex-wrap:wrap;

}

.award-item{

    display:flex;

    align-items:center;

    gap:15px;

}

.award-item img{

    height:60px;

}

.award-item span{

    max-width:180px;

    font-weight:600;

}

.company-info{

    margin-top:40px;

    color:#555;

}

.company-info p{

    margin-bottom:10px;

}

.footer-bottom-info{

    margin-top:50px;

    display:flex;

    justify-content:space-between;

    gap:40px;

    flex-wrap:wrap;

    padding-top:40px;

    border-top:1px solid #ddd;

}

.footer-social{

    display:flex;

    gap:15px;

    align-items:flex-start;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#17c3e8;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.footer-social a:hover{

    transform:translateY(-5px);

}

.footer-support h4{

    margin-bottom:10px;

}

.hotline{

    font-size:42px;

    font-weight:800;

    color:#ff7b00;

    line-height:1;

}

.footer-app .app-area{

    display:flex;

    gap:20px;

    align-items:center;

}

.qr-code{

    width:110px;

}

.store-btn{

    display:block;

    width:150px;

    margin-bottom:10px;

}