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

body {
    font-family: 'Montserrat', sans-serif;
}

/* ================= TOP BAR ================= */
.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 8px 0;
    font-size: 13px;
    color: #fff;
}

/* ================= NAVBAR ================= */
.main-nav {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 9;
    background: transparent;
}

/* BRAND */
.logo-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: .75;
}

/* LINKS */
.nav-link {
    font-size: 15px;
    opacity: .85;
}

.nav-link.active {
    border-bottom: 2px solid #fff;
}

/* BOOK BUTTON */
.btn-book {
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 30px;
    padding: 6px 18px;
    color: #fff;
    font-size: 14px;
}

/* ================= MOBILE FIXES ================= */
@media(max-width:991px) {

    .main-nav {
        top: 0;
        background: #1f4d3a;
        padding: 10px 0;
    }

    .navbar-collapse {
        background: #1f4d3a;
        padding: 20px;
        border-radius: 16px;
        margin-top: 12px;
    }

    .nav-link.active {
        border: none;
    }

    .btn-book {
        width: 100%;
        text-align: center;
    }
}

/* ================= STICKY NAVBAR ================= */
.main-nav {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 9;
    transition: all .3s ease;
}

/* Sticky state */
.main-nav.sticky {
    position: fixed;
    top: 0;
    background: #1f4d3a;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

/* Top bar ke saath adjustment */
.main-nav.sticky+.hero {
    margin-top: 80px;
}

/* MOBILE */
@media(max-width:991px) {
    .main-nav {
        top: 0;
        background: #1f4d3a;
    }

    .main-nav.sticky {
        background: #1f4d3a;
    }
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    background: url("../images/hero-mountains-BZMRL00c.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    min-height: 100vh;
    /* padding: 140px 0 100px; */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-small {
    font-size: 13px;
    letter-spacing: 3px;
    opacity: .75;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: .85;
}

/* CTA BUTTONS */
.hero-cta {
    margin-top: 35px;
}

.btn-explore {
    background: #2f6d4f;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    margin-right: 12px;
    font-size: 15px;
}

.btn-explore:hover {
    background: #24553d;
    color: #fff;
}

/* ================= SCROLL ================= */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    text-align: center;
    font-size: 12px;
    opacity: .8;
}

.scroll-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin: 6px auto 0;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    background: #f9f7f2;
    padding: 100px 0;
    position: relative;
}

/* LEFT IMAGE */
.about-image {
    border-radius: 26px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* EXPERIENCE BADGE */
.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 40px;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 26px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.experience-badge h3 {
    font-size: 32px;
    font-weight: 600;
    color: #1f4d3a;
    margin: 0;
}

.experience-badge span {
    font-size: 14px;
    color: #555;
}

/* RIGHT CONTENT */
.about-tag {
    font-size: 13px;
    letter-spacing: 2px;
    color: #c0894b;
    display: inline-block;
    margin-bottom: 14px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #1f2937;
}

.about-title span {
    color: #1f4d3a;
}

.about-text {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 18px;
    max-width: 520px;
}

/* STATS GRID */
.about-stats {
    margin-top: 35px;
}

.stat-box {
    background: #f3efe6;
    border-radius: 18px;
    padding: 26px 20px;
    text-align: center;
}

.stat-box h4 {
    font-size: 26px;
    font-weight: 600;
    color: #1f4d3a;
    margin-bottom: 6px;
}

.stat-box span {
    font-size: 14px;
    color: #555;
}

/* ================= PACKAGES SECTION ================= */
.packages-section {
    background: #faf8f2;
    padding: 100px 0;
}

/* HEADER */
.section-tag {
    font-size: 13px;
    letter-spacing: 2px;
    color: #c08457;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 14px;
}

.section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

/* CARD */
.package-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.package-image {
    position: relative;
}

.package-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.location-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #1f4d3a;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
}

/* CONTENT */
.package-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.package-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 14px;
}

/* META */
.package-meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 18px;
}

/* FOOTER */
.package-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-footer small {
    font-size: 12px;
    color: #6b7280;
}

.package-footer strong {
    display: block;
    font-size: 18px;
    color: #1f4d3a;
}

/* BUTTON */
.btn-view {
    background: #f3efe6;
    border-radius: 20px;
    font-size: 13px;
    padding: 6px 14px;
    color: #1f2937;
}

.btn-view:hover {
    background: #1f4d3a;
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {
    .section-title {
        font-size: 34px;
    }
}

@media(max-width:575px) {
    .section-title {
        font-size: 28px;
    }

    .package-image img {
        height: 220px;
    }
}

/* ================= WHY VANYA SECTION ================= */
.why-vanya-section {
    background: #faf8f2;
    padding: 100px 0;
}

/* HEADER (reuse friendly) */
.section-tag {
    font-size: 13px;
    letter-spacing: 2px;
    color: #c08457;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 14px;
}

.section-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

/* CARD */
.why-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 32px;
    height: 100%;
    box-shadow: 0 25px 45px rgba(0, 0, 0, .06);
}

/* ICON */
.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1f4d3a, #2f6d4f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}

/* TEXT */
.why-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {
    .section-title {
        font-size: 34px;
    }
}

@media(max-width:575px) {
    .section-title {
        font-size: 28px;
    }

    .why-card {
        padding: 28px 24px;
    }
}

/* ================= QUOTE SECTION ================= */
.quote-section {
    height: 420px;
    background: url("../images/sunset-mountains-BlnjwKzg.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(250, 248, 242, 0) 0%,
            rgba(250, 248, 242, 0.7) 85%,
            #faf8f2 100%);
}

.quote-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
}

.leaf-icon {
    font-size: 26px;
    margin-bottom: 16px;
}

.quote-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
}

.quote-author {
    font-size: 14px;
    opacity: .85;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .quote-content h2 {
        font-size: 26px;
    }
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
    background: #faf8f2;
    padding: 100px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 32px;
    height: 100%;
    position: relative;
    box-shadow: 0 25px 45px rgba(0, 0, 0, .06);
}

/* QUOTE ICON */
.quote-badge {
    position: absolute;
    top: -14px;
    left: 22px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1f4d3a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* RATING */
.rating {
    color: #e09b3d;
    font-size: 14px;
    margin-bottom: 14px;
}

/* TEXT */
.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

/* FOOTER */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f0eb;
    color: #1f4d3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-footer strong {
    display: block;
    font-size: 14px;
}

.testimonial-footer small {
    font-size: 12px;
    color: #777;
}

/* TOUR TAG */
.tour-tag {
    display: block;
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 1px;
    color: #c08457;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .testimonial-card {
        padding: 28px 24px;
    }
}

/* ================= FINAL CTA ================= */
.final-cta-section {
    background: #faf8f2;
    padding: 100px 0;
}

.cta-box {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    min-height: 340px;
    background:
        linear-gradient(90deg,
            rgba(20, 70, 50, .85),
            rgba(20, 70, 50, .45)),
        url("../images/hero-mountains-BZMRL00c.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* CONTENT */
.cta-content {
    padding: 60px;
    max-width: 620px;
    color: #fff;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 15px;
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 28px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #ffffff;
    color: #1f4d3a;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
}

.btn-cta-primary:hover {
    background: #f3efe6;
    color: #1f4d3a;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, .4);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, .25);
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {
    .cta-content {
        padding: 50px;
    }

    .cta-content h2 {
        font-size: 34px;
    }
}

@media(max-width:575px) {
    .cta-content {
        padding: 36px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

/* ================= FOOTER ================= */
.site-footer {
    background: linear-gradient(180deg, #2f6d4f, #1f4d3a);
    color: #e5efe9;
    padding: 80px 0 30px;
}

/* BRAND */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.footer-brand h5 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
}

.footer-brand small {
    font-size: 11px;
    letter-spacing: 1.2px;
    opacity: .8;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    opacity: .85;
    max-width: 340px;
    margin-bottom: 20px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
}

/* TITLES */
.footer-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
}

/* LINKS */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a {
    color: #e5efe9;
    text-decoration: none;
    opacity: .85;
}

.footer-links a:hover {
    opacity: 1;
}

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: .85;
}

/* RESPONSIVE */
@media(max-width:767px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}



/* ================= INNER HERO / BREADCRUMB ================= */
.inner-hero {
    position: relative;
    height: 420px;
    background: url("../admin/uploads/pages-banner.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    /* sticky navbar safe */
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .65));
}

/* CONTENT */
.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: #fff;
}

.inner-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 16px;
}

.inner-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    opacity: .9;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {
    .inner-hero {
        height: 360px;
    }

    .inner-hero-content h1 {
        font-size: 42px;
    }
}

@media(max-width:575px) {
    .inner-hero {
        height: 320px;
    }

    .inner-hero-content h1 {
        font-size: 32px;
    }

    .inner-hero-content p {
        font-size: 15px;
    }
}

/* ================= CUSTOM PACKAGE CTA ================= */
.custom-cta {
    background: #faf8f2;
    padding: 110px 0;
}

.custom-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.custom-cta p {
    max-width: 640px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

/* BUTTON */
.btn-custom-cta {
    background: #1f4d3a;
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
}

.btn-custom-cta:hover {
    background: #24553d;
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {
    .custom-cta {
        padding: 90px 0;
    }

    .custom-cta h2 {
        font-size: 32px;
    }
}

@media(max-width:575px) {
    .custom-cta {
        padding: 70px 0;
    }

    .custom-cta h2 {
        font-size: 26px;
    }

    .custom-cta p {
        font-size: 15px;
    }
}


/* ================= PACKAGE DETAIL ================= */
/* ================= PACKAGE DETAIL HERO ================= */
.package-detail-hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 90px;
}

/* OVERLAY */
.package-detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, .65));
}

/* CONTENT */
.package-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

/* BACK LINK */
.back-to-packages {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    opacity: .85;
    text-decoration: none;
    margin-bottom: 14px;
}

/* META PILLS */
.package-hero-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.meta-pill {
    background: rgba(255, 255, 255, .15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    backdrop-filter: blur(4px);
}

/* TITLE */
.package-detail-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* DESCRIPTION */
.package-detail-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    opacity: .9;
    max-width: 680px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {
    .package-detail-hero {
        height: 460px;
        padding-bottom: 70px;
    }

    .package-detail-hero-content h1 {
        font-size: 42px;
    }
}

@media(max-width:575px) {
    .package-detail-hero {
        height: auto;
        padding: 160px 0 60px;
    }

    .package-detail-hero-content h1 {
        font-size: 30px;
    }

    .package-detail-hero-content p {
        font-size: 15px;
    }
}

/* CONTENT */
.package-detail-section {
    background: #faf8f2;
    padding: 100px 0;
}

.detail-block {
    margin-bottom: 60px;
}

.detail-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 18px;
}

/* HIGHLIGHTS */
.highlight-tags span {
    display: inline-block;
    background: #e8f0eb;
    color: #1f4d3a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin: 0 8px 10px 0;
}

/* ITINERARY */
.itinerary {
    border-left: 2px solid #d7e4dd;
    padding-left: 30px;
}

.itinerary-item {
    position: relative;
    margin-bottom: 36px;
}

.itinerary-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: #1f4d3a;
    border-radius: 50%;
}

.itinerary-item .day {
    font-size: 12px;
    color: #c08457;
}

.itinerary-item h5 {
    font-size: 18px;
    margin: 6px 0;
}

/* LISTS */
.check-list li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1f4d3a;
}

.cross-list li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.cross-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #d9534f;
}

/* SIDEBAR */
.price-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, .08);
    position: sticky;
    top: 120px;
}

.price-card h4 {
    font-size: 32px;
    color: #1f4d3a;
    margin: 10px 0;
}

.btn-book-now {
    display: block;
    background: #1f4d3a;
    color: #fff;
    border-radius: 30px;
    padding: 12px;
    text-align: center;
    margin: 20px 0;
}

.small-text {
    font-size: 13px;
    color: #777;
    text-align: center;
}

/* RESPONSIVE */
@media(max-width:991px) {
    .price-card {
        position: static;
    }
}


/* ================= CONTACT SECTION ================= */
.contact-section {
    background: #faf8f2;
    padding: 100px 0;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 10px;
    color: #1f2937;
}

.contact-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* FORM */
.contact-form label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1f4d3a;
}

/* BUTTON */
.btn-send {
    background: #1f4d3a;
    color: #fff;
    border-radius: 30px;
    padding: 14px;
    width: 100%;
    font-size: 15px;
}

.btn-send:hover {
    background: #24553d;
    color: #fff;
}

/* CONTACT INFO */
.contact-info {
    margin-top: 10px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1f4d3a, #2f6d4f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-item strong {
    display: block;
    font-size: 15px;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* ================= MAP ================= */
.map-section {
    height: 380px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-section {
        padding: 80px 0;
    }
}


/* ================= BOOKING PAGE ================= */
.booking-section {
    background: #faf8f2;
    padding: 100px 0;
}

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 8px;
    color: #1f2937;
}

.booking-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* FORM */
.booking-form label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #1f4d3a;
}

/* BUTTON */
.btn-booking {
    background: #1f4d3a;
    color: #fff;
    border-radius: 30px;
    padding: 14px;
    width: 100%;
    font-size: 15px;
}

.btn-booking:hover {
    background: #24553d;
    color: #fff;
}

/* CONTACT INFO (reuse contact page CSS if already exists) */
.contact-info {
    margin-top: 10px;
}

/* WHY BOX */
.why-book-box {
    background: #f3efe6;
    border-radius: 18px;
    padding: 28px;
    margin-top: 30px;
}

.why-book-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 16px;
}

.why-book-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-book-box li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.why-book-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1f4d3a;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px) {
    .booking-title {
        font-size: 28px;
    }

    .booking-section {
        padding: 80px 0;
    }
}