/* ===== GLOBAL PAGE LAYOUT ===== */

html, body{
height:100%;
margin:0;
}

body{
display:flex;
flex-direction:column;
min-height:100vh;
font-family:"Poppins",sans-serif;
}



 /* ==== HEADER START==== */

body.no-scroll {
  overflow: hidden;
}

/* Header wrapper */
.plinfo-header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #f7f4ed;
}

/* Header inner */
.plinfo-header {
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.plinfo-left {
  display: flex;
  align-items: center;
  gap: 70px;
}

.plinfo-logo img {
  height: 46px;
}

/* Desktop Nav */
.plinfo-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.plinfo-nav > div {
  position: relative;
}

.plinfo-nav a {
  text-decoration: none;
  color: #3a3838;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

.plinfo-nav a i {
  margin-left: 5px;
}

.plinfo-nav a:hover {
  color: #5c5c5c;
}

/* Dropdown Menu */
.plinfo-dropdown {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  min-width: 220px;
  z-index: 999;
}

.plinfo-dropdown::before {
  content: '';
  display: block;
  height: 4px;
  background-color: #5c5c5c   ;
  width: 100%;
}

.plinfo-dropdown a {
  display: block;
  padding: 10px 12px;
  color: #333;
  font-size: 14px;
}

.plinfo-dropdown a:hover {
  background-color: #f0f0f0;
}

.plinfo-nav > div:hover .plinfo-dropdown,
.plinfo-nav > div:focus-within .plinfo-dropdown {
  display: block;
}

/* CTA Button */
.plinfo-contact-btn {
  background-color: #000000 ;
  color: #f5f5f5;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.5s ease;
}

.plinfo-contact-btn:hover {
   color: #b8b8b8;
}

/* Toggle Menu Icon */
.plinfo-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #1F2937;
}

.plinfo-menu-toggle i,
.plinfo-close-toggle i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.plinfo-menu-toggle:hover i,
.plinfo-close-toggle:hover i {
  transform: scale(1.1) rotate(5deg);
  color: #5c5c5c ;
}

/* Mobile Menu */
.plinfo-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background: #f9f9f9;
  color: #1f1f1f;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
  padding: 80px 20px 20px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.plinfo-mobile-menu.active {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}

.plinfo-mobile-menu::-webkit-scrollbar {
  width: 6px;
}
.plinfo-mobile-menu::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.plinfo-mobile-menu .plinfo-logo {
  text-align: center;
  margin-bottom: 10px;
}

.plinfo-mobile-menu hr {   
  border: 0.5px solid #bbb;
  margin: 3px 0;
}

.plinfo-mobile-menu a,
.plinfo-mobile-menu button {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #131313;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.3s ease;
}

.plinfo-mobile-menu a:hover,
.plinfo-mobile-menu button:hover {
  color: #5c5c5c;
}

.plinfo-mobile-menu .mobile-dropdown {
  display: none;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  padding-left: 15px;
  gap: 5px;
  animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.plinfo-mobile-menu .plinfo-email {
  font-size: 14px;
  color: #131313;
  display: flex;
  align-items: center;
  gap: 5px;
}

.plinfo-mobile-menu .plinfo-email i {
  color: #5c5c5c;
}

.plinfo-mobile-menu .social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-top: 10px;
}

.plinfo-mobile-menu .social-icons a {
  color: #141414;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.plinfo-mobile-menu .social-icons a:hover {
  color: #5c5c5c;
}

.plinfo-mobile-menu .plinfo-contact-btn {
  background: transparent;
  border: 1px solid #5c5c5c   ;
  color: #0f0f0f;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.plinfo-mobile-menu .plinfo-contact-btn:hover {
  background-color: #5c5c5c   ;
  color: #fff;
}

.plinfo-close-toggle {
  display: block;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #5c5c5c   ;
  border-radius: 5px;
  padding: 4px 8px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2100;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
}

.plinfo-close-toggle:hover {
  background-color: #fdfdfd;
  color: #5c5c5c   ;
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .plinfo-nav {
    display: none;
  }
  .plinfo-menu-toggle {
    display: block;
  }
  .plinfo-left {
    gap: 15px;
  }
  .plinfo-header {
    justify-content: space-between;
  }
  .plinfo-contact-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .plinfo-close-toggle {
    display: block;
  }
}


/* ==== HEADER END ==== */






/* ==== HERO SLIDER START==== */


.footerbanner-section{
width:100%;
position:relative;
}

.footerbanner-section img{
width:100%;
display:block;
}

.footerbanner-desktop{
display:flex;
justify-content:center;
}

.footerbanner-desktop img{
max-height:720px;
width:100%;
}

/* Mobile Banner Hidden */
.footerbanner-mobile{
display:none;
}

/* Overlay Content */
.footerbanner-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:#fff;
width:100%;
}

.footerbanner-content h2{
font-size:180px;
font-weight:800;
letter-spacing:8px;
margin-bottom:20px;
}

.footerbanner-subtitle{
font-size:20px;
letter-spacing:1px;
margin-bottom:25px;
opacity:0.9;
max-width:700px;
margin-left:auto;
margin-right:auto;
}

.footerbanner-btn{
display:inline-block;
padding:10px 38px;
background:#fff;
color:#000;
text-decoration:none;
font-weight:600;
border-radius:30px;
transition:0.3s;
}

.footerbanner-btn:hover{
background:#000;
color:#fff;
}

/* Mobile Responsive */
@media (max-width:768px){

.footerbanner-desktop{
display:none;
}

.footerbanner-mobile{
display:block;
}

.footerbanner-content h2{
font-size:60px;
letter-spacing:4px;
}

.footerbanner-subtitle{
font-size:16px;
padding:0 20px;
}

.footerbanner-btn{
padding:10px 20px;
font-size:14px;
}

}

/* ==== HERO SLIDER END==== */



/* ==== CATEGORY SART==== */

.destnationhome-section{
padding:70px 20px;
background:#f7f4ed;
}

.destnationhome-container{
max-width:1500px;
margin:auto;
}

.destnationhome-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
flex-wrap:wrap;
gap:20px;
}

.destnationhome-subtitle{
color:#ff6b2c;
font-weight:600;
font-size:14px;
}

.destnationhome-header h2{
font-size:34px;
margin-top:8px;
font-weight:700;
color:#111;
}

.destnationhome-btn{
text-decoration:none;
background:#fff;
border-radius:30px;
padding:12px 20px;
border:1px solid #eee;
font-weight:600;
color:#111;
display:flex;
align-items:center;
gap:8px;
transition:0.3s;
}

.destnationhome-btn:hover{
background:#111;
color:#fff;
}

.destnationhome-card{
border-radius:20px;
overflow:hidden;
position:relative;
height:420px;
}

.destnationhome-card img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

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

.destnationhome-card-content{
position:absolute;
bottom:20px;
left:20px;
color:#fff;
}

.destnationhome-card-content h4{
font-size:20px;
margin-bottom:5px;
}

.destnationhome-card-content p{
font-size:14px;
opacity:0.9;
}

.destnationhome-slider{
padding-bottom:20px;
}

/* ==== CATEGORY END==== */




/* ==== BLOG SECTION START==== */

.travel-blog-section{
width:100%;
background:#f7f4ed;
padding:40px 16px;
display:flex;
justify-content:center;
font-family:'Segoe UI',sans-serif;
box-sizing:border-box;
}

.travel-blog-container{
width:100%;
max-width:1500px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:26px;
box-sizing:border-box;
}

/* Card */

.travel-blog-card{
background:#f7f4ed;
border-radius:14px;
overflow:hidden;
text-decoration:none;
color:#111;
display:block;
height:100%;
}


/* Image */

.travel-blog-img{
position:relative;
overflow:hidden;
}

.travel-blog-img img{
width:100%;
height:220px;
object-fit:cover;
transition:0.4s;
display:block;
}

.travel-blog-card:hover .travel-blog-img img{
transform:scale(1.06);
}

/* Category */

.travel-blog-category{
position:absolute;
top:14px;
left:14px;
background:#fff;
padding:6px 14px;
font-size:12px;
font-weight:600;
border-radius:30px;
box-shadow:0 6px 15px rgba(0,0,0,0.1);
}

/* Content */

.travel-blog-content{
padding:22px;
}

/* Meta */

.travel-blog-meta{
font-size:13px;
color:#777;
display:flex;
gap:14px;
margin-bottom:12px;
flex-wrap:wrap;
}

.travel-blog-meta i{
margin-right:4px;
}

/* Title */

.travel-blog-title{
font-size:18px;
font-weight:600;
line-height:1.45;
margin-bottom:10px;
}

/* Description */

.travel-blog-desc{
font-size:14px;
color:#666;
line-height:1.6;
margin-bottom:14px;
}

/* Read */

.travel-blog-read{
font-size:14px;
font-weight:600;
color:#111;
}

.travel-blog-read i{
margin-left:6px;
font-size:13px;
}


/* ===== Laptop ===== */

@media (max-width:1200px){

.travel-blog-container{
grid-template-columns:repeat(3,1fr);
}

}


/* ===== Tablet ===== */

@media (max-width:900px){

.travel-blog-container{
grid-template-columns:repeat(2,1fr);
gap:22px;
}

}


/* ===== Mobile ===== */

@media (max-width:600px){

.travel-blog-section{
padding:50px 16px;
}

.travel-blog-container{
grid-template-columns:1fr;
gap:20px;
}

.travel-blog-img img{
height:200px;
}

.travel-blog-content{
padding:18px;
}

.travel-blog-title{
font-size:17px;
}

.travel-blog-desc{
font-size:13.5px;
}

}

/* ==== BLOG SECTION END ==== */




/* ==== BLOG DETAILS START ==== */
body{
font-family: 'Segoe UI', system-ui, sans-serif;
background:#f7f4ed;
color:#1a1a1a;
}

/* CONTAINER */

.container{
max-width:1500px;
margin:auto;
padding:60px 35px;
}

/* BREADCRUMB */

.breadcrumb{
font-size:14px;
margin-bottom:35px;
margin-top: 10px;
color:#777;
}

.breadcrumb a{
text-decoration:none;
color:#555;
}

.breadcrumb a:hover{
color:#000;
}

/* GRID LAYOUT */

.blog-layout{
display:grid;
grid-template-columns:2.3fr 1fr;
gap:60px;
align-items:start;
}

/* BLOG CARD */

.blog-card{
background:#f7f4ed;
border-radius:12px;
overflow:hidden;
}

/* BLOG IMAGE */

.blog-image img{
width:100%;
height:500px;
object-fit:cover;
border-radius:12px;
}

/* BLOG CONTENT */

.blog-content{
padding:40px 10px;
max-width:850px;
}

/* TITLE */

.blog-title{
font-size:42px;
font-weight:700;
line-height:1.25;
margin-bottom:15px;
letter-spacing:-0.3px;
}

/* META */

.blog-meta{
font-size:14px;
color:#777;
margin-bottom:30px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

/* BLOG TEXT */

.blog-desc p{
margin-bottom:20px;
font-size:19px;
color:#333;
max-width:780px;
}

/* SHARE */

.share{
margin-top:40px;
padding-top:25px;
border-top:1px solid #e8e3d8;
display:flex;
align-items:center;
gap:12px;
}

.share span{
font-weight:600;
margin-right:10px;
font-size:14px;
}

.share a{
width:40px;
height:40px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
text-decoration:none;
font-size:14px;
transition:0.2s;
}

.share a:hover{
transform:scale(1.1);
}

.fb{background:#7f7f7f;}
.tw{background:#7f7f7f;}
.wa{background:#7f7f7f;}
.li{background:#7f7f7f;}

/* COMMENTS */

.comments{
margin-top:70px;
}

.comments h3{
font-size:24px;
margin-bottom:35px;
}

/* COMMENT */

.comment{
display:flex;
gap:15px;
margin-bottom:25px;
padding-bottom:25px;
border-bottom:1px solid #e8e3d8;
}

.avatar{
width:46px;
height:46px;
border-radius:50%;
background:#111;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:15px;
font-weight:600;
}

.comment-body h4{
font-size:15px;
}

.comment-body span{
font-size:12px;
color:#777;
}

.comment-body p{
margin-top:7px;
font-size:15px;
color:#444;
}

/* COMMENT FORM */

.comment-form{
margin-top:45px;
}

.comment-form h3{
margin-bottom:20px;
}

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

.comment-form input,
.comment-form textarea{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:8px;
background:#fff;
font-size:14px;
outline:none;
}

.comment-form textarea{
height:150px;
resize:none;
margin-bottom:15px;
}

.comment-form button{
background:#111;
color:#fff;
border:none;
padding:14px 28px;
border-radius:8px;
cursor:pointer;
font-size:14px;
transition:0.25s;
}

.comment-form button:hover{
background:#333;
}

/* SIDEBAR */

.sidebar{
display:flex;
flex-direction:column;
gap:35px;
}

/* SIDEBAR BOX */

.sidebar-box{
background:#f7f4ed;
padding:25px;
border-radius:10px;
border:1px solid #ece7dd;
}

/* SIDEBAR TITLE */

.sidebar-title{
font-size:18px;
font-weight:600;
margin-bottom:18px;
}

/* SEARCH */

.search-box{
display:flex;
}

.search-box input{
flex:1;
padding:12px;
border:1px solid #ddd;
border-radius:8px 0 0 8px;
background:#fff;
}

.search-box button{
background:#111;
color:#fff;
border:none;
padding:12px 16px;
border-radius:0 8px 8px 0;
cursor:pointer;
}

/* NEWSLETTER */

.newsletter input{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
margin-bottom:10px;
background:#fff;
}

.newsletter button{
width:100%;
background:#111;
color:#fff;
border:none;
padding:12px;
border-radius:8px;
cursor:pointer;
}

/* LATEST POSTS */

.latest-post{
display:flex;
gap:12px;
margin-bottom:15px;
align-items:center;
cursor:pointer;
}

.latest-post img{
width:70px;
height:70px;
border-radius:8px;
object-fit:cover;
}

.latest-post span{
font-size:14px;
font-weight:500;
color:#333;
transition:0.2s;
}

.latest-post:hover span{
color:#000;
}

/* CATEGORY */

.category a{
display:block;
padding:10px 0;
text-decoration:none;
color:#555;
border-bottom:1px solid #ece7dd;
font-size:14px;
}

.category a:hover{
color:#000;
padding-left:5px;
}

/* TABLET */

@media(max-width:1100px){

.blog-layout{
grid-template-columns:1fr;
gap:40px;
}

.blog-image img{
height:360px;
}

}

/* MOBILE */

@media(max-width:700px){

.container{
padding:35px 20px;
}

.blog-title{
font-size:30px;
}

.blog-desc p{
font-size:17px;
}

.blog-image img{
height:240px;
}

.blog-content{
padding:25px 5px;
}

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

.sidebar-box{
padding:22px;
}

}


/* ==== BLOG DETAILS END ==== */



/* ==== BADCRUMS START ==== */

.omtravelsbadcrums1{
width:100%;
background:#f7f4ed;
padding:22px 0;
margin-top:40px;
}

/* TOP LINE */

.omtravelsbadcrums1-topline{
width:100%;
height:0.6px;
background:#000;
margin-bottom:20px;
}

/* CONTAINER */

.omtravelsbadcrums1-container{
max-width:1500px;
margin:auto;
padding:0 15px;
}

/* BREADCRUMB */

.omtravelsbadcrums1-path{
font-size:14px;
color:#444;
font-weight:500;
display:flex;
align-items:center;
flex-wrap:wrap;
}

/* LINKS */

.omtravelsbadcrums1-path a{
color:#111;
text-decoration:none;
transition:0.3s;
}

.omtravelsbadcrums1-path a:hover{
text-decoration:underline;
}

/* SEPARATOR */

.omtravelsbadcrums1-path span{
margin:0 8px;
color:#888;
}

/* H1 */

.omtravelsbadcrums1-path h1{
font-size:14px;
font-weight:600;
margin:0;
color:#666;
}

/* MOBILE */

@media (max-width:768px){

.omtravelsbadcrums1{
padding:18px 0;
}

.omtravelsbadcrums1-container{
padding:0 12px;
}

.omtravelsbadcrums1-path{
font-size:13px;
line-height:1.6;
}

.omtravelsbadcrums1-path h1{
font-size:13px;
}

}

/* ==== BADCRUMS END ==== */





*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
overflow-x:hidden;
}

/* SECTION */

.omcontactus{
width:100%;
padding:80px 20px;
background:#f7f4ed;
}

/* CONTAINER */

.omcontactus-container{
max-width:1400px;
margin:auto;
display:flex;
justify-content:center;
}

/* FORM BOX */

.omcontactus-box{
width:100%;
max-width:1000px;
}

/* TITLE */

.omcontactus-title{
text-align:center;
font-size:36px;
margin-bottom:40px;
}

/* FORM */

.omcontactus-form input,
.omcontactus-form textarea{
width:100%;
padding:15px;
border:1.5px solid #000;
margin-bottom:18px;
background:transparent;
outline:none;
font-size:15px;
}

/* ROW */

.omcontactus-row{
display:flex;
gap:20px;
}

.omcontactus-row input{
flex:1;
}

/* TEXTAREA */

.omcontactus-form textarea{
height:140px;
resize:none;
}

/* BUTTON */

.omcontactus-form button{
width:100%;
padding:16px;
background:#000;
color:#fff;
border:none;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.omcontactus-form button:hover{
background:#222;
}

/* BOTTOM */

.omcontactus-bottom{
text-align:center;
margin-top:35px;
}

.omcontactus-email{
font-size:16px;
margin-bottom:20px;
}

.omcontactus-email i{
margin-right:8px;
}

/* SOCIAL */

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

.omcontactus-social a{
width:42px;
height:42px;
border:1px solid #000;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:#000;
transition:.3s;
}

.omcontactus-social a:hover{
background:#000;
color:#fff;
}

/* TABLET */

@media(max-width:992px){

.omcontactus-box{
max-width:90%;
}

.omcontactus-title{
font-size:30px;
}

}

/* MOBILE */

@media(max-width:768px){

.omcontactus{
padding:60px 15px;
}

.omcontactus-box{
max-width:100%;
}

.omcontactus-row{
flex-direction:column;
gap:0;
}

.omcontactus-title{
font-size:26px;
}

}

/* SMALL MOBILE */

@media(max-width:480px){

.omcontactus-title{
font-size:24px;
}

.omcontactus-form input,
.omcontactus-form textarea{
padding:13px;
font-size:14px;
}

.omcontactus-form button{
padding:14px;
font-size:15px;
}

}




/* NEWSLATTER FOOTER START */

.footernewslatter-section {
    background: #f7f4ed;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.footernewslatter-container {
    max-width: 1500px;
    width: 100%;
    text-align: center;
}

.footernewslatter-subtitle {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.footernewslatter-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.footernewslatter-desc {
    max-width: 600px;
    margin: auto;
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}


/* FORM */

.footernewslatter-form {
    max-width: 520px;
    margin: auto;
    display: flex;
    align-items: center;
    background: #ffffff40;
    border: 1px solid #ddd;
    border-radius: 35px;
    padding: 8px;
    gap: 10px;
    backdrop-filter: blur(4px);
}


/* INPUT */

.footernewslatter-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 18px;
    font-size: 14px;
    color: #111;
}


/* BUTTON */

.footernewslatter-form button {
    background: black;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
}

.footernewslatter-form button:hover {
    background: #333;
}


/* NOTE */

.footernewslatter-note {
    margin-top: 15px;
    font-size: 12px;
    color: #777;
}


/* MOBILE */

@media (max-width:600px) {

    .footernewslatter-title {
        font-size: 26px;
    }

    .footernewslatter-form {
        max-width: 95%;
        padding: 6px;
    }

    .footernewslatter-form input {
        padding: 12px 14px;
        font-size: 13px;
    }

    .footernewslatter-form button {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 25px;
    }

}



/* NEWSLATTER FOOTER START */
