.header__logo img {
    max-width: 115px;
    width: 100%;
}
.pageHero.-type-2 {
    position: relative;
    display: flex;
    align-items: center;
    height: 460px;
    z-index: 0;
}

.footerlogo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
}

.contactdf {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logofootercon {
    background: var(--color-white);
    width: 120px;
    height: 120px;
    border-radius: 73px;
    padding-top: 10px;
    padding-left: 10px;
}

.maiheader {
    background-color: #fb923c;
    color: #fff !important;
    font-size: 18px !important;
}

.hero__bg {
    position: relative;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* adjust darkness here */
    z-index: 1;
}

.maiheader a:hover {
    color: #000 !important;
}

.footer__main h5 {
    color: #fff;
    padding-top: 15px;
}

h2,
.lh-11,
a:hover {
    color: #fb923c;
}

/* h2 .split__line {
  background: linear-gradient(90deg, #3B2416, #6B3E26, #D96B2B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */
.bg-accent-new {
    background-color: #c75f0a;
}

.roomandsuite {
    padding-bottom: 80px;
}

.baseCard__image3 {
    max-height: 150px;
}

.baseCard__image2 {
    max-height: 250px;

}

.destinationimg {
    text-align: center;
}

.destinationimg img {
    width: 100%;
    max-width: 110px;
    object-fit: cover;
    align-items: center;
}

.hero__bg {
    overflow: hidden;
}
/* INPUT FIELDS */
.wp-block-jetpack-contact-form input[type="text"],
.wp-block-jetpack-contact-form input[type="email"],
.wp-block-jetpack-contact-form input[type="number"],
.wp-block-jetpack-contact-form input[type="tel"],
.wp-block-jetpack-contact-form input[type="time"],
.wp-block-jetpack-contact-form input[type="url"] {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    font-size: 15px;
    color: #222;
    outline: none;
    transition: all 0.3s ease;
}
.wp-block-jetpack-field-phone.wp-block-jetpack-input-wrap.grunion-field-wrap .jetpack-field__input-phone-wrapper{
	display:none !important;
}
/* PLACEHOLDER */
.wp-block-jetpack-contact-form input::placeholder {
    color: #999;
    font-size: 14px;
}.block-jetpack-field-phone.wp-block-jetpack-input-wrap.grunion-field-wrap 
.jetpack-field__input-phone-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
    height: 55px;
    background-color: #fff;
    transition: all 0.3s ease;
}
.block-jetpack-field-phone.wp-block-jetpack-input-wrap.grunion-field-wrap 
.jetpack-field__input-phone-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
    height: 55px;
    background-color: #fff;
    transition: all 0.3s ease;
}
/* FOCUS EFFECT */
.wp-block-jetpack-contact-form input:focus {
    border-color: #ff7a00; /* accent color */
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.1);
}
.wp-block-jetpack-contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    min-height: 120px;
    resize: none;
}
/* HOVER */
.wp-block-jetpack-contact-form input:hover {
    border-color: #bbb;
}
/* ============================= */
/* ROOM CARD DESIGN */
/* ============================= */

.roomCard {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.categrycard{
	display:flex;
	gap:20px;

	max-width:400px;
	
}
.categrycard .swiper-slide{
		background:#fff;
	border-radius: 16px;
	min-height:500px;
	
}
.categrycard .swiper-slide img ,.categrycard .swiper-slide .roomCard__image{
	max-height:300px !important;
	border-radius:16px 16px 0px 0px  !important;
	
}

.roomCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ============================= */
/* IMAGE */
/* ============================= */

.roomCard__image {
    position: relative;
    overflow: hidden;
}

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

.roomCard:hover img {
    transform: scale(1.08);
}

/* ============================= */
/* PRICE BADGE */
/* ============================= */

.roomCard__price {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

/* ============================= */
/* CONTENT */
/* ============================= */

.roomCard__content {
    padding: 18px;
}

.roomCard__content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.roomCard__content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ============================= */
/* FEATURES LIST (2 COLUMN) */
/* ============================= */

.features-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #444;
}

.features-list li i {
    color: #ff5a1f;
    font-size: 14px;
}

/* ============================= */
/* BUTTONS */
/* ============================= */

.d-flex {
    display: flex;
}

.gap-10 {
    gap: 10px;
}

.btn-main {
    background: #ff5a1f;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-main:hover {
    background: #e14b14;
}

.btn-outline {
    border: 1px solid #ff5a1f;
    color: #ff5a1f;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #ff5a1f;
    color: #fff;
}

.btntopsection {
    justify-content: space-between;
}

/* ============================= */
/* SMALL IMAGE HEIGHT */
/* ============================= */

.small-img-card .roomCard__image {
    height: 260px;
    /* adjust as needed */
}

.small-img-card .roomCard__image img {
    height: 100%;
    object-fit: cover;
}

/* Icon styling */
.iconCard__icon i {
    font-size: 36px;
    color: #ff5a1f;
    transition: 0.3s;
}

.contactsec::before {
    content: unset !important;
    z-index: unset !important;
}

/* Title */
.iconCard h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.baseCard__image {
    position: relative;
}

/* Hover effect */
.iconCard:hover i {
    transform: translateY(-5px);
    color: #e14b14;
}

.sectionBg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

/* Image */
.sectionBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.sec5::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;

}

.blog-img-sm {
    height: 320px;
    /* tu isko 200 / 180 bhi kar sakta hai */
    /* object-fit: cover; */
}

.hero__titleinner,
.hero__titleinner div {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hero__titleinner p {
    margin: 0;
}

.pageHero__bg {
    position: relative;
}

.pageHero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay */
.pageHero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.abouttitle {
    padding-top: 60px;
}

/* Ensure image stays below overlay */
.pageHero__bg img {
    position: relative;
    z-index: 0;
}

.aboutimg {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
}

.textvillas {
    font-size: 12px;
}

.iconCard__icon img {
    max-width: 70px;
}

.iconCard__icon2 img {
    width: 100px;
}

.tsection {
    max-width: 1000px;
    margin: 0 auto;
}

.cta.-type-1 {
    height: 400px;
}

.policy-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.policy-block {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 140px;
    /* equal height */
}

.policy-block.green {
    background-color: #dff7df;
    color: #2a7a2a;
}

.policy-block.yellow {
    background-color: #fff6d6;
    color: #a0850f;
}

.policy-block.red {
    background-color: #f8d7da;
    color: #7a2a2a;
}

.policy-block .icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.buttons {
    /* margin-top: 30px; */
    display: flex;
    gap: 15px;
}

.buttons a {
    flex: 1;
    text-align: center;
    background-color: #e2e8f0;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    color: black;
    user-select: none;
    transition: background-color 0.3s;
}

.buttons a:hover {
    background-color: #cbd5e1;
}

.table.-type-2 td {
    padding: 20px 20px;
}

.review-box {
    display: flex;
    gap: 30px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 25px;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

.left {
    text-align: center;
    width: 180px;
}

.stars img {
    width: 100%;
    margin: 2px;
}

.rating {
    margin: 10px 0;

}

.rating,
.badge,
.reviews {
    position: relative;
    bottom: 48px;
}

.score {
    font-size: 42px;
    font-weight: bold;
}

.outof {
    font-size: 20px;
    color: #555;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: bold;
    margin: 10px 0;
}

.laurel {
    width: 16px;
}

.reviews a {
    color: #fb923c;
    text-decoration: none;
    font-weight: 500;
}

.right {
    flex: 1;
}

.right h3 {
    margin: 0 0 10px;
}

.right p {
    color: #444;
    line-height: 1.4;
}

.right a {
    color: #fb923c;
    text-decoration: none;
}

.ai-note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.ai-note img {
    width: 14px;
}

.baseCard__badgenew {
    position: absolute;
    bottom: 0px !important;
    left: 0 !important;
    padding: 15px 10px !important;
    z-index: 1;
    background: rgba(36, 35, 35, 0.4) !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    border-radius: 0 0 16px 17px !important;
    min-height: 59px !important;
    color: #fff !important;
}

.review-card-unique {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 20px;
    max-width: 433px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* HEADER */
.review-card-unique .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* USER */
.review-card-unique .review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card-unique .review-avatar {
    width: 48px;
    height: 48px;
    background: #a67c52;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.blogcard2{
	height:350px;
}
.bg-lightblog a,.bg-lightblog .baseCard{
	background:#F7F3EE !important;
}
.review-card-unique .review-name {
    font-weight: 600;
    font-size: 18px;
}

.review-card-unique .review-time {
    font-size: 14px;
    color: #777;
}

/* RATING */
.review-card-unique .review-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #999;
}

.review-card-unique .review-rating img {
    width: 16px;
}

/* TAG */
.review-card-unique .review-tag {
    margin: 15px 0;
    font-weight: 600;
    font-size: 18px;
}

.review-card-unique .check {
    color: green;
    margin-right: 6px;
}

/* TEXT */
.review-card-unique .review-text {
    color: #444;
    line-height: 1.5;
}

.review-card-unique .review-text a {
    color: #1a73e8;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
}


.readmore-wrap h2{
	padding:30px 0px 10px 0px;
}
.readmore-wrap h3{
	padding:15px 0px 5px 0px;
}

/* FOOTER */
.review-card-unique .review-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #777;
    font-size: 14px;
}

/* WhatsApp Button Full Style */
.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    width: 100%;
    margin-top: 15px;
    /* Animation */
    animation: pulseGlow 1.5s infinite;
}

/* Icon Style */
.whatsapp-btn i {
    font-size: 16px;
}

.pricebox {
    background: linear-gradient(90deg, rgba(249, 218, 186, 1) 0%, rgb(253 74 29 / 42%) 40%, rgba(252, 176, 69, 1) 100%);
    padding: 15px 40px;
    display: inline-block;
    text-align: center;
    font-family: 'Jost', sans-serif;
    /* transition: transform 0.35s ease, box-shadow 0.35s ease; */
    position: relative;
    overflow: hidden;
    border: 2px solid #000;
    /* border-radius: 16px; */
    color: #000;
}

.menuFullScreen__mobile__bg {
    height: 100%;
}

.blogs .img-ratio {
    border-radius: 16px 16px 0px 0px;
}

.viilasroom .swiper-slide {
    background-color: #fff !important;
    border-radius: 16px;
}

.BestRatedVillas .swiper-slide,
.BestRatedVillas .swiper-slide .baseCard__image {
    max-height: 380px !important;
}

.viilasroom .swiper-slide .roomCard__image img {

    border-radius: 16px 16px 0px 0px !important;

}

.blogcard {
    border: 1px solid;
    padding: 20px 0px 10px 10px;
    border-radius: 0px 0px 16px 16px;
}

.blogcard .button {
    padding: 0px;
}

.blogslider .swiper-slide {
    max-width: 380px !important;
}

.menuFullScreen__topMobile>*:nth-child(2) {
    left: unset;
    right: 0;
}

/* Price text */
.pricebox h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    z-index: 1;
    position: relative;
}

.navAbsolute2 {
    position: relative !important;
}

.bannerbottom .button.-outline-accent-1 {
    border-color: tomato !important;
    background-color: rgba(255, 255, 255, 0.6);
    /* 👈 transparent white */
}

/* Desktop (default) */
.amenities-scroll {
    display: flex;
    flex-wrap: wrap;
    /* items go to next line */
    gap: 25px;
}

.amenity-item {
    display: flex;
    align-items: center;
    width: calc(50% - 15px);
    /* 2 items per row (like your original) */
}

/* Desktop (default) */
.features-scroll {
    flex-wrap: wrap;
	gap:18px;
    /* normal layout */
}

.ppbuton .button {
    max-width: 100% !important;
    width: 100% !important;
}

.getloc {
    width: max-content !important;
    max-width: max-content !important;
}

.phonebutton {
    display: none;
}

/* ============================= */
/* MOBILE & TABLET (<= 991px) */
/* ============================= */

@media (max-width: 991px) {

    .desktopbutton {
        display: none !important;

    }
.readmore-wrap h2{
	padding:10px 0px;
}
    .hero__subtitle {
        font-size: 12px;
        padding-top: 20px
    }

    .instaclas .instadib {
        padding: 0 !important;
        margin-right: 10px;
        margin-left: 10px;
    }

    .phonebutton {
        display: block;
    }

    /* Features Scroll */
    .features-scroll {
        flex-wrap: nowrap;
        /* one row */
        overflow-x: auto;
        /* enable scroll */
        gap: 20px;
        scroll-behavior: smooth;
    }

    .ppbuton {
        gap: 10px !important;
        padding-top: 10px !important;
    }

    .ppbuton .button {
        padding: 10px 12px;
        /* button ke andar ka space kam */
        font-size: 14px;
    }

    .feature-item {
        min-width: max-content;
        /* prevent breaking */
        white-space: nowrap;
    }

    /* Amenities Scroll */
    .amenities-scroll {
        flex-wrap: nowrap;
        /* single row */
        overflow-x: auto;
        /* enable scroll */
        scroll-behavior: smooth;
    }

    .amenity-item {
        min-width: max-content;
        /* prevent shrinking */
        width: auto;
        white-space: nowrap;
    }

    /* Scrollbar */
    .features-scroll::-webkit-scrollbar,
    .amenities-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .features-scroll::-webkit-scrollbar-thumb,
    .amenities-scroll::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    /* Layout */
    .singlevillsection {
        flex-direction: column-reverse !important;
    }

    .maiheader {
        font-size: 12px !important;
    }

    .header__center {
        position: absolute;
        right: 5%;
        left: unset;
        transform: unset;
    }
}


/* ============================= */
/* TABLET (<= 768px) */
/* ============================= */

@media (max-width: 768px) {

    .pricebox {
        padding: 25px 30px;
    }
.categrycard{
	flex-direction:column-reverse !important;
	}
    .pricebox h2 {
        font-size: 28px;
    }

    .roomandsuite {
        padding-bottom: 40px;
    }

    .roomCard__content {
        padding: 14px;
    }

    .roomCard__content h3 {
        font-size: 18px;
    }
}


/* ============================= */
/* MOBILE (<= 576px) */
/* ============================= */

@media (max-width: 576px) {

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

    .rounded-16 {
        border-radius: 8px;
    }

    .review-box {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .text-30 {
        font-size: 18px !important;
    }

    .logofootercon {
        background: var(--color-white);
        width: 80px;
        height: 80px;
        border-radius: 73px;
        padding-top: 0;
        padding-left: 10px;
    }

    .bannerbottom .button.-outline-accent-1 {
        height: 60px !important;
    }

    .bestvillsasec {
        flex-direction: column-reverse;
    }

    .table.-type-2 td {
        padding: 0;
    }

    .bestratedarrow {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
    }

    .viilasroom .swiper-wrapper .swiper-slide {
        width: 290px !important;
    }

    .besteratedwidth .swiper-wrapper .swiper-slide {
        width: 320px !important;
    }

    .BestRatedVillas .swiper-slide,
    .BestRatedVillas .swiper-slide .baseCard__image {
        max-height: 380px !important;
        max-width: 300px;
    }

    .besteratedwidth .swiper-slide {
        max-height: 350px;
        max-width: 240px;
    }

    #gallerysection .swiper-slide {
        max-height: 450px;
        max-width: 340px;
    }

    .reviews .swiper-slide,
    .review-card-unique {
        max-width: 317px;
        margin-top: 49px;
        margin-right: 10px;
    }

    .baseCard__badgenew {
        position: absolute;
        bottom: 31px !important;
    }

    .navAbsolute3 {
        padding-top: 40px !important;
    }

    .besteratedwidth .swiper-slide img {
        max-height: 300px;
    }

    .baseCard.-type-3 .baseCard__badge {
        position: absolute;
        bottom: 26px;
        left: 0;
        width: 100%;
        max-width: 100%;
        padding: 15px 10px;
        text-align: center;
        background: unset;
        border-radius: 0 0 12px 12px;
        z-index: 1;
    }

    .lh-1 {
        line-height: 23px !important;
    }

    .baseCard.-type-1 .baseCard__content {
        border-radius: 12px;
    }
}


/* ============================= */
/* SMALL MOBILE (<= 480px) */
/* ============================= */

@media (max-width: 480px) {

    .pricebox {
        padding: 4px 11px;
    }

    .pricebox h2 {
        font-size: 24px;
    }

    .md\:text-24 {
        font-size: 20px !important;
    }

    .roomCard__content h3 {
        font-size: 17px;
    }
}


/* ============================= */
/* DESKTOP */
/* ============================= */

@media (min-width: 992px) {

    .sticky-sidebar {
        position: sticky;
        top: 100px;
    }
}


/* ============================= */
/* ANIMATIONS */
/* ============================= */

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* ============================= */
/* MISC */
/* ============================= */

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    color: #fff;
    animation: none;
}

.review-card-unique .review-footer img {
    width: 18px;
}

