* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    
}
body {
    overflow-x: hidden !important;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    padding: 0px 40px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    
}

.logo img {
    height: 95px;      
    width: auto;
    cursor: pointer;
}
.navbar .nav-links li {
    display: inline;
    margin-left: 80px;
    word-spacing: 0%;
}
.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* MAIN NAV LINKS */
.nav-links {
    display: flex !important;      
    align-items: center;
    gap: 47px;                   
}

/* REMOVE INLINE / BLOCK ISSUE */
.nav-links li {
    display: flex !important;
    align-items: center;
    margin: 0 !important;      
    padding: 0;
}

/* SOCIAL ICON WRAPPER */
.nav-social {
    display: flex !important;     
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
}

/* ICON STYLE */
.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}

/* HOVER */
.nav-social a:hover {
    color: #7cbf8e;
    transform: translateY(-3px);
}


/* ===== MOBILE ONLY ===== */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        margin-left: auto;
        z-index: 1100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;

        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(12px);

        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 120px 25px;

        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 18px;
    }
}
 @media (max-width: 768px) {
    .navbar {
        padding: 5px 12px;   
    }
}
/* Hide hamburger and mobile menu on desktop */
.menu-toggle, .mobile-nav {
    display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    /* Show hamburger */
    .menu-toggle {
        display: block;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
        position: absolute;
        top: 30px;
        right: 30px;
        z-index: 1100;
    }

    /* Sidebar menu */
    .mobile-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -260px; 
        width: 200px;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        padding: 99px 25px;
        gap: 25px;
        transition: left 0.4s ease;
        z-index: 1000;
    }

    .mobile-nav li a {
        color: #fff;
        font-size: 18px;
        text-decoration: none;
    }

    .mobile-nav.active {
        left: 0; 
    }

    /* Hide desktop nav on mobile */
    .nav-links {
        display: block;
    }
}
.mobile-logo {
    text-align: center;
    margin-top: -100px;
    margin-bottom: 13px;
    transform: translateX(-50px); 
}

.mobile-logo img {
    height: 80px;
    width: auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    width: 100%;
    background: url("../imgvideo/img/booking.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45); /* text readable */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
}

.hero-content p {
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Text styling */
.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
}
.hero-content h1 {
    
    font-size: 40px;   
    line-height: 1.3;  
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

.hero-content.show h1 {
    transition-delay: 0.2s;
}

.hero-content.show p {
    transition-delay: 0.5s;
}

.hero-content.show h1,
.hero-content.show p {
    opacity: 1;
    transform: translateY(0);
}

/* Booking Form */
.booking-wrapper{
  max-width:900px;
  width:100%;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(18px);
  border-radius:18px;
  padding:24px;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  margin:30px auto;
  animation:fadeUp .7s ease;
}
@keyframes fadeUp{
  from{opacity:0;transform:translateY(25px)}
  to{opacity:1;transform:translateY(0)}
}

/* Header inside booking */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}
.header h1{font-size:22px; font-weight:600;}
.badge{
  background:linear-gradient(135deg,#2f855a,#38b2ac);
  color:#fff;
  padding:6px 14px;
  border-radius:30px;
  font-size:12px;
}

/* Form Grid */
.content{display:grid; grid-template-columns:1.1fr .9fr; gap:24px;}
.form{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.form-group{position:relative;}
.form-group i{position:absolute; top:50%; left:10px; transform:translateY(-50%); color:#777; font-size:13px;}
input,select{width:100%; padding:10px 10px 10px 32px; border-radius:10px; border:1px solid #ddd; font-size:13px; background:#fff;}
input:focus,select:focus{outline:none; border-color:#2f855a;}
.full{grid-column:1/3;}

/* Button */
button{grid-column:1/3; padding:13px; border:none; border-radius:12px; background:linear-gradient(135deg,#2f855a,#38b2ac); color:#fff; font-size:14px; cursor:pointer; transition:.3s;}
button:hover{transform:translateY(-2px); box-shadow:0 12px 30px rgba(47,133,90,.4);}
.send-options{
    display: flex;
    gap: 15px;
    grid-column: 1 / 3;   
}

.send-options button{
    flex: 1;
    grid-column: auto;   
}

/* Policies */
.policies h3{font-size:15px; margin-bottom:10px;}
.policy-box{background:rgba(255,255,255,.9); border-radius:14px; padding:14px; margin-bottom:14px; box-shadow:0 8px 20px rgba(0,0,0,.08);}
.policy-box li{font-size:12px; margin-bottom:6px; color:#444;}

/* Process & Success */
.processing,.success{display:none; text-align:center; padding:60px 20px;}
.loader{width:46px; height:46px; border:5px solid #ddd; border-top:5px solid #2f855a; border-radius:50%; margin:18px auto; animation:spin 1s linear infinite;}
@keyframes spin{100%{transform:rotate(360deg)}}
/* ============================================
   FAQ SECTION - FULL WIDTH (EXPANDED)
   ============================================ */

.faq-wrapper {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(145deg, #f5f8f5 0%, #eaf2ea 100%);
    position: relative;
}

/* Decorative Leaf Pattern */
.faq-wrapper::before {
    content: '🌿🌱🍃';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    opacity: 0.08;
    white-space: pre;
    pointer-events: none;
}

.faq-wrapper::after {
    content: '🍃🌱🌿';
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 50px;
    opacity: 0.08;
    white-space: pre;
    pointer-events: none;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
   padding: 0 20px;
    
}

.faq-header .badge {
    display: inline-block;
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2d6a4f;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(45, 106, 79, 0.25);
}

.faq-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a3c2c;
    margin-bottom: 20px;
    position: relative;
    display: block;
    text-align: center;
}

.faq-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #7cbf8e, #2d6a4f);
    border-radius: 5px;
}

.faq-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #7cbf8e, #2d6a4f);
    border-radius: 5px;
}

.faq-header p {
    font-size: 1.05rem;
    color: #5a6e5a;
    max-width: 600px;
    margin: 25px auto 0;
}

/* ===== FAQ CONTENT CONTAINER - FULL WIDTH ===== */
.faq-content {
    max-width: 1400px;  
    width: 92%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* FAQ Item Card - Wider */
.faq-item {
    background: #ffffff;
   
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    border: 1px solid rgba(124, 191, 142, 0.15);
    overflow: hidden;
    width: 100%;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(124, 191, 142, 0.35);
    transform: translateY(-3px);
}

/* FAQ Question Button - More Spacing */
.faq-question {
    width: 100%;
    padding: 26px 35px;  
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem; 
    font-weight: 600;
    color: #1e2f2a;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: #2d6a4f;
}

/* Icon Container - Larger */
.faq-icon {
    width: 44px;  
    height: 44px;
    background: rgba(124, 191, 142, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    color: #2d6a4f;
    font-size: 18px;  
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #2d6a4f;
    transform: scale(1.05);
}

.faq-item.active .faq-icon i {
    color: white;
    transform: rotate(180deg);
}

/* FAQ Answer - More Padding */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
    background: #fafdfb;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;  
    border-top-color: rgba(124, 191, 142, 0.25);
}

.faq-answer p {
    padding: 26px 35px;  
    font-size: 1rem;  
    line-height: 1.8;
    color: #4a5b55;
    margin: 0;
}

/* Active Question */
.faq-item.active {
    background: #ffffff;
    border-color: rgba(124, 191, 142, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-question h3 {
    color: #2d6a4f;
}

/* ===== DESKTOP LARGE SCREENS ===== */
@media (min-width: 1600px) {
    .faq-content {
        max-width: 1600px;
        width: 88%;
    }
    
    .faq-question {
        padding: 30px 40px;
    }
    
    .faq-question h3 {
        font-size: 1.3rem;
    }
    
    .faq-answer p {
        padding: 30px 40px;
        font-size: 1.05rem;
    }
    
    .faq-icon {
        width: 48px;
        height: 48px;
    }
    
    .faq-icon i {
        font-size: 20px;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .faq-wrapper {
        padding: 50px 0;
    }
    
    .faq-header {
        margin-bottom: 35px;
    }
    
    .faq-header h1 {
        font-size: 1.8rem;
    }
    
    .faq-header p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .faq-content {
        width: 95%;
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 18px 22px;
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 18px 22px;
        font-size: 0.85rem;
    }
    
    .faq-icon {
        width: 34px;
        height: 34px;
    }
    
    .faq-icon i {
        font-size: 14px;
    }
}

/* ===== TABLET RESPONSIVE ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .faq-content {
        max-width: 1200px;
        width: 90%;
    }
    
    .faq-question {
        padding: 22px 28px;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-answer p {
        padding: 22px 28px;
        font-size: 0.92rem;
    }
}
.faq-wrapper.booking-wrapper {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 0% !important;
    padding: 40px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}
/* Animation */
@keyframes faqFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: faqFadeUp 0.5s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }
/* Contact & Footer */
/* ===== FOOTER BASE ===== */
.footer {
    position: relative;
    width: 100%;
    padding: 2px 0 0;
    color: #eaeaea;

    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
        url("../imgvideo/img/gallery3.jpeg") center / cover no-repeat;
}

/* subtle dark texture */
.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(124,191,142,0.15), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 60%);
    z-index: 0;
}

/* ===== CONTAINER ===== */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1.9fr 1fr 1fr 1fr;
    gap: 20px;

    position: relative;
    z-index: 1;
}

/* ===== LOGO ===== */
.footer-logo {
    height: 100px;
    width: auto;
    cursor: pointer;
    position: relative;
    left: -29px;
}

/* ===== TEXT ===== */
.footer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d6d6d6;
}

/* ===== PURE VEG ===== */
.food-type{
    display: flex;
    gap: 25px;
}

/* VEG */
.pure-veg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 25px;
    font-weight: 600;
    color: #caffd8;
}

.veg-dot {
    width: 14px;
    height: 14px;
    background: #1aff6b;
    border-radius: 4px;
    box-shadow: 0 0 12px #1aff6b;
}

/* NON-VEG */
.pure-nonveg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 25px;
    font-weight: 600;
    color: #ffd6d6;
}

.nonveg-dot {
    width: 14px;
    height: 14px;
    background: #ff2a2a;
    border-radius: 4px;
    box-shadow: 0 0 12px #ff2a2a;
}


/* ===== HEADINGS ===== */
.footer h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 65px;
    position: relative;
    color: #ffffff;
}

.footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 55px;
    height: 3px;
    background: linear-gradient(to right, #7cbf8e, #b8f0c6);
    border-radius: 10px;
}
.footer-col h3{
    margin-top: 30px;   
}
/* ===== LISTS ===== */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 16px;
}

.footer ul li a {
    line-height: 1.1;
    letter-spacing: 0.4px;
    color: #d0d0d0;
}

.footer ul li::before {
    content: "›";
    margin-right: 10px;
    color: #7cbf8e;
}

.footer ul li:hover {
    color: #b8f0c6;
    transform: translateX(6px);
}
.useful-links {
    padding-left: 0;
    margin-left: -40px;   
}

.footer-col h4:hover {
    color: #b8f0c6;
    transition: 0.3s ease;
}


.footer-col h4:hover i {
    transform: scale(1.15);
    color: #b8f0c6;
    transition: 0.3s ease;
}

.footer-col p:hover {
    color: #ffffff;
    transform: translateX(4px);
    transition: 0.3s ease;
}

.footer-col ul li a {
    transition: all 0.3s ease;
}

.footer-col ul li:hover a {
    color: #b8f0c6;
    padding-left: 6px;
}

.footer-col ul li::before {
    transition: 0.3s ease;
}

.footer-col ul li:hover::before {
    color: #b8f0c6;
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .useful-links {
        margin-left: 0;        
        padding-left: 0;
        text-align: left;   
    }
 
}
/* ===== CONTACT ===== */
.footer .contact span {
    display: block;
    margin-bottom: 12px;
    color: #d0d0d0;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: #7cbf8e;
    color: #000;
    transform: translateY(-6px);
}

/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 5%;
    font-size: 14px;
   color: #cfcfcf;
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
     top: 10px;  
    
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .footer-bottom-links {
    display: flex;
    gap: 20px; 
}

.footer-bottom .footer-bottom-links a {
    text-decoration: none;
    color: #cfcfcf;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-bottom .footer-bottom-links a:hover {
   color: #cfcfcf;
    text-decoration: underline;
}
/* ===== FOOTER BOTTOM MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 15px 10px;
    }

    .footer-bottom .footer-botom-links {
        flex-direction: column;
        gap: 8px;
    }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer h3::after {
        left: 10%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
}
/* for standard cotage */
/* Container jo extra part hide karel */
.carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 10%, rgba(255,255,255,0.7) 90%, rgba(255,255,255,1) 100%);
}

/* Images chi line */
.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* Navin animation properties */
    animation: slideAndScale 25s linear infinite;
}

/* Hover effect */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Image styling */
.carousel-track img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.carousel-track img:hover {
    transform: scale(1.05) translateY(-5px);
    cursor: pointer;
}

/* wrapper */
.carousel-item {
    position: relative;
}

/* Label inside image */
.img-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    border: 1px solid rgba(124,191,142,0.6);
    box-shadow: 0 0 10px rgba(124,191,142,0.5);
    pointer-events: none; 
}

/* Hover pe thoda glow */
.carousel-item:hover .img-label {
    background: rgba(124,191,142,0.9);
    color: #000;
}

/* ===== NAVIN ANIMATION KEYFRAMES (Slide and Scale) ===== */
@keyframes slideAndScale {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-25%) scale(1.02);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
}

/* Default: Desktop view (show) */
.whatsapp-btn {
    position: fixed;      
    bottom: 20px;         
    left: 20px;           
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 2s infinite ease-in-out;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Hide on Mobile */
@media (max-width: 768px) {
    .whatsapp-btn {
        display: none;
    }
}