/* ============================================
   HOME VILLA PG – style.css
   ============================================ */

/* ---- Variables ---- */
:root {
    --navy: #1a2744;
    --navy-dark: #111c36;
    --gold: #e8a020;
    --gold-lt: #f5c55a;
    --white: #ffffff;
    --off: #f8f9fc;
    --text: #2d3748;
    --muted: #6b7280;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(26, 39, 68, 0.10);
    --transition: 0.3s ease;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

input,
select,
textarea,
button {
    font-family: inherit;
}

/* ---- Container ---- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    margin-top: 14px;
}

/* ---- Typography helpers ---- */
.section-eyebrow {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
}
.testimonials .section-title {
    color: var(--white);
    text-align: center; 
}
.testimonials .section-eyebrow {
    text-align: center;
}
.accent {
    color: var(--gold);
}

/* ---- Section spacing ---- */
.section {
    padding: 55px 0;
}

html {
    scroll-behavior: smooth;
}

#home,
#about {
    scroll-margin-top: 130px;
}
#rooms {
    scroll-margin-top: 40px;
}
#facilities,
#food {
    scroll-margin-top: 50px;
}
#gallery {
    scroll-margin-top: 81px;
}
#food-menu,
#booking,
#contact,
#review,
#reviews,
#faq {
    scroll-margin-top: 78px;
}


.room-img-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.room-img-slider img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.room-slide{
    overflow:hidden;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    transition: var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    padding: 14px 20px;
}

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

.logo-icon {
    font-size: 1.8rem;
}

.logo-title {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
    width: 120px;
}

.logo-sub {
    display: block;
    font-size: 0.65rem;
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 24px;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.navbar .btn {
    margin-left: 12px;
    padding: 9px 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding-top: 90px;
    background: linear-gradient(135deg, #eef2ff 0%, #fff8ec 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 20px 60px;
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 16px;
}

.hero-sub {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-img-placeholder {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 39, 68, .15);
}

.hero-img-placeholder img {
    border-radius: 20px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-features {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 30px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 160px;
}

.feature-item:first-child {
    padding-left: 0;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 1.8rem;
}

.feature-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.feature-item small {
    font-size: 0.75rem;
    color: var(--muted);
}

.feature-item strong {
    line-height: 10px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    margin-bottom: 14px;
    color: var(--muted);
}

.checklist {
    margin: 20px 0;
}

.checklist li {
    padding: 6px 0;
    font-size: 0.95rem;
}

.stats-row {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.stat-box {
    background: var(--navy);
    color: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius);
    text-align: center;
    flex: 1;
    min-width: 90px;
}

.stat-box strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-box small {
    font-size: 0.75rem;
    opacity: .8;
}

.about-image img {
    border-radius: 20px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

/* ============================================
   ROOMS
   ============================================ */
.rooms .section-title,
.rooms .section-eyebrow {
    text-align: center;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

/*.room-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); position: relative; border: 2px solid transparent; }*/
.room-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px rgba(26, 39, 68, 0.10);
    transition: var(--transition);
    position: relative;
}

/*.room-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,39,68,.15); }*/
.room-card.featured {
    border-color: var(--gold);
}

.room-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}

.room-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.room-body {
    padding: 22px;
}

.room-body h3 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
}

.room-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.room-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
}

.room-features li {
    font-size: 0.88rem;
    padding: 4px 0;
    color: var(--muted);
}

/*.rooms-note { text-align: center; margin-top: 24px; font-size: 0.85rem; color: var(--muted); padding: 14px 20px; background: var(--off); border-radius: 8px; }*/

/* ============================================
   FACILITIES
   ============================================ */
.facilities .section-eyebrow,
.facilities .section-title {
    text-align: center;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.facility-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-4px);
    background: var(--navy);
    color: var(--white);
}

.facility-card:hover h4,
.facility-card:hover p {
    color: var(--white);
}

.fac-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.facility-card h4 {
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.facility-card p {
    font-size: 0.8rem;
    color: var(--muted);
}

.facilities-banner {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 18px;
    margin-top: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: .05em;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery .section-eyebrow,
.gallery .section-title {
    text-align: center;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 9px 22px;
    border-radius: 24px;
    border: 2px solid var(--border);
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.gallery-grid {
    display: grid;
    gap: 16px;
    margin-top: 28px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/*.gal-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; }*/
.gal-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: var(--radius);
}

.gal-item:hover img {
    transform: scale(1.05);
}

.gal-item.hidden {
    display: none;
}

/* ============================================
   FOOD
   ============================================ */
.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.food-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 16px 0 8px;
}

.food-icons {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.food-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.food-icon-item span {
    font-size: 1.8rem;
}

.food-icon-item small {
    font-size: 0.72rem;
    color: var(--muted);
}

.food-image img {
    border-radius: 20px;
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

/* ===========================
   TESTIMONIALS
=========================== */

.testi-slider-wrap{
    position:relative;
    margin-top:50px;
}

.testi-slider .testi-card{
    /* background:#fff; */
    border-radius:20px;
    padding:30px;
    margin:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.testi-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 28px;
}

.testi-slider .testi-card:hover{
    transform:translateY(-5px);
}

.quote{
    font-size:16px;
    line-height:1.8;
    color:#fff;
    margin-bottom:25px;
}
.testi-author strong {
    color: var(--white);
    font-size: 0.9rem;
}
.testi-author{
    display:flex;
    align-items:center;
    gap:15px;
}

.testi-avatar-img img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.testi-avatar{
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
}

.author-info strong{
    display:block;
    font-size:18px;
    margin-bottom:5px;
}

.author-info span{
    color:#777;
    font-size:14px;
}

/* Arrows */

.testi-prev,
.testi-next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    cursor:pointer;
    font-size:22px;
    z-index:99;

}

.testi-prev{
    left:-20px;
}

.testi-next{
    right:-20px;
}

.testi-prev:hover,
.testi-next:hover{
    background:#0d6efd;
    color:#fff;
}

/* Slick Dots */

.slick-dots{
    bottom:-45px;
}

.slick-dots li button:before{
    font-size:12px;
}

.slick-slide{
    height:inherit !important;
}

.slick-track{
    display:flex !important;
}

.slick-slide{
    height:auto;
}

/* .slick-slide > div{
    height:100%;
} */

@media(max-width:768px){

.testi-prev,
.testi-next{
display:none;
}

}
/* ============================================
   FAQ
   ============================================ */
.faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.accordion {
    margin-top: 28px;
}

.acc-item {
    border-bottom: 1px solid var(--border);
}

.acc-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 16px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

.acc-header:hover {
    color: var(--gold);
}

.acc-header span {
    font-size: 1.3rem;
    font-weight: 400;
    transition: transform var(--transition);
}

.acc-item.open .acc-header span {
    transform: rotate(45deg);
}

.acc-body {
    display: none;
    padding: 0 0 16px;
}

.acc-item.open .acc-body {
    display: block;
}

.acc-body p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-image img {
    border-radius: 20px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: var(--shadow);
    margin-top: 60px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 25px;
}

/* .contact-items { margin-top: 24px; } */
.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.c-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--navy);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-form-box {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 14px;
    transition: border-color var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--navy);
}

/* ============================================
   BOOKING
   ============================================ */
.booking {
    background: var(--off);
}

.booking .section-eyebrow,
.booking .section-title {
    text-align: center;
}

.booking-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 820px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* .form-group { margin-bottom: 20px; } */
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-tagline {
    font-size: 0.85rem;
    margin-top: 15px;
    max-width: 252px;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 0.87rem;
}

.footer ul li a:hover,
.footer a:hover {
    color: var(--gold-lt);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.fb {
    background: #1877f2;
    color: #fff;
}

.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.wa {
    background: #25d366;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, .4);
}

/* ============================================
   Custome Css
   ============================================ */
#menu-pg-menu {
    display: flex;
    gap: 35px;
    justify-content: center;
    margin: 0;
    padding-right: 20px;

}

.footer-links ul {
    margin: 0;
}

.footer-contact ul {
    margin: 0;
}

.footer-bottom p {
    padding: 0;
    margin: 0;
}

ul.room-features {
    margin: 0;
}

.logo {
    width: 60px;
    height: 50px;
    margin: 0;
    padding: 0;
}

.logo-color-footer {
    color: #ffff;
}

.wpcf7 textarea {
    min-height: 180px;
    padding: 15px;
    width: 100%;
}

.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-primary {
    width: 200px;
    height: 50px;
}


.testimonials-slider .testi-card {
    margin: 0 10px;

}

.testimonials-slider {
    margin: 0 -10px;
    display: flex;
    padding: 50px 0 100px;
}

.slick-dots {
    bottom: -40px;
}

.testimonials {
    background: var(--navy);
}

.testimonials-slider .slick-slide {
    display: none;
    float: left;
    min-height: 1px;
    height: 450px !important;
}

.slick-prev:before,
.slick-next:before {
    color: #fff;
}

.testi-card.slick-slide.slick-active {
    display: grid;
}

.room-card.slick-slide {
    margin: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 10px;
}

.offer-price {
    color: #e63946;
    font-size: 24px;
    font-weight: 700;
}

span.offer-price.room-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

/* Lightbox CSS */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 28px;
    color: #fff;
    font-size: 38px;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    z-index: 10000;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: background 0.2s;
    user-select: none;
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.18);
}

.lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    opacity: 0.7;
}

.gal-item img {
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.gal-item img:hover {
    transform: scale(1.03);
    opacity: 0.88;
}

.gallery {
    margin-bottom: 1.5em;
    display: block;
    grid-gap: 1.5em;
}

/* ==============Food Menu=========================== */
.weekly-food-menu {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.food-menu-title {
    text-align: center;
    margin-bottom: 20px;
    color: #ff6b35;
}

.food-table {
    width: 100%;
    border-collapse: collapse;
}

.food-table th {
    text-align: left;
    background: var(--navy);
    color: var(--white);
    padding: 18px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: .05em;
}

.food-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.food-table tr:hover {
    background: #f9f9f9;
}

.food-content {
    text-align: center;
}

.food-note-row td {
    background: #fff8e8;
    color: #333;
    font-weight: 500;
    text-align: center;
    padding: 15px 20px;
}

.food-table {
    overflow-x: auto;
    white-space: nowrap;
}
/* Contact Form WhatsApp Button Fix */
/* Button ઉપરની extra space remove */
.wpcf7 a.btn {
  display: inline-block;
  height: auto;
  padding: 14px 32px;
  line-height: normal;
  margin-top: 0;
}

.wpcf7 a.btn-lg {
  margin-top: 0;
  padding-top: 14px;
}
.wpcf7 a.btn br {
  display: none;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .section {
        padding: 55px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
        gap: 12px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
        padding-top: 48px;
    }

    .hamburger {
        display: flex;
    }

    .navbar .btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 20px 20px;
    }

    .hero-img-placeholder img {
        height: 260px;
    }

    .hero-features {
        gap: 12px;
        padding: 20px;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 12px;
        min-width: 45%;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .about-grid,
    .food-grid,
    .faq-wrap,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image img,
    .food-image img,
    .faq-image img {
        height: 280px;
    }

    .rooms-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .hero-cta {
        flex-direction: column;
    }

    .stats-row {
        gap: 12px;
    }

    .stat-box {
        min-width: 80px;
    }

    .faq-image {
        display: none;
    }

    .booking-form-wrap {
        padding: 24px;
    }

    #menu-pg-menu {
        display: block;
        gap: 50px;
        justify-content: center;
        margin: 0;
        padding-right: 10px;
    }

    .hero {
        padding-top: 0px;
        background: linear-gradient(135deg, #eef2ff 0%, #fff8ec 100%);
    }

    .navbar {
        position: sticky;
        left: 0;
        right: 0;
        top: 0;
        z-index: 1000;
        background: var(--white);
        transition: var(--transition);
    }

    #menu-pg-menu {
        display: block;
        gap: 50px;
        justify-content: center;
        margin: 0;
        padding-right: 10px;
        padding: 0;
        margin: 0;
        line-height: 43px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    #menu-pg-menu {
        display: block;
        gap: 50px;
        justify-content: center;
        margin: 0;
        padding-right: 10px;
        padding: 0;
        margin: 0;
        line-height: 43px;
    }

    .hero-features {
        gap: 12px;
        padding: 20px;
        display: grid;
        border-radius: unset;
    }

    .hero {
        padding-top: 0px;
        background: linear-gradient(135deg, #eef2ff 0%, #fff8ec 100%);
    }

    .navbar {
        position: sticky;
        left: 0;
        right: 0;
        top: 0;
        z-index: 1000;
        background: var(--white);
        transition: var(--transition);
    }

    .nav-links.open {
        display: flex;
        padding-top: 48px;
    }

    .stats-row {
        display: flex;
        margin-top: 28px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .food-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}