﻿.gallery-section {
    background: #fff;
    border-radius: 30px;
}

.gallery-tag {
    color: #198754;
    font-size: 22px;
    font-weight: 600;
}

.gallery-title {
    font-size: 55px;
    font-weight: 800;
    color: #0c3c2b;
}

    .gallery-title span {
        color: #198754;
        font-family: cursive;
        font-weight: 500;
    }

.gallery-subtitle {
    color: #666;
    font-size: 18px;
}

/* Icons */
.gallery-icons {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-icon {
    text-align: center;
}

.icon-circle {
    width: 95px;
    height: 95px;
    background: #000;
    border: 4px solid #ff7b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: auto;
    margin-bottom: 10px;
}

/* Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

    .gallery-filter button {
        border: none;
        background: #f3f3f3;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        transition: .3s;
    }

        .gallery-filter button.active,
        .gallery-filter button:hover {
            background: #198754;
            color: #fff;
        }

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.gallery-item,
.gallery-item.large,
.gallery-item.full-width {
    overflow: hidden;
    border-radius: 20px;
}

    .gallery-item img,
    .gallery-item.large img,
    .gallery-item.full-width img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .gallery-item.large {
        height: 320px;
    }

.gallery-item {
    height: 260px;
}

    .gallery-item.full-width {
        grid-column: span 2;
        height: 280px;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

/* CTA */
.gallery-cta {
    margin-top: 40px;
    background: #f5f7f5;
    border-radius: 25px;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .gallery-cta h3 {
        color: #0c3c2b;
        font-weight: 700;
    }

.book-btn {
    background: #198754;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .book-btn:hover {
        background: #146c43;
        color: #fff;
    }

@media(max-width:768px) {

    .gallery-title {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.full-width {
        grid-column: span 1;
    }

    .gallery-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

.gallery-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f7f5;
    padding: 25px 35px;
    border-radius: 20px;
    width: 100%;
}

    .gallery-cta .book-btn {
        margin-left: auto;
        white-space: nowrap;
    }

.gallery-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg,#f8faf8,#eef8ef);
    padding: 25px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    margin-top: 40px;
}

.cta-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: rgba(34,139,34,.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cta-icon i {
        font-size: 32px;
        color: #198754;
    }

.cta-content {
    flex: 1;
}

    .cta-content h3 {
        margin: 0;
        font-size: 32px;
        font-weight: 700;
        color: #0b3d2e;
    }

    .cta-content p {
        margin: 8px 0 0;
        color: #666;
        font-size: 17px;
    }

.cta-action {
    margin-left: auto;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    background: linear-gradient(135deg,#198754,#0f5d3d);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: .4s;
    box-shadow: 0 8px 25px rgba(25,135,84,.35);
}

    .book-btn:hover {
        color: #fff;
        transform: translateY(-3px);
    }

    .book-btn i {
        width: 34px;
        height: 34px;
        background: rgba(255,255,255,.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }


@media(max-width:768px) {

    .gallery-cta {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-action {
        width: 100%;
        margin: 0;
    }

    .book-btn {
        width: 100%;
        justify-content: center;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

.zoom-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
    transition: .3s;
}

    .zoom-btn i {
        color: #198754;
        font-size: 20px;
    }

    .zoom-btn:hover {
        transform: scale(1.1);
    }

/* Modal */

.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.95);
    text-align: center;
}

    .image-modal img {
        max-width: 90%;
        max-height: 90%;
        margin-top: 2%;
        border-radius: 10px;
    }

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    z-index: 999999;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.95);
    text-align: center;
}

    .image-modal img {
        max-width: 90%;
        max-height: 90%;
        margin-top: 2%;
        border-radius: 10px;
    }

.close-modal {
    position: absolute;
    top: 15px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}

/* Previous Button */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    text-align: center;
    font-size: 32px;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}

    .prev-btn:hover,
    .next-btn:hover {
        background: #198754;
    }

.prev-btn {
    left: 25px;
}

.next-btn {
    right: 25px;
}

.gallery-filter .filter-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    background: #f5f5f5;
    cursor: pointer;
    transition: .3s;
}

    .gallery-filter .filter-btn.active {
        background: #198754;
        color: #fff;
    }

    .gallery-filter .filter-btn:hover {
        background: #198754;
        color: #fff;
    }

.stories-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
    background: linear-gradient(135deg,#f8faf8,#eef8ef);
    padding: 18px;
    border-ra: 21px;
    border-radius: 10px;
}

.story-item {
    text-align: center;
    cursor: pointer;
}

    .story-item img {
        width: 95px;
        height: 95px;
        border-radius: 50%;
        padding: 4px;
        object-fit: cover;
        background: linear-gradient(white, white) padding-box, linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5) border-box;
        border: 4px solid transparent;
        transition: .3s;
    }

    .story-item:hover img {
        transform: scale(1.08);
    }

    .story-item span {
        display: block;
        margin-top: 10px;
        font-weight: 600;
    }

.story-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: #000;
    justify-content: center;
    align-items: center;
}

    .story-modal img {
        max-width: 100%;
        max-height: 100vh;
        object-fit: contain;
    }

.story-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.story-prev,
.story-next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    transform: translateY(-50%);
}

.story-prev {
    left: 20px;
}

.story-next {
    right: 20px;
}

.story-progress {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 4px;
    background: rgba(255,255,255,.3);
}

#storyBar {
    width: 0%;
    height: 100%;
    background: white;
}


.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    border: none;
    background: #f5f5f5;
    padding: 12px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
}

    .filter-btn i {
        font-size: 16px;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: #198754;
        color: #fff;
        box-shadow: 0 5px 15px rgba(25,135,84,.3);
    }


/*new css*/

.accommodation {
    padding: 100px 0;
    background: #fff;
}

.heading {
    text-align: center;
    margin-bottom: 60px;
}

    .heading span {
        color: #1d7c4d;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .heading h2 {
        font-size: 52px;
        margin-top: 10px;
    }

.room-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 50px;
    align-items: center;
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
}

.thumbs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

    .thumbs img {
        width: 50%;
        height: 180px;
        object-fit: cover;
        border-radius: 20px;
    }

.room-details {
    padding: 20px;
}

.tag {
    background: #e8f7ef;
    color: #1d7c4d;
    padding: 10px 20px;
    border-radius: 50px;
}

.room-details h3 {
    font-size: 42px;
    margin: 20px 0;
}

.room-details p {
    color: #666;
    line-height: 30px;
}

.room-details ul {
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

    .room-details ul li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .price-row h4 {
        font-size: 42px;
        color: #1d7c4d;
    }

.btn-book {
    background: #1d7c4d;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
}

.adventure-section {
    padding: 10px 0;
    background: linear-gradient(135deg,#f8faf8,#eef8ef);
}

    .adventure-section .container {
        max-width: 1300px;
        margin: auto;
        padding: 0 20px;
    }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title span {
        color: #c2410c;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .section-title h2 {
        font-size: 42px;
        font-weight: 700;
        color: #222;
        margin: 10px 0;
    }

    .section-title p {
        max-width: 700px;
        margin: auto;
        color: #666;
        line-height: 1.7;
    }

.activity-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.activity-card {
    flex: 1;
    min-width: 220px;
    max-width: 240px;
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

    .activity-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#f97316,#facc15);
    }

    .activity-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.activity-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d4f2d, #2e7d32, #66bb6a, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .activity-icon i {
        font-size: 34px;
        color: #fff;
    }

.activity-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #222;
}

.activity-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

@media(max-width:991px) {
    .activity-card {
        min-width: 280px;
    }
}

@media(max-width:576px) {
    .section-title h2 {
        font-size: 32px;
    }

    .activity-card {
        max-width: 100%;
    }
}

.counter-section {
    position: relative;
    padding: 100px 0;
    background: url('images/counter-bg.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.counter-section .container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.counter-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 35px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all .4s ease;
}

    .counter-box:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,0.12);
    }

.counter-number {
    font-size: 55px;
    font-weight: 700;
    color: #ffb703;
    margin-bottom: 12px;
}

    .counter-number::after {
        content: "+";
    }

.counter-box h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    letter-spacing: .5px;
}

@media(max-width:991px) {
    .counter-box {
        min-width: 250px;
    }
}

@media(max-width:576px) {

    .counter-section {
        padding: 70px 0;
    }

    .counter-number {
        font-size: 42px;
    }

    .counter-box h4 {
        font-size: 18px;
    }
}

.testimonials {
    padding: 26px 0;
    background: linear-gradient(135deg,#f8fbf8,#eef7f1);
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title span {
        color: #198754;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .section-title h2 {
        font-size: 50px;
        margin: 10px 0;
        color: #163d2a;
    }

    .section-title p {
        color: #666;
    }

.testimonial-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 380px;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 35px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
}

    .testimonial-card:hover {
        transform: translateY(-12px);
    }

.quote-icon {
    font-size: 70px;
    color: #198754;
    line-height: 1;
    opacity: .15;
    position: absolute;
    top: 15px;
    right: 20px;
}

.testimonial-card p {
    color: #555;
    line-height: 30px;
    margin-bottom: 25px;
    font-size: 16px;
}

.rating {
    color: #ffb400;
    font-size: 22px;
    margin-bottom: 25px;
}

.guest-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .guest-info img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #198754;
    }

    .guest-info h4 {
        margin: 0;
        color: #163d2a;
    }

    .guest-info span {
        color: #777;
        font-size: 14px;
    }

@media(max-width:991px) {

    .testimonial-card {
        width: 100%;
    }

    .section-title h2 {
        font-size: 34px;
    }
}

.booking-section {
    padding: 90px 0;
    background: #f8f9fa;
}

    .booking-section .container {
        max-width: 1300px;
        margin: auto;
        padding: 0 15px;
    }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title span {
        color: #ff6b00;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .section-title h2 {
        font-size: 42px;
        margin: 15px 0;
        color: #222;
        font-weight: 700;
    }

    .section-title p {
        max-width: 700px;
        margin: auto;
        color: #666;
        line-height: 1.8;
    }

.booking-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.booking-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
}

    .booking-card:hover {
        transform: translateY(-10px);
    }

    .booking-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

.card-content {
    padding: 25px;
}

.price {
    display: inline-block;
    background: linear-gradient(135deg, #2d6a4f, #40916c, #74c69d, #d8f3dc);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #222;
}

.card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.book-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1b5e20, #43a047, #8bc34a);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

    .book-btn:hover {
        color: #fff;
        transform: scale(1.05);
    }

@media(max-width:991px) {
    .booking-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:767px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

.footer {
    background: linear-gradient(135deg,#0f172a,#111827,#1e293b);
    color: #fff;
    padding-top: 70px;
}

    .footer .container {
        max-width: 1300px;
        margin: auto;
        padding: 0 20px;
    }

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo h2 {
    color: #ffb703;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-col h3:after {
        content: '';
        width: 50px;
        height: 3px;
        background: #ffb703;
        position: absolute;
        left: 0;
        bottom: 0;
    }

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 14px;
        color: rgba(255,255,255,.75);
    }

        .footer-col ul li a {
            color: rgba(255,255,255,.75);
            text-decoration: none;
            transition: .3s;
        }

            .footer-col ul li a:hover {
                color: #ffb703;
                padding-left: 8px;
            }

.contact-info li i {
    color: #ffb703;
    width: 25px;
}

.social-icons {
    margin-top: 25px;
}

    .social-icons a {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.1);
        color: #fff;
        border-radius: 50%;
        margin-right: 10px;
        transition: .4s;
        text-decoration: none;
    }

        .social-icons a:hover {
            background: #ffb703;
            color: #000;
            transform: translateY(-5px);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 25px 0;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,.65);
        font-size: 15px;
    }

/* Mobile */
@media(max-width:991px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

#scrollTopBtn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg,#ff9800,#ff6b00);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #scrollTopBtn:hover {
        transform: translateY(-5px);
        color: #fff;
    }

.about-section {
    padding: 10px 0;
    background: #fff;
}

    .about-section .container {
        max-width: 1300px;
        margin: auto;
        padding: 0 20px;
    }

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-image {
    flex: 1;
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 25px;
        display: block;
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

.experience-box {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(135deg,#ff9800,#ff6b00);
    color: #fff;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(255,107,0,.35);
}

    .experience-box h2 {
        font-size: 52px;
        margin: 0;
        font-weight: 700;
    }

    .experience-box span {
        font-size: 16px;
        padding: 0 15px;
    }

.about-content {
    flex: 1;
}

.sub-title {
    display: inline-block;
    color: #ff6b00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #222;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin: 35px 0;
}

.feature-item {
    background: #f8f9fa;
    padding: 15px 18px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

    .feature-item:hover {
        background: #fff2e8;
        transform: translateX(5px);
    }

    .feature-item i {
        color: #ff6b00;
        margin-right: 10px;
    }

.about-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg,#ff9800,#ff6b00);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

    .about-btn:hover {
        color: #fff;
        transform: translateY(-3px);
    }

/* Responsive */

@media(max-width:991px) {

    .about-wrapper {
        flex-direction: column;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .experience-box {
        width: 140px;
        height: 140px;
    }



        .experience-box h2 {
            font-size: 40px;
        }
}

@media(max-width:576px) {

    .about-section {
        padding: 70px 0;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-box {
        right: 10px;
        bottom: 10px;
    }
}



.cta-action .book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #1b5e20, #43a047, #8bc34a);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    transition: all .3s ease;
}

    .cta-action .book-btn i {
        font-size: 14px;
    }

    .cta-action .book-btn:hover {
        color: #fff;
        transform: translateY(-3px);
    }


.contact-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: #fff2e8;
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-header .section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-header .section-subtitle {
    max-width: 750px;
    margin: auto;
    color: #64748b;
}

.contact-card,
.contact-info-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .card-title h3,
    .contact-info-card h3 {
        font-size: 32px;
        margin-bottom: 10px;
    }

.card-title p {
    color: #64748b;
    margin-bottom: 30px;
}

.contact_input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.contact_textarea {
    min-height: 140px;
}

.contact_button {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg,#ff9800,#ff6b00);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

    .info-item i {
        color: #ff6b00;
        font-size: 20px;
        margin-top: 3px;
    }

.map-card {
    overflow: hidden;
    border-radius: 20px;
    margin-top: 25px;
}

.features-section {
    background: #fff;
}

.feature-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

.feature-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.feature-content {
    padding: 30px;
}

    .feature-content h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .feature-content p {
        color: #64748b;
        line-height: 1.8;
    }



/* =========================
   HERO SECTION
========================= */

.hero-section {
    padding: 40px 0 80px;
    background: linear-gradient(180deg,#f8fafc,#ffffff);
    overflow: hidden;
}

    .hero-section .container {
        max-width: 1300px;
        margin: auto;
        padding: 0 15px;
        display: flex;
        align-items: center;
        gap: 60px;
    }

/* =========================
   CONTENT
========================= */

.hero-content {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    padding: 10px 22px;
    background: #fff2e8;
    color: #ff6b00;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 25px;
}

    .hero-content h1 span {
        color: #ff6b00;
    }

.hero-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 35px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.primary-btn {
    background: linear-gradient(135deg,#ff9800,#ff6b00);
    color: #fff;
}

    .primary-btn:hover {
        color: #fff;
        transform: translateY(-3px);
    }

.secondary-btn {
    border: 2px solid #ff6b00;
    color: #ff6b00;
}

    .secondary-btn:hover {
        background: #ff6b00;
        color: #fff;
    }

/* =========================
   STATS
========================= */

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    background: #fff;
    padding: 18px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    min-width: 140px;
}

    .stat-box h3 {
        margin: 0;
        color: #ff6b00;
        font-size: 28px;
        font-weight: 700;
    }

    .stat-box span {
        color: #64748b;
        font-size: 14px;
    }

/* =========================
   IMAGE SLIDER
========================= */

.hero-slider {
    flex: 1;
    position: relative;
    height: 650px;
    min-height: 650px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* =========================
   FLOATING CARD
========================= */

.floating-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    padding: 15px 22px;
    border-radius: 15px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* =========================
   TABLET
========================= */

@media(max-width:1199px) {

    .hero-content h1 {
        font-size: 55px;
    }

    .hero-slider {
        height: 550px;
        min-height: 550px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px) {

    .hero-section {
        padding: 100px 0 60px;
    }

        .hero-section .container {
            flex-direction: column;
            gap: 35px;
        }

    /* Slider Top */
    .hero-slider {
        order: 1;
        width: 100%;
        height: 350px;
        min-height: 350px;
        flex: none;
    }

    /* Content Bottom */
    .hero-content {
        order: 2;
        width: 100%;
        text-align: center;
    }

        .hero-content h1 {
            font-size: 42px;
        }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:576px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-slider {
        height: 280px;
        min-height: 280px;
        border-radius: 20px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .stat-box {
        width: 100%;
    }

    .hero-stats {
        gap: 12px;
    }
}


.accommodation {
    padding: 80px 0;
    background: #f8fafc;
}

    .accommodation .heading {
        text-align: center;
        margin-bottom: 50px;
    }

        .accommodation .heading span {
            color: #c89b3c;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .accommodation .heading h2 {
            font-size: 42px;
            margin-top: 10px;
            color: #222;
        }

.room-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

.room-gallery,
.room-details {
    flex: 1;
}

    .room-gallery .main-img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 15px;
        display: block;
    }

.thumbs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

    .thumbs img {
        width: 50%;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
        cursor: pointer;
    }

.room-details .tag {
    background: #e8f7ec;
    color: #1f8b4c;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.room-details h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.room-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.room-details ul {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

    .room-details ul li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        color: #444;
    }

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .price-row h4 {
        font-size: 36px;
        color: #0f766e;
        margin: 0;
    }

    .price-row span {
        color: #666;
    }

.btn-book {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-book:hover {
        transform: translateY(-3px);
    }

/* Tablet */
@media (max-width: 991px) {
    .room-layout {
        flex-direction: column;
    }

    .room-gallery .main-img {
        height: 380px;
    }

    .room-details h3 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .accommodation {
        padding: 50px 0;
    }

        .accommodation .heading h2 {
            font-size: 28px;
        }

    .room-layout {
        gap: 25px;
    }

    .room-gallery .main-img {
        height: 250px;
    }

    .thumbs {
        gap: 10px;
    }

        .thumbs img {
            height: 100px;
        }

    .room-details {
        text-align: center;
    }

        .room-details h3 {
            font-size: 24px;
        }

        .room-details p {
            font-size: 15px;
        }

        .room-details ul {
            text-align: left;
        }

    .price-row {
        flex-direction: column;
        text-align: center;
    }

        .price-row h4 {
            font-size: 28px;
        }

    .btn-book {
        width: 100%;
        display: block;
        text-align: center;
    }
}



.booking-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.terms-left {
    flex: 1;
    min-width: 280px;
}

.terms-right {
    display: flex;
    align-items: center;
}

.download-link {
    color: #d32f2f;
    font-weight: 600;
    text-decoration: none;
}

    .download-link:hover {
        text-decoration: underline;
    }

.booking_button {
    min-width: 150px;
    height: 48px;
    border: none;
    border-radius: 6px;
}

    .booking_button:disabled {
        opacity: .6;
        cursor: not-allowed;
    }

textarea.form-control {
    resize: none;
    min-height: 70px !important;
}

/* Mobile */
@media(max-width:768px) {

    .booking-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .terms-right {
        width: 100%;
    }

    .booking_button {
        width: 100%;
    }
}



.terms_section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.terms_header {
    background: linear-gradient(135deg,#0b6b3a,#1e8c47,#42a85a);
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.badge_terms {
    display: inline-block;
    background: #FFD54F;
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.terms_header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

    .terms_header h1 span {
        color: #FFD54F;
    }

.terms_header h3 {
    font-weight: 400;
    opacity: .95;
}

.terms_date {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
    flex-wrap: wrap;
}

    .terms_date div {
        background: rgba(255,255,255,.15);
        backdrop-filter: blur(10px);
        padding: 15px 25px;
        border-radius: 12px;
        min-width: 220px;
    }

    .terms_date strong {
        display: block;
        margin-top: 8px;
        color: #FFD54F;
    }

/* Card */

.terms_card {
    background: #fff;
    margin-top: 35px;
    display: flex;
    gap: 30px;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.card_number {
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg,#1b5e20,#2e7d32);
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card_content {
    flex: 1;
}

    .card_content h2 {
        color: #1b5e20;
        margin-bottom: 20px;
        font-size: 28px;
    }

        .card_content h2 i {
            color: #f4b400;
            margin-right: 10px;
        }

    .card_content p {
        color: #555;
        line-height: 1.9;
        margin-bottom: 20px;
        font-size: 16px;
    }

.info_box {
    background: #f6fff5;
    border-left: 5px solid #2e7d32;
    padding: 18px;
    border-radius: 10px;
    color: #444;
}

    .info_box i {
        color: #2e7d32;
        margin-right: 10px;
    }

/* Mobile */

@media(max-width:768px) {

    .terms_header {
        padding: 30px 20px;
    }

        .terms_header h1 {
            font-size: 28px;
        }

    .terms_card {
        flex-direction: column;
        padding: 25px;
    }

    .card_number {
        margin: auto;
    }

    .card_content h2 {
        font-size: 22px;
        text-align: center;
    }

    .terms_date {
        flex-direction: column;
    }
}

/* Services */

.service_grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin: 30px 0;
}

.service_box {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid #edf3ec;
    transition: .35s;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

    .service_box:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.12);
        border-color: #2e7d32;
    }

.service_icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#1b5e20,#43a047);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.service_box h4 {
    color: #1b5e20;
    margin-bottom: 10px;
    font-size: 20px;
}

.service_box p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.notice_box {
    background: #f4fff5;
    border-left: 5px solid #2e7d32;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    color: #555;
}

    .notice_box i {
        color: #2e7d32;
        margin-right: 10px;
        font-size: 18px;
    }

/* Mobile */

@media(max-width:768px) {

    .service_grid {
        grid-template-columns: 1fr;
    }

    .service_box {
        padding: 20px;
    }
}
/* Booking Section */

.booking_grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    margin-top: 30px;
}

.booking_box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transition: .35s;
    border: 1px solid #edf4ee;
}

    .booking_box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(0,0,0,.12);
    }

.booking_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,#1b5e20,#43a047);
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.booking_box h4 {
    color: #1b5e20;
    margin-bottom: 15px;
}

.booking_box p {
    color: #666;
    line-height: 1.8;
}

.booking_info {
    background: #f6fbf6;
    padding: 12px 15px;
    border-radius: 10px;
    margin-top: 12px;
    color: #555;
}

    .booking_info i {
        color: #2e7d32;
        width: 22px;
    }

.booking_list {
    list-style: none;
    margin-top: 20px;
}

    .booking_list li {
        padding: 12px;
        background: #f8fdf8;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .booking_list i {
        color: #2e7d32;
        width: 25px;
    }

.booking_note {
    margin-top: 20px;
    background: #fff8e8;
    border-left: 5px solid #ffc107;
    padding: 18px;
    border-radius: 10px;
    color: #555;
}

    .booking_note i {
        color: #ff9800;
        margin-right: 8px;
    }

.accuracy_box {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg,#edf9ee,#ffffff);
    padding: 25px;
    border-radius: 15px;
    border-left: 6px solid #2e7d32;
}

.accuracy_icon {
    width: 70px;
    height: 70px;
    background: #2e7d32;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    flex-shrink: 0;
}

.accuracy_box h4 {
    color: #1b5e20;
    margin-bottom: 10px;
}

.accuracy_box p {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

/* Mobile */

@media(max-width:768px) {

    .booking_grid {
        grid-template-columns: 1fr;
    }

    .accuracy_box {
        flex-direction: column;
        text-align: center;
    }

    .accuracy_icon {
        margin: auto;
    }
}
/* Age Policy & Payment */

.policy_grid,
.payment_grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    margin: 30px 0;
}

.policy_box,
.payment_box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    border: 1px solid #edf4ee;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: .35s;
}

    .policy_box:hover,
    .payment_box:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.12);
    }

.policy_icon,
.payment_icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#1b5e20,#43a047);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.policy_box h4,
.payment_box h4 {
    color: #1b5e20;
    margin-bottom: 12px;
}

.policy_box p,
.payment_box p {
    color: #666;
    line-height: 1.8;
}

.warning_box {
    margin-top: 25px;
    background: #fff8e5;
    border-left: 5px solid #ff9800;
    padding: 20px;
    border-radius: 12px;
}

    .warning_box i {
        color: #ff9800;
        margin-right: 10px;
    }

.notice_box {
    margin-top: 25px;
    background: #f4fff5;
    border-left: 5px solid #2e7d32;
    padding: 20px;
    border-radius: 12px;
}

    .notice_box i {
        color: #2e7d32;
        margin-right: 10px;
    }

/* Mobile */

@media(max-width:768px) {

    .policy_grid,
    .payment_grid {
        grid-template-columns: 1fr;
    }

    .policy_box,
    .payment_box {
        padding: 20px;
    }
}

/* Cancellation */

.refund_box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
    background: #eefaf0;
    border-left: 5px solid #2e7d32;
    padding: 25px;
    border-radius: 15px;
}

.refund_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,#1b5e20,#43a047);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    flex-shrink: 0;
}

.refund_box h4 {
    color: #1b5e20;
    margin-bottom: 10px;
}

/* Guest */

.guest_grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 30px;
}

.guest_box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transition: .35s;
    border: 1px solid #edf4ee;
}

    .guest_box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(0,0,0,.12);
    }

.guest_icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#1b5e20,#43a047);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.guest_box h4 {
    color: #1b5e20;
    margin-bottom: 12px;
}

.guest_box p {
    color: #666;
    line-height: 1.8;
}

/* Mobile */

@media(max-width:991px) {

    .guest_grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .guest_grid,
    .policy_grid {
        grid-template-columns: 1fr;
    }

    .refund_box {
        flex-direction: column;
        text-align: center;
    }

    .refund_icon {
        margin: auto;
    }
}

/* Privacy */

.privacy_grid,
.liability_grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin: 30px 0;
}

.privacy_box,
.liability_box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    border: 1px solid #edf4ee;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transition: .35s;
}

    .privacy_box:hover,
    .liability_box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(0,0,0,.12);
    }

.privacy_icon,
.liability_icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#1b5e20,#43a047);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.privacy_box h4,
.liability_box h4 {
    color: #1b5e20;
    margin-bottom: 12px;
}

.privacy_notice,
.travel_box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 30px;
    padding: 25px;
    border-radius: 15px;
}

.privacy_notice {
    background: #eefaf0;
    border-left: 5px solid #2e7d32;
}

.travel_box {
    background: #fff7e8;
    border-left: 5px solid #f4b400;
}

.privacy_notice_icon,
.travel_icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    flex-shrink: 0;
}

.privacy_notice_icon {
    background: linear-gradient(135deg,#1b5e20,#43a047);
}

.travel_icon {
    background: linear-gradient(135deg,#f4b400,#ff9800);
}

/* Mobile */

@media(max-width:991px) {

    .privacy_grid,
    .liability_grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .privacy_grid,
    .liability_grid {
        grid-template-columns: 1fr;
    }

    .privacy_notice,
    .travel_box {
        flex-direction: column;
        text-align: center;
    }

    .privacy_notice_icon,
    .travel_icon {
        margin: auto;
    }
}

/* Intellectual Property */

.ip_grid,
.law_grid,
.change_grid {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.ip_grid {
    grid-template-columns: repeat(3,1fr);
}

.law_grid {
    grid-template-columns: repeat(2,1fr);
}

.change_grid {
    grid-template-columns: repeat(3,1fr);
}

.ip_box,
.law_box,
.change_box {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transition: .35s;
}

    .ip_box:hover,
    .law_box:hover,
    .change_box:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.12);
    }

.ip_icon,
.law_icon,
.change_icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#1b5e20,#43a047);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.ip_box h4,
.law_box h4,
.change_box h4 {
    color: #1b5e20;
    margin-bottom: 12px;
}

.copyright_notice,
.update_notice {
    background: #eefaf0;
    border-left: 5px solid #2e7d32;
    padding: 22px;
    border-radius: 12px;
    margin-top: 25px;
}

.copyright_notice {
    display: flex;
    gap: 20px;
}

.copyright_icon {
    width: 65px;
    height: 65px;
    background: #2e7d32;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    flex-shrink: 0;
}

.update_notice i {
    color: #2e7d32;
    margin-right: 10px;
}

/* Mobile */

@media(max-width:991px) {

    .ip_grid,
    .change_grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .ip_grid,
    .law_grid,
    .change_grid {
        grid-template-columns: 1fr;
    }

    .copyright_notice {
        flex-direction: column;
        text-align: center;
    }

    .copyright_icon {
        margin: auto;
    }
}


.disclaimer-section {
    background: #f8faf7;
}

.disclaimer-box {
    background: #fff;
    border-left: 5px solid #2E7D32;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .disclaimer-box p {
        color: #555;
        font-size: 16px;
        line-height: 1.9;
    }

    .disclaimer-box ul {
        margin: 25px 0;
        padding-left: 0;
        list-style: none;
    }

        .disclaimer-box ul li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            color: #444;
            line-height: 1.8;
        }

            .disclaimer-box ul li::before {
                content: "✔";
                position: absolute;
                left: 0;
                top: 2px;
                color: #2E7D32;
                font-weight: bold;
                font-size: 18px;
            }

@media(max-width:768px) {

    .disclaimer-box {
        padding: 20px;
    }

        .disclaimer-box p,
        .disclaimer-box ul li {
            font-size: 15px;
        }
}





/* Offer Banner */
.offer-banner {
    width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Offer Popup */
.offer-popup {
    width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Tablet */
@media (max-width:992px) {

    .offer-banner,
    .offer-popup {
        width: 90%;
    }
}

/* Mobile */
@media (max-width:768px) {

    .offer-banner,
    .offer-popup {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .offer-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .offer-left {
        width: 100%;
    }

    .offer-actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .book-now-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .offer-content h3 {
        font-size: 18px;
    }

    .offer-content p {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width:480px) {

    .offer-banner {
        padding: 12px;
    }

    .offer-card {
        padding: 12px;
    }

    .offer-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .book-now-btn {
        width: 100%;
        text-align: center;
    }

    .badge {
        align-self: flex-start;
    }
}



.hero-title {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 10px 20px;
}

/* SATYA */
.title-top {
    margin: 0;
    font-family: 'Great Vibes', cursive;
    font-size: 65px;
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: 2px;
    background: linear-gradient( to bottom, #fff9d6 0%, #ffe88d 20%, #f4ca54 45%, #b57a08 70%, #fff0a5 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 3px rgba(0,0,0,.35), 0 5px 15px rgba(0,0,0,.25);
}

/* GANGA AMRITAM */
.title-bottom {
    margin: 0;
    margin-top: -5px;
    font-family: 'Cinzel', serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient( to bottom, #ffffff, #fff3cf, #f6d57c, #c58d12 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 3px rgba(0,0,0,.35), 0 8px 20px rgba(0,0,0,.30);
    letter-spacing: 3px;
}
.title-bottom_other {
    margin: 0;
    margin-top: -5px;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient( to bottom, #ffffff, #fff3cf, #f6d57c, #c58d12 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 3px rgba(0,0,0,.35), 0 8px 20px rgba(0,0,0,.30);
    letter-spacing: 3px;
}

/* Subtitle */
.hero-subtitle {
    margin-top: 18px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 3px 8px rgba(0,0,0,.5);
}

.hero-subtitle_other {
    font-family: system-ui;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 3px 8px rgba(0,0,0,.5);
}
/* ===========================
        Tablet
=========================== */

@media(max-width:992px) {

    .title-top {
        font-size: 65px;
    }

    .title-bottom {
        font-size: 55px;
        letter-spacing: 2px;
    }
    .title-bottom_other {
        font-size: 55px;
        letter-spacing: 2px;
    }
    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 4px;
    }
}

/* ===========================
        Mobile
=========================== */

@media(max-width:768px) {

    .hero-title {
        padding: 5px 15px;
    }

    .title-top {
        font-size: 48px;
        line-height: 1;
    }

    .title-bottom {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
        margin-top: 12px;
    }
}

/* Small Mobile */

@media(max-width:480px) {

    .title-top {
        font-size: 40px;
    }

    .title-bottom {
        font-size: 28px;
    }
    .title-bottom_other {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 2px;
    }
}



.room-slider-section {
    padding: 70px 0;
    background: #f8f8f8;
}

.roomSlider {
    width: 100%;
    overflow: hidden;
}

    .roomSlider .swiper-slide {
        height: auto;
        display: flex;
        justify-content: center;
    }

.package-card {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,.18);
    }

.package-image {
    overflow: hidden;
}

    .package-image img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .6s;
    }

.package-card:hover img {
    transform: scale(1.08);
}


.room-slider-section {
    padding: 26px 0;
    background: linear-gradient(135deg,#f8faf8,#eef8ef);
}

.roomSlider {
    overflow: hidden;
    padding: 10px;
}

    .roomSlider .swiper-slide {
        height: auto;
    }

/* Smaller Card */
.package-card {
    width: 100%;
    max-width: 320px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

    .package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.18);
    }

.package-image {
    overflow: hidden;
}

    .package-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: .5s;
    }

.package-card:hover img {
    transform: scale(1.08);
}

.package-details {
    max-height: 0;
    overflow: hidden;
    transition: .5s ease;
}

.package-card.active .package-details {
    max-height: 500px;
    margin-top: 15px;
}

.details-btn {
    width: 100%;
    margin-top: 15px;
    border: none;
    background: #0c7a5b;
    color: #fff;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .details-btn i {
        transition: .4s;
    }

.package-card.active .details-btn i {
    transform: rotate(180deg);
}


/* Compact Package Card */
.family-package-section .package-card {
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* Smaller Image */
.family-package-section .package-image img {
    width: 100%;
    height: 170px; /* Before 250-300px */
    object-fit: cover;
}

/* Small Badge */
.family-package-section .package-badge {
    font-size: 11px;
    padding: 5px 10px;
}

/* Header */
.family-package-section .package-header {
    padding: 15px 12px 10px;
    text-align: center;
}

/* Icon */
.family-package-section .package-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 8px;
}

/* Package Title */
.family-package-section .package-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* Description */
.family-package-section .package-header p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* Body */
.family-package-section .package-body {
    padding: 15px;
}

/* Price */
.package-price {
    margin-bottom: 12px;
}

    .package-price .currency {
        font-size: 18px;
    }

    .package-price .amount {
        font-size: 28px;
        font-weight: 700;
    }

    .package-price .night {
        font-size: 13px;
    }

/* View Details Button */
.details-btn {
    padding: 9px 15px;
    font-size: 13px;
}

/* Feature List */
.package-features {
    margin-top: 12px;
}

    .package-features li {
        font-size: 13px;
        padding: 5px 0;
    }

/* Book Button */
.package-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 12px;
}



.activitySlider {
    padding: 15px 5px;
}

.activity-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px 15px;
    height: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    transition: .35s;
}

    .activity-card:hover {
        transform: translateY(-6px);
    }

.activity-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,#1b5e20,#2e7d32,#4caf50);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid #e8f5e9;
    box-shadow: 0 10px 25px rgba(46,125,50,.35);
    transition: .4s;
}

.activity-card:hover .activity-icon {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg,#388e3c,#66bb6a,#81c784);
}

.activity-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.activity-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}







/*==========================
 Destination Wedding
==========================*/

.destination-wedding-section {
    padding: 90px 0;
    background: #fafaf7;
}

/* Heading */

.gallery-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins',sans-serif;
}

.gallery-title {
    font-family: 'Cinzel',serif;
    font-size: 48px;
    color: #16351d;
    margin-top: 20px;
    font-weight: 700;
}

.gallery-subtitle {
    max-width: 750px;
    margin: 20px auto 0;
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    font-family: 'Poppins',sans-serif;
}

/* Layout */

.room-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start; /* Image starts from top */
}

/* Images */
.room-gallery {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.thumbs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

    .thumbs img {
        width: 48%;
        height: 170px;
        object-fit: cover;
        border-radius: 15px;
        transition: .4s;
    }

        .thumbs img:hover {
            transform: scale(1.05);
        }

/* Details */

.tag {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Poppins',sans-serif;
}

.room-details h3 {
    font-family: 'Cinzel',serif;
    font-size: 42px;
    color: #173b22;
    margin: 20px 0;
}

.room-details p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    font-family: 'Poppins',sans-serif;
}

/* Highlights */

.wedding-highlights {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin: 30px 0;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
}

    .highlight-box:hover {
        transform: translateY(-5px);
    }

    /* Green Icons */

    .highlight-box i {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg,#1b5e20,#43a047,#81c784);
        color: #fff;
        font-size: 22px;
        box-shadow: 0 8px 20px rgba(46,125,50,.35);
    }

    .highlight-box span {
        font-family: 'Poppins',sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #333;
    }

/* Feature List */

.room-details ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .room-details ul li {
        margin-bottom: 14px;
        font-size: 16px;
        font-family: 'Poppins',sans-serif;
    }

        .room-details ul li i {
            color: #2e7d32;
            margin-right: 10px;
            font-size: 18px;
        }

/* Price */

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

    .price-row h4 {
        color: #2e7d32;
        font-size: 34px;
        font-family: 'Cinzel',serif;
    }

    .price-row span {
        color: #777;
        font-family: 'Poppins',sans-serif;
    }

/* Button */

.btn-book {
    background: linear-gradient(135deg,#2e7d32,#43a047);
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    transition: .4s;
}

    .btn-book:hover {
        background: linear-gradient(135deg,#1b5e20,#2e7d32);
        transform: translateY(-3px);
        color: #fff;
    }

/* Responsive */

@media(max-width:991px) {

    .room-layout {
        grid-template-columns: 1fr;
    }

    .main-img {
        height: 350px;
    }

    .gallery-title {
        font-size: 34px;
    }

    .room-details h3 {
        font-size: 30px;
    }

    .wedding-highlights {
        grid-template-columns: 1fr;
    }
}

/* Desktop */
.hero-title .title-bottom {
    margin: 0;
}

/* Mobile */
@media (max-width: 767px) {

    .hero-title {
        text-align: center;
    }

        .hero-title .title-bottom {
            display: block;
            width: 100%;
            white-space: nowrap; /* Keeps Ganga Amritam in one line */
            line-height: 1.1;
        } .hero-title .title-bottom_other {
            display: block;
            width: 100%;
            white-space: nowrap; /* Keeps Ganga Amritam in one line */
            line-height: 1.1;
        }

        .hero-title h1 {
            font-size: 42px;
        }

        .hero-title h2 {
            font-size: 28px;
        }

    .hero-subtitle {
        font-size: 14px;
    }
}





#scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 50px;
    height: 50px;
    background: #14b7a6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
    }

    #scrollTopBtn:hover {
        background: #084298;
        transform: translateY(-3px);
    }

/* ================= Mobile ================= */
@media (max-width:768px) {


    .logo_section img {
        width: 65px;
    }

    .title-bottom {
        font-size: 29px !important;
    }

    .title-bottom_other {
        font-size: 16px !important;
    }

    .hero-subtitle_other {
        font-size: 9px;
    }
}
